body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #000;
}

.navbar .nav-link {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #f8f9fa;
}

.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-image: url('../assets/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 180px 0;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section h1, .hero-section p {
    position: relative;
    z-index: 2;
}

.hero-section .btn {
    margin-top: 20px;
    background-color: #ff4b4b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index    : 2;
    position: relative;
}

.hero-section .btn:hover {
    background-color: #e64545;
    transform: translateY(-3px);
}

/* Featured Products Section - Cards */
.card {
    height: 100%; /* Make card take full height */
    display: flex;
    flex-direction: column; /* Align image and content vertically */
    justify-content: space-between; /* Ensure consistent spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for style */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures that content stays within the card */
}

.card-img-top {
    height: 300px; /* Fixed image height */
    object-fit: cover; /* Ensures image fits within the fixed height */
}

.card-body {
    flex-grow: 1;
    padding: 15px; /* Padding inside the card */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push text evenly between title and text */
    text-align: center; /* Center-align the text inside the card */
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
    flex-grow: 0; /* Ensure title doesn't stretch */
    text-align: center; /* Center the title */
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: justify; /* Aligns text evenly */
    flex-grow: 1; /* Ensure text takes the necessary space */
}


/* Compare Section Styling */
.compare-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.compare-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 30px;
}

.table {
    margin-bottom: 0; /* Ensure there's no extra space at the bottom of the table */
    border-collapse: separate; /* For better spacing in cells */
}

.table th, .table td {
    padding: 20px;
    vertical-align: middle; /* Ensures that text aligns in the middle of each cell */
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1; /* Light hover effect for rows */
}

.table thead th {
    background-color: #000; /* Dark header for the table */
    color: #fff;
    font-weight: bold;
}

.table td {
    font-size: 1rem;
    color: #333;
}


/* Video Demos Section */
.video-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.video-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 30px;
}

/* Special Offers Section */
.special-offers-section {
    background-color: #dc3545;
    color: #fff;
    padding: 60px 0;
}

.special-offers-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.special-offers-section p {
    font-size: 1.25rem;
    font-weight: 300;
}

.special-offers-section .btn {
    background-color: #fff;
    color: #dc3545;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.special-offers-section .btn:hover {
    background-color: #f8f9fa;
    color: #c82333;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
}

.cta-section p {
    font-size: 1.25rem;
    color: #555;
}

.cta-section .btn {
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-section .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #212529;
    color: white;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.services-section .bi {
    font-size: 2.5rem;
    color: #ff4b4b;
}

.services-section h4 {
    margin-top: 20px;
    font-size: 1.5rem;
}

.services-section p {
    font-size: 1rem;
    margin-top: 10px;
    color: #ccc;
}

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
}

