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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
}

/* Checkmate Slider specific variables */
.checkmate-slider {
    --checkmate-red: #FF0000;
    --checkmate-black: #000000;
    --checkmate-white: #FFFFFF;
    --checkmate-grey: #F5F5F5;
}

/* Container Styles */
.checkmate-slider__container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background: var(--checkmate-white);
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--checkmate-red);
}

/* Logo Corner Element */
.checkmate-slider__logo-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--checkmate-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 3;
}

/* Wrapper */
.checkmate-slider__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border: 4px solid var(--checkmate-black);
}

/* Item Transitions */
.checkmate-slider__item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

.checkmate-slider__item--active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Content Box */
.checkmate-slider__content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--checkmate-black);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    border-left: 4px solid var(--checkmate-red);
    border-right: 4px solid var(--checkmate-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Typography */
.checkmate-slider__heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--checkmate-black);
}

.checkmate-slider__text {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    margin: 0.5em 0;
    line-height: 1.6;
    color: var(--checkmate-black);
}

/* Navigation */
.checkmate-slider__nav-zone {
    position: absolute;
    top: 0;
    height: 100%;
    width: 15%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
    background: transparent;
}

.checkmate-slider__nav-prev {
    left: 0;
}

.checkmate-slider__nav-next {
    right: 0;
}

.checkmate-slider__nav-zone:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Dots */
.checkmate-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
    padding: 8px 16px;
    background: var(--checkmate-white);
    border: 2px solid var(--checkmate-black);
}

.checkmate-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: var(--checkmate-black);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    opacity: 0.3;
}

.checkmate-slider__dot:hover {
    opacity: 0.8;
}

.checkmate-slider__dot--active {
    background: var(--checkmate-red);
    opacity: 1;
}

/* Text Animations */
.checkmate-slider__text-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.checkmate-slider__text-animation--active {
    opacity: 1;
    transform: translateY(0);
}

.checkmate-slider__delay-1 {
    transition-delay: 0.2s;
}

.checkmate-slider__delay-2 {
    transition-delay: 0.4s;
}

/* Feature Icons */
.checkmate-slider__features {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.checkmate-slider__feature-icon {
    width: 40px;
    height: 40px;
    background: var(--checkmate-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design - Using specified breakpoints only */
@media screen and (max-width: 1024px) {
    .checkmate-slider__container {
        height: 60vh;
    }
    
    .checkmate-slider__logo-corner {
        width: 100px;
        height: 100px;
    }
    
    .checkmate-slider__content {
        width: 85%;
        padding: 25px;
        bottom: 12%;
    }
    
    .checkmate-slider__features {
        right: 15px;
        top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .checkmate-slider__container {
        height: 50vh;
    }
    
    .checkmate-slider__logo-corner {
        width: 80px;
        height: 80px;
    }
    
    .checkmate-slider__content {
        width: 90%;
        padding: 20px;
        bottom: 15%;
    }
    
    .checkmate-slider__feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .checkmate-slider__heading {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }
    
    .checkmate-slider__text {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
}

@media screen and (max-width: 480px) {
    .checkmate-slider__container {
        height: 45vh;
        min-height: 350px;
    }
    
    .checkmate-slider__logo-corner {
        width: 60px;
        height: 60px;
    }
    
    .checkmate-slider__content {
        width: 95%;
        padding: 15px;
        bottom: 20%;
    }
    
    .checkmate-slider__features {
        right: 10px;
        top: 10px;
        gap: 8px;
    }
    
    .checkmate-slider__feature-icon {
        width: 30px;
        height: 30px;
    }
    
    .checkmate-slider__dots {
        bottom: 15px;
        padding: 6px 12px;
    }
    
    .checkmate-slider__nav-zone {
        width: 20%;
    }
}
/*******************    our brands  *************/
:root {
    --checkmate-red: #FF0000;
    --checkmate-black: #000000;
    --checkmate-white: #FFFFFF;
    --checkmate-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--checkmate-white);
}

.brand-section {
    padding: 100px 0;
    background-color: var(--checkmate-white);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.brand-section::before,
.brand-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
}

.brand-section::before {
    top: -50px;
    left: -50px;
    background-color: rgba(255, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.brand-section::after {
    bottom: -50px;
    right: -50px;
    background-color: rgba(0, 0, 0, 0.05);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.diagonal-divider {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 0, 0, 0.1) 50%);
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    color: var(--checkmate-black);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70%;
    height: 4px;
    background-color: var(--checkmate-red);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.tagline {
    font-size: 14px;
    color: var(--checkmate-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Brands Container */
.brands-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Brand Card */
.brand-card {
    background-color: var(--checkmate-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--checkmate-red);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.brand-logo-container {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    overflow: hidden;
}
/* Brand Logo - Increased from 80% to 95% */
.brand-logo {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--checkmate-black);
    margin: 0 0 15px 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.brand-description {
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    text-align: center;
    font-size: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 72px;
    position: relative;
    z-index: 2;
}

.brand-btn {
    padding: 12px 24px;
    background-color: var(--checkmate-black);
    color: var(--checkmate-white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.brand-btn:hover {
    background-color: var(--checkmate-red);
}

/* Modal Styles */
.brand-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    align-items: flex-start;
    justify-content: center;
}

.modal-content {
    background-color: var(--checkmate-white);
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    border-radius: 0;
    position: relative;
    animation: modalFade 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    overflow: hidden;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background-color: var(--checkmate-black);
    padding: 20px 30px;
    color: var(--checkmate-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--checkmate-red);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--checkmate-white);
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-modal:hover {
    color: var(--checkmate-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px 30px;
}

/* Brand Detail Styles */
.brand-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.brand-detail-logo {
    width: 200px;
    flex-shrink: 0;
    margin-right: 30px;
}

.brand-detail-logo-container {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Detail Logo Image - Increased from 80% to 95% */
.brand-detail-logo-img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-detail-info {
    flex: 1;
    min-width: 300px;
}

.brand-slogan {
    font-style: italic;
    color: var(--checkmate-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: var(--checkmate-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.product-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--checkmate-red);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 3px solid var(--checkmate-red);
}

.product-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--checkmate-black);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .brand-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .brands-container {
        gap: 25px;
        max-width: 850px;
    }

    .brand-logo-container {
        height: 130px;
    }
    
    .brand-logo {
        max-width: 95%;
        max-height: 95%;
    }
    
    .brand-detail-logo {
        width: 180px;
    }
    
    .brand-detail-logo-container {
        width: 180px;
        height: 180px;
    }
    .brand-detail-logo-img {
        max-width: 95%;
        max-height: 95%;
    }
    .brand-name {
        font-size: 20px;
    }

    .brand-description {
        font-size: 14px;
        min-height: 66px;
    }

    .modal-content {
        max-width: 90%;
        margin: 30px auto;
    }

    .modal-body {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .brands-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .brand-logo-container {
        height: 120px;
    }
    
    .brand-logo {
        max-width: 95%;
        max-height: 95%;
    }

    .brand-description {
        min-height: auto;
        margin-bottom: 20px;
    }

    .brand-detail-logo {
        width: 160px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .brand-detail-logo-container {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    .brand-detail-logo-img {
        max-width: 95%;
        max-height: 95%;
    }

    .brand-detail-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand-detail-info {
        min-width: 100%;
    }

    .modal-content {
        max-width: 95%;
        margin: 20px auto;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-body {
        padding: 30px 25px;
    }

    .product-section-title {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-item img {
    height: 140px;
}

.product-name {
    padding: 12px;
    font-size: 14px;
}
}

@media (max-width: 480px) {
    .brand-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .tagline {
        font-size: 12px;
    }

    .brand-card {
        padding: 20px;
    }

    .brand-logo-container {
        height: 100px;
        margin-bottom: 20px;
    }
    .brand-logo {
        max-width: 95%;
        max-height: 95%;
    }

    .brand-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .brand-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-item img {
        height: 200px;
    }

    .product-name {
        padding: 10px;
        font-size: 14px;
    }
}

/****************** oUR BRANDS ENS**************/
/******************     Welcome Page  **************/
.nice-welcome-section {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    background: #ffffff;
}

.nice-welcome-image {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.nice-welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.15);
}

.nice-experience-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ED1C24;
    color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border-top: 4px solid #000000;
}

.nice-years {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.nice-welcome-content {
    flex: 1;
    max-width: 50%;
    padding: 30px;
}

.nice-welcome-title {
    font-size: 2.5rem;
    color: #ED1C24;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nice-welcome-title span {
    color: #000000;
    border-bottom: 3px solid #ED1C24;
}

.nice-welcome-points {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.nice-welcome-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333333;
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 4px solid #ED1C24;
    transition: all 0.3s ease;
}

.nice-welcome-points li:hover {
    transform: translateX(10px);
    border-left-color: #000000;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.1);
}

.nice-discover-more {
    display: inline-block;
    padding: 12px 30px;
    background: #ED1C24;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nice-discover-more:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ED1C24;
    margin: 5px 0;
    transition: all 0.4s ease;
}

/********************       Responsive Styles ***************/
/* Desktop (1024px) */
@media (max-width: 1024px) {
    header {
        height: 80px;
        padding: 12px 30px;
    }

    .logo img {
        height: 50px;
    }

    .home-slider-container {
        height: 70vh;
        margin-top: 80px;
    }

    .nice-welcome-section {
        padding: 40px 30px;
        gap: 30px;
    }

    .nice-welcome-title {
        font-size: 2.2rem;
    }

    .nice-years {
        font-size: 2rem;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    header {
        height: 70px;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 70px;
        right: -100%;
        height: calc(100vh - 70px);
        width: 300px;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(237, 28, 36, 0.2);
    }

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

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .home-slider-container {
        height: 60vh;
        margin-top: 70px;
    }

    .nice-welcome-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .nice-welcome-image,
    .nice-welcome-content {
        max-width: 100%;
    }

    .nice-experience-box {
        bottom: -10px;
        right: -10px;
        padding: 15px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    header {
        height: 60px;
        padding: 8px 15px;
    }

    .logo img {
        height: 40px;
    }

    .nav-wrapper {
        top: 60px;
        width: 100%;
    }

    .home-slider-container {
        height: 50vh;
        margin-top: 60px;
    }

    .home-slider-content {
        width: 90%;
        padding: 20px;
    }

    .nice-welcome-section {
        padding: 20px 15px;
    }

    .nice-welcome-title {
        font-size: 1.8rem;
    }

    .nice-experience-box {
        padding: 12px;
    }

    .nice-years {
        font-size: 1.8rem;
    }

    .nice-discover-more {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin: 4px 0;
    }
}
/*****************      welcome End **************/
/*****************      OUR JOURNEY  ************/
    .checkmate-journey-section {
    padding: 64px 20px;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
}

.checkmate-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #ED1C24 40%, #000000 40%, #000000 60%, #ED1C24 60%);
}

.checkmate-journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkmate-journey-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.checkmate-journey-header h2 {
    color: #ED1C24;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkmate-journey-divider {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.checkmate-journey-divider-line {
    height: 4px;
    width: 48px;
    border-radius: 2px;
}

.checkmate-divider-red {
    background-color: #ED1C24;
}

.checkmate-divider-black {
    background-color: #000000;
}

.checkmate-journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.checkmate-journey-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(237, 28, 36, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 28, 36, 0.1);
}

.checkmate-journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.15);
    border-color: #000000;
}

.checkmate-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmate-card-icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.2;
}

.checkmate-icon-red {
    background-color: #ED1C24;
    color: #ED1C24;
}

.checkmate-card-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.checkmate-journey-card h3 {
    color: #ED1C24;
    text-align: center;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
}

.checkmate-journey-card.present h3 {
    color: #ED1C24;
}

.checkmate-journey-card p {
    color: #545454;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
}

.checkmate-cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(237, 28, 36, 0.02);
    border-radius: 12px;
}

.checkmate-cta-section p {
    color: #545454;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 18px;
}

.checkmate-cta-button {
    background-color: #ED1C24;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkmate-cta-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 1024px) {
    .checkmate-journey-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .checkmate-journey-section {
        padding: 48px 16px;
    }
    
    .checkmate-journey-header h2 {
        font-size: 30px;
    }

    .checkmate-journey-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .checkmate-journey-cards {
        grid-template-columns: 1fr;
    }
    
    .checkmate-journey-header h2 {
        font-size: 26px;
    }
    
    .checkmate-card-icon {
        width: 70px;
        height: 70px;
    }

    .checkmate-card-icon::after {
        width: 80px;
        height: 80px;
    }
}
/*****************      JOURNEY END     *********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --checkmate-red: #ED1C24;
    --checkmate-black: #000000;
    --checkmate-gray: #f8f9fa;
    --checkmate-dark-gray: #444444;
}

body {
    background-color: var(--checkmate-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    color: var(--checkmate-black);
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--checkmate-black), var(--checkmate-red));
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(237, 28, 36, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--checkmate-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(237, 28, 36, 0.15);
    border-color: var(--checkmate-black);
}

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

.product-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--checkmate-red);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

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

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

.product-content {
    padding: 25px;
}

.product-title {
    color: var(--checkmate-black);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--checkmate-red);
}

.product-description {
    color: var(--checkmate-dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--checkmate-dark-gray);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    color: var(--checkmate-red);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background-color: var(--checkmate-red);
    border-radius: 0;
    margin-right: 10px;
    position: relative;
    transform: rotate(45deg);
}

.feature-dot::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--checkmate-red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.feature-item:hover .feature-dot::after {
    transform: translate(-50%, -50%) scale(1) rotate(-45deg);
    opacity: 1;
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--checkmate-red);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: var(--checkmate-black);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(237, 28, 36, 0.2);
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-image {
        height: 250px;
    }
}

/*********************      WHY CHOOSE US       **********************/
:root {
--checkmate-red: #ff0000;
--checkmate-black: #000000;
--card-gradient: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
}

.checkmate-why-section {
padding: 4rem 2rem;
background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
font-family: Arial, sans-serif;
position: relative;
overflow: hidden;
}

.checkmate-why-section::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 200px;
background: var(--checkmate-red);
opacity: 0.1;
transform: rotate(45deg) translate(50%, -50%);
}

.checkmate-why-title {
text-align: center;
color: var(--checkmate-black);
font-size: 2.5rem;
margin-bottom: 3rem;
position: relative;
text-transform: uppercase;
letter-spacing: 2px;
}

.checkmate-why-title::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: var(--checkmate-red);
box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}

.checkmate-why-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.checkmate-why-card {
background: var(--card-gradient);
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.8);
}

.checkmate-why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--checkmate-red);
transform: scaleX(0);
transition: transform 0.3s ease;
}

.checkmate-why-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.checkmate-why-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.checkmate-why-card:hover .checkmate-why-icon {
transform: rotate(360deg);
background: rgba(255, 0, 0, 0.05);
}

.checkmate-why-icon img {
width: 40px;
height: 40px;
transition: all 0.3s ease;
}

.checkmate-why-card-title {
color: var(--checkmate-black);
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: bold;
position: relative;
padding-bottom: 0.5rem;
}

.checkmate-why-card-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 2px;
background: var(--checkmate-red);
}

.checkmate-why-description {
color: #555;
font-size: 0.95rem;
line-height: 1.6;
}

@media (max-width: 1024px) {
.checkmate-why-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
}

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

@media (max-width: 768px) {
.checkmate-why-title {
    font-size: 2rem;
}

.checkmate-why-grid {
    gap: 1.5rem;
}

.checkmate-why-icon {
    width: 70px;
    height: 70px;
}
}

@media (max-width: 480px) {
.checkmate-why-grid {
    grid-template-columns: 1fr;
}

.checkmate-why-title {
    font-size: 1.8rem;
}

.checkmate-why-section {
    padding: 2rem 1rem;
}

.checkmate-why-card {
    max-width: 320px;
    margin: 0 auto;
}
}
/********************       WHY CHOOSE US END   *********************/
        /* Social Media Icons Styling */
        .social-float {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            z-index: 9999; /* Ensures icons are above other elements */
        }

        .social-float a {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            text-decoration: none;
            color: white;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 5px 0 0 5px;
            overflow: hidden;
            width: 50px; /* Initial width */
        }

        .social-float a i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

        .social-float a span {
            padding: 0 15px;
            font-family: Arial, sans-serif;
            font-weight: bold;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-size: 14px;
        }

        .social-float a:hover {
            width: 160px; /* Width on hover to show text */
        }

        .social-float a:hover span {
            opacity: 1;
        }

        /* Individual social media colors */
        .facebook {
            background-color: #3b5998;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        .whatsapp {
            background-color: #25d366;
        }

        /* Toggle button for mobile */
        .social-toggle {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #333;
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments for Desktop (1024px) */
        @media (max-width: 1024px) {
            .social-float a i {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .social-float a {
                width: 45px;
            }
            
            .social-float a:hover {
                width: 150px;
            }
            
            .social-float a span {
                font-size: 13px;
            }
        }

        /* Responsive adjustments for Tablet (768px) */
        @media (max-width: 768px) {
            .social-float {
                right: -45px; /* Hide by default on tablet */
                transition: right 0.3s ease;
            }
            
            .social-float.show {
                right: 0;
            }
            
            .social-float a i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .social-float a {
                width: 40px;
            }
            
            .social-float a:hover {
                width: 140px;
            }
            
            .social-float a span {
                font-size: 12px;
                padding: 0 10px;
            }
            
            .social-toggle {
                display: flex;
                width: 45px;
                height: 45px;
            }
        }

        /* Responsive adjustments for Mobile (480px) */
        @media (max-width: 480px) {
            .social-float {
                right: -35px; /* Fixed hiding position */
            }
            
            .social-float.show {
                right: 0; /* Show properly when toggled */
            }
            
            .social-float a i {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .social-float a {
                width: 35px;
                margin: 1px 0;
            }
            
            .social-float a:hover {
                width: 130px;
            }
            
            .social-float a span {
                font-size: 11px;
                padding: 0 8px;
            }
            
            .social-toggle {
                width: 40px;
                height: 40px;
                right: 15px;
                bottom: 15px;
                font-size: 14px;
            }
        }
        
        /* Alternative positioning - horizontal bottom bar for very small screens */
        @media (max-width: 380px) {
            .social-float {
                right: -100%; /* Completely hide off-screen */
                top: auto;
                bottom: -100px;
                transform: none;
                transition: all 0.3s ease;
            }
            
            .social-float.show {
                flex-direction: row;
                bottom: 70px;
                top: auto;
                right: 50%;
                transform: translateX(50%);
                background: rgba(0, 0, 0, 0.7);
                border-radius: 25px;
                padding: 5px;
            }
            
            .social-float a {
                margin: 0 3px;
                border-radius: 50%;
                width: 35px;
                height: 35px;
                display: flex;
                justify-content: center;
            }
            
            .social-float a i {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 35px;
                height: 35px;
            }
            
            .social-float a:hover {
                width: 35px;
            }
            
            .social-float a span {
                display: none;
            }
        }