/* General Body Styles */
:root {
    --accent-blue-color: #007bff;
    --accent-red-color: #d91616;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
}

/* Hero Container */
.hero-container {
    position: relative;
    height: 100vh; /* Increased height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/logophoto.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Bar Styles */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    height: 60px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 100;
}

nav:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav:hover a {
    color: #333;
}

nav:hover .nav-right a {
    color: var(--accent-blue-color);
}

nav:hover .nav-right a:hover {
    color: #ffffff;
}



/* Left Section: Logo and Location */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navlogo img {
    height: 70px; /* Adjust height as needed */
    display: block;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-size: 16px;
    font-weight: 700;
}

.nav-location i {
    color: var(--accent-red-color);
    font-size: 18px;
}

/* Center Section: Navigation Links */
.nav-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-center a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red-color);
    transition: width 0.3s ease;
}

.nav-center a:hover::after {
    width: 100%;
}

/* Right Section: User Account */
.nav-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-right a:hover {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}

/* Bonus Program Section */
.bonus-program {
    padding: 60px 80px;
    background-color: #ffffff;
}

.bonus-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bonus-left {
    flex-basis: 50%;
    transform: translateX(40px);
}

.bonus-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.bonus-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bonus-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.bonus-left li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.bonus-left li i {
    background-color: var(--accent-blue-color);
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-right: 15px;
    font-size: 12px;
}

.bonus-details-button {
    display: inline-block;
    background-color: var(--accent-red-color);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.bonus-details-button:hover {
    background-color: #b81010;
}

.bonus-right {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* What We Do Section - Horizontal Style */
.what-we-do {
    padding: 60px 80px;
    background-color: #f4f5f7;
}

.what-we-do .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.what-we-do .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-item {
    text-align: center;
    max-width: 250px;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
    background-color: var(--accent-blue-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.service-item:hover .service-icon i {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
}

.service-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 80px;
    border-top: 1px solid #e7e7e7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p,
.footer-right p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.footer-left p:first-child {
    font-weight: 700;
}

.footer-right {
    text-align: right;
}

/*
--------------------------------------------------------------------------------
  NOTIFICATION STYLES
--------------------------------------------------------------------------------
*/

#notification {
    position: fixed;
    top: -100px; /* Start off-screen */
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000; /* Ensure it's on top of everything */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: top 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#notification.show {
    top: 20px; /* Slide in */
}

#notification.success {
    background-color: #28a745; /* Green for success */
}

#notification.error {
    background-color: #dc3545; /* Red for error */
}

#notification i {
    font-size: 20px;
}

/* --- Cashback Feature Styles --- */
.stat-block.cashback-achieved {
    background-color: #e0f2e9;
    transition: background-color 0.5s ease;
}

.cashback-promo {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-top: 5px;
    font-weight: normal;
}
