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

/*
.navbar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.brand {
    font-size: 16px;
    font-weight: 700;
    color: #8B0000;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.brand img {
    height: 50px;
}
*/
.searchbar {
    display: flex;
    align-items: center;
    border: 1px solid #E7E7E7;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    width: 400px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.searchbar input {
    border: none;
    outline: none;
    padding: 0 16px;
    width: 60%;
    font-size: 14px;
    height: 48px;
    flex: 1;
}

.searchbar button {
    border: none;
    background: #920002;
    color: #fff;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #8B0000;
}

.nav-links a.active {
    color: #8B0000;
    font-weight: 600;
}
*/
.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #000;
    position: relative;
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #000;
}

.hamburger span::before {
    top: -6px;
}

.hamburger span::after {
    top: 6px;
}

.home-banner {
    height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.home-banner .bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('assets/regulatory-CKg5TIor.png') no-repeat center/cover;
    filter: brightness(0.85);
}

.home-banner .content {
    position: relative;
    z-index: 1;
    padding: 24px;
    color: #fff;
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
}

.home-banner .eyebrow {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-align: left;
}

.home-banner .title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    margin: 16px 0;
    text-transform: uppercase;
    text-align: left;
}

.home-banner .subtitle {
    color: #fff;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
    margin: 20px 0;
    text-align: left;
}

.cta-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-start;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn.primary {
    background: #920002;
    border-color: #920002;
    padding: 14px 32px;
    min-width: 160px;
    text-align: center;
}

.swiper-pagination {
    position: absolute;
    right: 10%;
    bottom: 12%;
    z-index: 2;
    display: flex;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #920002;
    width: 32px;
    border-radius: 6px;
}

.section-eyebrow {
    color: #920002;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title {
    color: #000;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
}

/* Who We Are Section */
.who-we-are {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-image img {
    max-width: 100%;
    height: auto;
    filter: sepia(0.2);
}

.who-we-are-content .section-eyebrow {
    color: #c4a57b;
}

.who-we-are-content .section-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.who-we-are-content p {
    color: #646464;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.who-we-are-content .btn.primary {
    margin-top: 20px;
}

/* Achievements Banner Section */
.achievements-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 24px;
    background: #f9f9f9;
}

.achievements-banner-content .section-eyebrow {
    color: #c4a57b;
}

.achievements-banner-content .section-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.achievements-banner-content p {
    color: #646464;
    font-size: 16px;
    line-height: 1.8;
}

.achievements-banner-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100px;
    margin-top: 10px;
}

.achievements-banner-actions .btn.primary {
    background: #920002;
    border-color: #920002;
}

/* Achievements Cards Section */
.achievements-cards-section {
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.achievement-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 40px 24px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: #920002;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 24px;
}

.achievement-icon i {
    color: #fff;
    font-size: 36px;
}

.achievement-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.achievement-card-description {
    font-size: 14px;
    color: #646464;
    margin-bottom: 20px;
    line-height: 1.6;
}

.achievement-card .btn {
    background: #920002;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}




.products-grid,
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 180px;
    background: #f5f5f5;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 16px;
    flex: 1;
}

.card-title {
    font-weight: 700;
    margin: 4px 0;
    font-size: 16px;
}

.card-sub {
    color: #646464;
    font-size: 13px;
    margin-top: 8px;
}

.card-actions {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.view-btn {
    color: #920002;
    text-decoration: none;
    font-weight: 600;
}

.date-label {
    color: #999;
    font-size: 12px;
}

.footer {
    margin-top: 48px;
    padding: 24px;
    background: #f7f7f7;
    color: #646464;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1024px) {

    .products-grid,
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-banner .content {
        margin-left: auto;
        margin-right: 5%;
    }

    .swiper-pagination {
        right: 5%;
    }

    .who-we-are,
    .achievements-banner {
        gap: 40px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header-action {
        justify-content: flex-start;
    }

    .service-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {

    .products-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e7e7e7;
        padding: 12px 24px;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: inline-flex;
    }

    .who-we-are,
    .achievements-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
    }

    .achievements-banner-actions {
        justify-content: flex-start;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {

    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/*new*/
.slider {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slides {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slide-content {
    padding: 24px 30px;
    background: white;
    height: 180px;
    /* FIXED HEIGHT */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    /* Required for line-clamp to work */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    /* Required for line-clamp to work */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controls */
.controls {
    position: absolute;
    top: 150px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #8B1538;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.controls button:hover {
    background: #8B1538;
    color: white;
    transform: scale(1.1);
}

/* Dots */
.dots {
    text-align: center;
    padding: 18px;
    background: white;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #8B1538;
    width: 30px;
    border-radius: 5px;
}

/* Counter */
.counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

@media (max-width: 768px) {
    .slide img {
        height: 220px;
    }

    .slide-content {
        padding: 20px 24px;
        height: 160px;
        /* FIXED HEIGHT for mobile */
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .controls {
        top: 110px;
    }

    .controls button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/*new services*/
.services-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 40px;
}

/* Services Slider - LEFT SIDE - SAME AS ACHIEVEMENTS */
.slider-services {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slides-services {
    position: relative;
    overflow: hidden;
}

.slide-service {
    display: none;
}

.slide-service.active {
    display: block;
}

/* VERTICAL LAYOUT - Image TOP, Content BOTTOM (Same as Achievements) */
.slide-service img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slide-content-service {
    padding: 24px 30px;
    background: white;
    height: 180px;
    /* FIXED HEIGHT */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-content-service h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-content-service p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controls */
.controls-service {
    position: absolute;
    top: 150px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.controls-service button {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #8B1538;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.controls-service button:hover {
    background: #8B1538;
    color: white;
    transform: scale(1.1);
}

/* Dots Container */
.dots-service-container {
    text-align: center;
    padding: 18px;
    background: white;
}

/* Individual Dots */
.dot-service {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot-service.active {
    background: #8B1538;
    width: 30px;
    border-radius: 5px;
}

/* Counter */
.counter-service {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

/* Content Section - RIGHT SIDE */
.services-banner-content {
    padding: 20px;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-banner-content>p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #8B1538;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: #6B0F2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-banner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-banner {
        padding: 40px 24px;
    }

    .slide-service img {
        height: 220px;
    }

    .slide-content-service {
        padding: 20px 24px;
        height: 160px;
    }

    .slide-content-service h3 {
        font-size: 1.2rem;
    }

    .slide-content-service p {
        font-size: 0.85rem;
    }

    .controls-service {
        top: 110px;
    }

    .controls-service button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-banner-content>p {
        font-size: 0.95rem;
    }
}

/* Compliance Section */
.compliance-section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 71, 71, 0.85) 0%, rgba(200, 90, 90, 0.85) 50%, rgba(185, 74, 74, 0.85) 100%);
    z-index: 1;
}

.compliance-content {
    position: relative;
    z-index: 2;
}

.compliance-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.compliance-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.compliance-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.explore-btn {
    background-color: #8B0000;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    background: white;
    margin: -40px auto 60px;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: #8B0000;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 60px 20px 80px;
    text-align: center;
}

.partners-subtitle {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.partners-title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.partners-title span {
    color: #8B0000;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  min-height: 100px;
  min-width: 220px;
  margin: 0 15px;
}

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

.partner-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframe Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .compliance-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partner-logo {
        width: 180px;
        margin: 0 20px;
    }
}

/*products*/
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-title-section {
    flex: 1;
    min-width: 250px;
}

.products-eyebrow {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.products-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.search-input::placeholder {
    color: #aaa;
}

.search-button {
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #660000;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #FF9800;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.product-image-container {
    background: #f9f9f9;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
}

.product-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    min-height: 40px;
}

.product-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* Modern Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    position: relative;
}

.star svg {
    width: 100%;
    height: 100%;
}

/* Filled star */
.star-filled {
    fill: #FFB800;
}

/* Empty star */
.star-empty {
    fill: #E0E0E0;
}

.rating-value {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* View Details Button */
.view-details-btn {
    width: 100%;
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.view-details-btn:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination button {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination button:hover:not(:disabled) {
    background-color: #f5f5f5;
    border-color: #8B0000;
    color: #8B0000;
}

.pagination button.active {
    background-color: #8B0000;
    color: white;
    border-color: #8B0000;
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination .page-nav {
    font-size: 20px;
    padding: 8px 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-title {
        font-size: 28px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

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

/* Product Highlights Section */
.highlights-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

/* Background Image */
.highlights-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(139, 71, 71, 0.6) 0%,
            rgba(200, 90, 90, 0.65) 30%,
            rgba(185, 74, 74, 0.7) 70%,
            rgba(139, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Content */
.highlights-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.highlights-eyebrow {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlights-title {
    color: white;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.highlights-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.explore-btn {
    background-color: #8B0000;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.explore-btn:hover {
    background-color: #660000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
}

.explore-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .highlights-section {
        min-height: 500px;
        padding: 60px 20px;
    }

    .highlights-title {
        font-size: 40px;
    }

    .highlights-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .highlights-section {
        min-height: 450px;
    }

    .highlights-title {
        font-size: 32px;
    }

    .highlights-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .highlights-description {
        font-size: 14px;
    }

    .explore-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
}

/* Articles Section */
.articles-section {
    padding: 60px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.articles-title-section {
    flex: 1;
}

.articles-eyebrow {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.articles-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.view-more-btn {
    background-color: #8B0000;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-category {
    display: inline-block;
    color: #8B0000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #8B0000;
    gap: 10px;
}

.read-more-link::after {
    content: '›';
    font-size: 18px;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8B0000;
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background-color: #999;
}
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-title {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .articles-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-more-btn {
        width: 100%;
    }
}