 html, body {
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth; /* Enables smooth scrolling */
    }
   
/* Navbar customization */
.navbar {
    background-color: #ffffff; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern floating effect */
    padding: 10px 20px; /* More spacious padding */
    border-bottom: 2px solid #4CAF50; /* Subtle accent border */
}

.navbar .navbar-brand {
    font-weight: 700; /* Stronger emphasis */
    color: #4CAF50; /* Modern green */
    font-size: 24px; /* Slightly larger for prominence */
    text-transform: uppercase; /* Classic uppercase text */
    letter-spacing: 1px; /* Slight spacing for a clean look */
    transition: color 0.3s ease;
}

.navbar .navbar-brand:hover {
    color: #333333; /* Neutral hover color */
}

.navbar-nav .nav-link {
    color: #333333; /* Dark text for contrast */
    font-size: 16px;
    margin-right: 20px;
    padding: 8px 12px; /* Additional padding for clickability */
    border-radius: 4px; /* Rounded edges for a modern look */
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff; /* White text on hover */
    background-color: #4CAF50; /* Green background hover effect */
    text-decoration: none; /* No underline */
}

.nav-item.dropdown .dropdown-menu {
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Subtle border for definition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dropdown shadow */
}

.dropdown-menu .dropdown-item {
    color: #333333; /* Neutral text */
    font-size: 14px;
    padding: 10px 15px; /* Comfortable spacing */
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #4CAF50; /* Green hover effect */
    color: #ffffff; /* White text on hover */
}

.navbar-toggler {
    border: none; /* Remove border for a cleaner look */
    background-color: transparent; /* Transparent background */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(0,0,0,0.7)" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E'); /* Custom hamburger icon */
    width: 30px;
    height: 30px;
    background-size: contain;
}

/* Active link styles */
.navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: #4CAF50;
    font-weight: bold; /* Highlight active link */
}

     .buy-btn, .buy-another-btn {
        background-color: #28a745;
        color: white;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        font-weight: bold;
        margin-top: 10px;
        display: inline-block;
    }
    .buy-another-btn {
        background-color: #007bff;
        margin-left: 10px;
    }
    .buy-btn:hover, .buy-another-btn:hover {
        background-color: #218838;
    }
    .buy-another-btn:hover {
        background-color: #0056b3;
    }
     html, body {
  max-width: 100%;
  overflow-x: hidden;
}
    
  /* Initial position of the paragraph */
    .contact-paragraph {
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }

    /* Animation class when section is in view */
    .slide-in-animation {
        opacity: 1;
        transform: translateX(0);
    }
    
        body {
            background-color: #f3f4f6;
            color: #333;
            font-family: 'Arial', sans-serif;
        }
        .bundle-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            margin-bottom: 20px;
            background-color: #ffffff;
            border-left: 8px solid #007bff; /* Classic Blue Accent */
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .bundle-bar:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }
        .bundle-info {
            flex-grow: 1;
            padding-right: 15px;
        }
        .bundle-info h5 {
            color: #007bff; /* Classic Blue */
            font-weight: bold;
            margin-bottom: 10px;
        }
        .bundle-info p {
            color: #555; /* Smart neutral gray for text */
        }
        .buy-btn {
            margin-left: 15px;
            background-color: #28a745; /* Smart Green Button */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        .buy-btn:hover {
            background-color: #218838; /* Darker shade for hover effect */
        }
        .container h1 {
            color: #333;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
            font-size:24px;
        }
         footer {
      background-color: #333;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }

   .flex-bar-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 200px;
  overflow: hidden;
}

.flex-bar {
  width: 45%;
  background-color: #007bff;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  animation: slide-in-right 2s forwards;
}

.flex-bar:nth-child(2) {
  background-color: #ff0000;
  transform: translateX(100%);
  animation: slide-in-left 2s forwards;
}

.flex-bar p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.convert-btn {
  background-color: #f8f9fa;
  color: #007bff;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.convert-btn:hover {
  background-color: #007bff;
  color: white;
}

/* Slide animations */
@keyframes slide-in-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}


   .flex-bar-heading {
  text-align: center;
  font-size: 2rem; /* Adjust the size as needed */
  font-weight: bold;
  color: #007bff; /* Use a primary brand color */
  margin-bottom: 30px; /* Add space below the heading */
  letter-spacing: 1px; /* Add slight letter spacing for better readability */
  text-transform: uppercase; /* Make the text uppercase for emphasis */
  padding: 10px; /* Add padding to give some space around the text */
  border-bottom: 3px solid #007bff; /* Optional: Add a bottom border for style */
  display: inline-block; /* Adjusts width to fit content */
}
.about-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa; /* Light background for the section */
  border-radius: 0.75rem;
  position: relative;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.about-description {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px; /* Limits the width of the text */
  margin: 0 auto; /* Center the text horizontally */
  opacity: 0; /* Initially hidden */
  transform: translateX(100%); /* Start from the right */
  animation: slide-in 2s forwards ease-in-out; /* Animation to slide in */
}

@keyframes slide-in {
  to {
    transform: translateX(0); /* Ends at the center */
    opacity: 1; /* Fully visible at the end of animation */
  }
}