*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Manrope', sans-serif;
    margin: 0;
    background-color: #121212;
    padding: 0;
    box-sizing: border-box;
}

 /* Navbar Container */
 .navbar-container {
    max-width: 1000px; /* Max width for desktop */
    background-color: #1F1F1F; /* Slightly lighter dark grey for navbar */
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); /* Darker, more prominent shadow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px; /* Vertical and horizontal padding */
    box-sizing: border-box;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */

    /* Sticky properties for universal centering */
    position: sticky;
    top: 20px; /* Stick to 20px from the top of the viewport */
    left: 0; /* Allow it to stretch from left edge */
    right: 0; /* Allow it to stretch to right edge */
    margin: 0 auto; /* This centers the element when max-width is hit */

    z-index: 1000; /* Ensure it stays on top of other content */
    min-width: 320px; /* Minimum width for the navbar itself */
    transition: all 0.3s ease; /* Transition all relevant properties for smoothness */
}

/* Logo Styling */
.navbar-logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #FFFFFF; /* White text for logo */
    text-decoration: none;
    padding: 5px 0; /* Align with other items */
}

/* Navigation Links (Desktop) */
.navbar-links-desktop {
    display: flex; /* Always display on desktop */
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1; /* Allow links to take available space */
    justify-content: center; /* Center the links */
    transition: all 0.3s ease-in-out;
}

.navbar-links-desktop li {
    margin: 0 15px;
}

.navbar-links-desktop a {
    text-decoration: none;
    color: #F0F0F0; /* Off-white text for links */
    font-weight: 500;
    font-size: 1.05em;
    padding: 10px 5px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-links-desktop a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #007BFF; /* Blue accent color */
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-links-desktop a:hover {
    color: #007BFF; /* Blue accent on hover */
}

.navbar-links-desktop a:hover::after {
    width: 100%;
    left: 0;
}

/* Auth Buttons Container (Desktop) */
.navbar-auth-desktop {
    display: flex; /* Always display on desktop */
    align-items: center;
    gap: 15px; /* Space between buttons */
}

.navbar-auth-desktop button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px; /* Rounded buttons */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.navbar-auth-desktop .signup-btn {
    background-color: #007BFF; /* Blue accent primary button */
    color: #FFFFFF; /* White text for contrast */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.navbar-auth-desktop .signup-btn:hover {
    background-color: #0056b3; /* Slightly darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.navbar-auth-desktop .login-btn {
    background-color: transparent;
    color: #007BFF; /* Blue accent text for login button */
    border: 2px solid #007BFF; /* Blue accent border */
}

.navbar-auth-desktop .login-btn:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Subtle blue tint on hover */
    color: #007BFF;
    border-color: #007BFF;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    justify-content: space-between;
    width: 25px; /* Reduced width */
    height: 18px; /* Reduced height */
    cursor: pointer;
    position: relative;
    z-index: 100; /* Ensure it's above other elements when open */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0; /* Light bars for dark background */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger animation for 'x' shape */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); /* Adjusted for new height */
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); /* Adjusted for new height */
}

/* Mobile Menu Content (Dropdown) */
.mobile-menu-content {
    display: flex; /* Flex container for links and auth buttons */
    flex-direction: column; /* Stack them vertically */
    width: calc(100% - 40px); /* Full width minus padding for mobile dropdown */
    max-width: 400px; /* Max width for mobile menu */
    text-align: center;
    position: absolute;
    top: 100%; /* Position right below the navbar */
    margin-top: 10px; /* Space between navbar and dropdown menu */
    left: 50%;
    transform: translateX(-50%) translateY(-20px); /* Initial hidden state with slide effect */
    background-color: #1F1F1F; /* Dark grey theme background for dropdown */
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); /* Darker shadow */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    padding-bottom: 20px; /* Padding for buttons at the bottom */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Mobile specific links and auth buttons, nested inside mobile-menu-content */
.mobile-menu-content .navbar-links-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Ensure these are flex for stacking */
    flex-direction: column;
    width: 100%;
    padding-top: 20px;
}

.mobile-menu-content .navbar-links-mobile li {
    margin: 10px 0;
}

.mobile-menu-content .navbar-links-mobile a {
    text-decoration: none;
    color: #F0F0F0; /* Off-white text for mobile links */
    font-weight: 500;
    font-size: 1.1em;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}
.mobile-menu-content .navbar-links-mobile a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #007BFF; /* Blue accent */
    transition: width 0.3s ease, left 0.3s ease;
}
.mobile-menu-content .navbar-links-mobile a:hover {
    color: #007BFF; /* Blue accent on hover */
}
.mobile-menu-content .navbar-links-mobile a:hover::after {
    width: 100%;
    left: 0;
}


.mobile-menu-content .navbar-auth-mobile {
    display: flex; /* Ensure these are flex for stacking */
    flex-direction: column;
    width: 100%;
    padding: 10px 0 0;
    gap: 10px;
}

.mobile-menu-content .navbar-auth-mobile button {
    width: calc(100% - 60px); /* Adjust for parent padding and button margins */
    margin: 0 auto; /* Center buttons */
    max-width: 300px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-menu-content .navbar-auth-mobile .signup-btn {
    background-color: #007BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.mobile-menu-content .navbar-auth-mobile .signup-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.mobile-menu-content .navbar-auth-mobile .login-btn {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.mobile-menu-content .navbar-auth-mobile .login-btn:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007BFF;
    border-color: #007BFF;
}


/* Responsive Design - Media Queries */
@media (max-width: 768px) {
    .navbar-container {
        /* Allow sticky element to take full width of viewport minus fixed padding */
        padding: 10px 20px;
         /* Slightly less rounded on small screens */
        top: 15px; /* Stick closer to top on mobile */
        max-width: calc(100% - 40px); /* Allow it to be full width with 20px side margin */
        /* Remove any left/right/transform here as margin: auto is primary for centering */
        /* The margin: 0 auto; already ensures centering */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on smaller screens */
    }

    /* Hide desktop links and auth buttons on mobile */
    .navbar-links-desktop,
    .navbar-auth-desktop {
        display: none;
    }

    /* Show mobile menu content when menu is open */
    .navbar-container.menu-open .mobile-menu-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0); /* Slide into view */
        pointer-events: auto;
        /* Width already set at 100% minus padding in .mobile-menu-content general rules */
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        font-size: 1.5em;
    }

    .navbar-container {
        padding: 10px 15px;
    }

    .hamburger-menu {
        width: 25px; /* Stay same as 768px */
        height: 18px; /* Stay same as 768px */
    }
}



* Main Section Block */
 .bfx-features-section {
    color: #f0f0f0;
    background-color: #121212;
    border-radius: 12px;
    padding: 40px;
    margin: auto; /* Optional: Adds some space around the section when standalone */
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Responsive layout for the main section */
@media (min-width: 992px) {
    .bfx-features-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Left content area: Description and Features */
.bfx-features-section__content {
    flex: 1;
    padding-right: 20px; /* Space between text and image on larger screens */
}

@media (max-width: 991px) {
    .bfx-features-section__content {
        padding-right: 0; /* Remove padding on smaller screens */
    }
}

/* Tagline/Label above the main heading */
.bfx-features-section__label {
    font-size: 0.9em;
    color: #2196F3; /* Blue accent */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

/* Main Heading */
.bfx-features-section__heading {
    font-size: 2.5em;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .bfx-features-section__heading {
        font-size: 2em;
    }
}

/* Introductory Paragraph */
.bfx-features-section__paragraph {
    font-size: 1.1em;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .bfx-features-section__paragraph {
        font-size: 1em;
    }
}

/* Grid for feature items */
.bfx-features-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .bfx-features-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Individual feature item */
.bfx-features-section__feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: #f0f0f0;
}

.bfx-features-section__feature-item svg {
    color: #2196F3; /* Blue accent */
    min-width: 20px;
    min-height: 20px;
}

/* Right visual area (image/dashboard) */
.bfx-features-section__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px; /* Space between text and image on larger screens */
}

@media (max-width: 991px) {
    .bfx-features-section__visual {
        padding-left: 0; /* Remove padding on smaller screens */
    }
}

/* Image placeholder/container */
.bfx-features-section__image-placeholder {
    width: 100%;
   /* Maintain aspect ratio (e.g., 600x400) */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b0b0b0;
    font-size: 1.2em;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}

.bfx-features-section__image-placeholder img {
   
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

button{
    font-family: "Manrope";
}

/* BullionFX Simple Footer Styles */
.bullionfx-footer {
    background-color: #1a202c; /* Dark blue-grey background */
    color: #e2e8f0; /* Light text for contrast */
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%;
    border-top: 1px solid #2d3748; /* Subtle top border */
    display: flex;
    flex-direction: column; /* Stack content vertically on small screens */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text for simpler layout */
}

.footer-content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between main sections */
}

@media (min-width: 768px) {
    .bullionfx-footer {
        text-align: left; /* Align text left on larger screens */
    }
    .footer-content-wrapper {
        flex-direction: row; /* Arrange content in rows on larger screens */
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Footer Branding */
.footer-brand {
    flex: 2; /* Takes more space on wider screens */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* Center brand elements on small screens */
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: flex-start; /* Align brand elements left on larger screens */
    }
}

.footer-logo {
    font-size: 1.6em;
    font-weight: 700;
    color: #4299e1; /* BullionFX blue */
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.5;
    color: #a0aec0;
    max-width: 400px; /* Limit width for readability */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #2d3748;
    border-radius: 6px;
    color: #e2e8f0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: #4299e1;
    color: #ffffff;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Navigation Columns */
.footer-nav-group {
    flex: 1;
    margin-top: 20px; /* Space above nav columns on small screens */
}

@media (min-width: 768px) {
    .footer-nav-group {
        margin-top: 0; /* No extra margin on larger screens */
    }
}

.nav-heading {
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 8px;
}

.nav-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.88em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4299e1;
}

/* Copyright Section */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 0.85em;
    color: #a0aec0;
}

.activity-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateX(-110%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.activity-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notification-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.notification-text {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.notification-name {
    color: #f1f5f9;
    font-weight: 500;
}

.notification-action {
    color: #60a5fa;
    font-weight: 500;
}

.notification-time {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .activity-notification {
        left: 16px;
        bottom: 16px;
        max-width: calc(100vw - 32px);
        padding: 10px 14px;
    }

    .notification-text {
        font-size: 13px;
    }

    .notification-time {
        font-size: 11px;
    }
}

    /* Testimonial Carousel Styles */
.bfx-carousel-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    background-color: #1a2a3a; /* Darker blue for the carousel background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 30px;
    box-sizing: border-box;
    /* Responsive adjustments */
    margin: 20px auto; /* Add some margin for smaller screens */
}

.bfx-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.bfx-testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 20px; /* Add padding inside slides */
}

.bfx-testimonial-slide.active {
    display: flex; /* Show active slide */
    opacity: 1;
}

.bfx-testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%; /* Ensure content takes full width of its parent */
}

.bfx-testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Make it a circle */
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #6699ff; /* Blue border for avatar */
    box-shadow: 0 0 10px rgba(102, 153, 255, 0.5); /* Subtle glow */
}

.bfx-testimonial-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #c0c0c0; /* Slightly lighter grey for quotes */
    font-style: italic; /* Italicize testimonial text */
    padding: 0 10px; /* Padding for text */
}

.bfx-testimonial-author {
    font-size: 1em;
    font-weight: bold;
    color: #6699ff; /* Blue color for author name */
    text-shadow: 0 0 5px rgba(102, 153, 255, 0.3); /* Subtle text shadow */
}

.bfx-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(102, 153, 255, 0.7); /* Semi-transparent blue buttons */
    color: white;
    border: none;
    padding: 12px 18px; /* Larger padding for better touch targets */
    cursor: pointer;
    font-size: 1.8em; /* Larger font size for arrows */
    border-radius: 50%; /* Circular buttons */
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; /* Fixed width for circular shape */
    height: 45px; /* Fixed height for circular shape */
}

.bfx-carousel-button:hover {
    background-color: #6699ff; /* Solid blue on hover */
    transform: translateY(-50%) scale(1.1); /* Slight scale on hover */
}

.bfx-carousel-button.bfx-prev {
    left: 10px;
}

.bfx-carousel-button.bfx-next {
    right: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .bfx-carousel-container {
        width: 95%;
        padding: 15px;
    }

    .bfx-testimonial-text {
        font-size: 1em;
    }

    .bfx-testimonial-avatar {
        width: 80px;
        height: 80px;
    }

    .bfx-carousel-button {
        padding: 8px 12px;
        font-size: 1.5em;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .bfx-carousel-container {
        padding: 10px;
    }

    .bfx-testimonial-text {
        font-size: 0.9em;
    }

    .bfx-testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .bfx-carousel-button {
        padding: 6px 10px;
        font-size: 1.2em;
        width: 35px;
        height: 35px;
    }
}



/* General styles for standalone sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
  }
  
  /* Section Titles */
  .section-title {
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #2c3e50; /* Dark text for light background sections */
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #007bff;
    border-radius: 3px;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    font-family: "Manrope", sans-serif;
  }
  
  .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
  }
  
  .btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  }
  
  /* --- Features Page Specifics --- */
  
  /* Hero Section */
  .hero-section {
    background-color: #f8f8f8;
    padding: 100px 0;
    color: #2c3e50;
    font-family: "Manrope", sans-serif;
    line-height: 1.7;
  }
  
  .hero-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .hero-content {
    flex: 1;
    min-width: 400px;
  }
  
  .hero-content .tag {
    display: inline-block;
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }
  
  .hero-content p {
    font-size: 20px;
    color: #6c7a89;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 400px;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .hero-image img:hover {
    transform: translateY(-5px);
  }
  
  /* Alternating Feature Sections */
  .feature-section {
    padding: 100px 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.7;
  }
  
  .feature-section:nth-of-type(odd) {
    background-color: #f8f8f8;
    color: #2c3e50;
  }
  
  .feature-section:nth-of-type(even) {
    background-color: #0a0a0a;
    color: #e0e0e0;
  }
  
  .feature-section .section-title {
    color: inherit; /* Inherit color from parent section */
  }
  
  .feature-item-alt {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px; /* Space between feature items within a section */
  }
  
  .feature-item-alt:last-child {
    margin-bottom: 0;
  }
  
  .feature-content-alt {
    flex: 1;
    min-width: 350px;
  }
  
  .feature-content-alt .tag {
    display: inline-block;
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .feature-content-alt h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: inherit; /* Inherit color from parent section */
  }
  
  .feature-content-alt p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #6c7a89; /* Muted for light background */
  }
  
  .feature-section:nth-of-type(even) .feature-content-alt p {
    color: #a0a0a0; /* Muted for dark background */
  }
  
  .feature-benefits-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 15px;
    color: inherit; /* Inherit color from parent section */
  }
  
  .feature-benefits-list li:last-child {
    margin-bottom: 0;
  }
  
  .feature-benefits-list li svg {
    color: #007bff;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  
  .feature-image-alt {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 350px;
  }
  
  .feature-image-alt img {
    max-width: 100%;
    height: auto;
    border-radius: 25px; /* More rounded for phone mockups */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .feature-section:nth-of-type(even) .feature-image-alt img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Darker shadow on dark background */
  }
  
  .feature-image-alt img:hover {
    transform: translateY(-5px);
  }
  
  /* Alternating order for even sections */
  .feature-section:nth-of-type(odd) .feature-item-alt:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .feature-section:nth-of-type(even) .feature-item-alt:nth-child(odd) {
    flex-direction: row-reverse;
  }
  
  /* Grid Features Section */
  .grid-features-section {
    background-color: #f8f8f8;
    padding: 100px 0;
    color: #2c3e50;
    font-family: "Manrope", sans-serif;
    line-height: 1.7;
  }
  
  .grid-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .grid-feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .grid-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }
  
  .grid-feature-card .icon-wrapper {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    padding: 18px;
    margin: 0 auto 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .grid-feature-card .icon-wrapper svg {
    color: #007bff;
    width: 38px;
    height: 38px;
  }
  
  .grid-feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .grid-feature-card p {
    font-size: 17px;
    color: #6c7a89;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-section .container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
  
    .hero-content {
      min-width: unset;
    }
  
    .hero-content h1 {
      font-size: 52px;
    }
  
    .hero-content p {
      font-size: 18px;
    }
  
    .hero-image {
      min-width: unset;
    }
  
    .feature-item-alt {
      flex-direction: column !important; /* Force column for all on smaller screens */
      text-align: center;
      gap: 40px;
    }
  
    .feature-content-alt {
      min-width: unset;
    }
  
    .feature-content-alt h2 {
      font-size: 38px;
    }
  
    .feature-content-alt p {
      font-size: 17px;
    }
  
    .feature-benefits-list {
      text-align: left; /* Keep list items left-aligned */
      width: fit-content;
      margin: 0 auto; /* Center the list itself */
    }
  
    .feature-image-alt {
      min-width: unset;
    }
  
    .section-title {
      font-size: 42px;
      margin-bottom: 60px;
    }
  
    .grid-features-container {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  
    .grid-feature-card {
      padding: 30px;
    }
  
    .grid-feature-card h3 {
      font-size: 24px;
    }
  
    .grid-feature-card p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding: 80px 0;
    }
  
    .hero-content h1 {
      font-size: 44px;
    }
  
    .hero-content p {
      font-size: 17px;
    }
  
    .section-title {
      font-size: 36px;
      margin-bottom: 50px;
    }
  
    .feature-section {
      padding: 80px 0;
    }
  
    .feature-content-alt h2 {
      font-size: 32px;
    }
  
    .feature-content-alt p {
      font-size: 16px;
    }
  
    .feature-benefits-list li {
      font-size: 17px;
    }
  
    .feature-benefits-list li svg {
      width: 24px;
      height: 24px;
    }
  
    .btn {
      padding: 12px 25px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .hero-section {
      padding: 60px 0;
    }
  
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .section-title {
      font-size: 30px;
      margin-bottom: 40px;
    }
  
    .feature-section {
      padding: 60px 0;
    }
  
    .feature-content-alt h2 {
      font-size: 28px;
    }
  
    .feature-content-alt p {
      font-size: 15px;
    }
  
    .feature-benefits-list li {
      font-size: 16px;
    }
  
    .grid-features-container {
      grid-template-columns: 1fr;
    }
  
    .grid-feature-card {
      padding: 25px;
    }
  
    .grid-feature-card h3 {
      font-size: 22px;
    }
  
    .grid-feature-card .icon-wrapper {
      padding: 15px;
      margin-bottom: 20px;
    }
  
    .grid-feature-card .icon-wrapper svg {
      width: 32px;
      height: 32px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 15px;
    }
  }
  