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

/* Header */
header {
    background: #0b3d91;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0b3d91;
}

/* Card Layout */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.card {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    font-size: 20px;
    color: #333;
}

.card p {
    padding: 0 15px 20px;
    color: #555;
}

/* ============================ */
/* Popular Laptop Brands Slider */
/* ============================ */
/* BRAND SECTION */
#brands {
    padding: 50px 20px;
    text-align: center;
}

.brand-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
}

.brand-container::-webkit-scrollbar {
    display: none;
}

.brand-card {
    flex: 0 0 auto;
    width: 150px;
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}


/* Contact Section Link Styles */
#contact a {
    color: #0b3d91;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background: #0b3d91;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}