body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; /* ensures the logo stays above other elements */
    padding: 20px; /* Add some space from the top left corner */
  }

.logo {
  height: 200px; /* Adjust height as needed */
  width: auto; /* This will maintain the aspect ratio of your logo */
  opacity: 1; /* Make sure the logo is fully visible */
}

.first {
  background-image: url('images/background.jpg');
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.header {
  width: 100%;
  padding: 10px 20px; /* Adjust padding as needed */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-insights {
  width: 100%;
  padding: 10px 20px; /* Adjust padding as needed */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-dark {
  width: 100%;
  padding: 10px 20px; /* Adjust padding as needed */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-image: url('images/background.jpg');
  background-repeat: repeat;
}

.menu-bar {
  display: flex;
  gap: 30px; /* Adjust spacing between menu items */
  padding-right: 50px;
  font-family: inherit; /* Inherit font from body */
  position: relative;
}

.menu-bar::after {
  content: '';
  position: absolute;
  bottom: -15px; /* Adjust this value to control the distance from the menu items */
  right: 0;
  width: 400px; /* This makes the line cover roughly 1/3 of the screen */
  height: 0px; /* Adjust the height of the line as needed */
  background-color: white; /* Color of the line */
}

.menu-bar a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}

.menu-bar a:hover {
  text-decoration:overline; 
  font-weight: bold;
  color: white; /* Improve hover color contrast */
}

.menu-blog {
  display: flex;
  gap: 30px; /* Adjust spacing between menu items */
  padding-right: 50px;
  font-family: inherit; /* Inherit font from body */
  position: relative;
}

.menu-blog::after {
  content: '';
  position: absolute;
  bottom: -15px; /* Adjust this value to control the distance from the menu items */
  right: 0;
  width: 400px; /* This makes the line cover roughly 1/3 of the screen */
  height: 0px; /* Adjust the height of the line as needed */
  background-color: #003366; /* Color of the line */
}

.menu-blog a {
  color: #003366;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}

.menu-blog a:hover {
  text-decoration:overline; 
  font-weight: bold;
  color: #003366; /* Improve hover color contrast */
}

.container-blog {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.container-blog-post {
  display: block; /* Single-column layout */
  padding: 0px 30px;
  max-width: 900px; /* Adjusted width for readability in a single column */
  margin: 0 auto;
  font-size: 15px;
}

.featured-article {
    width: 550px; /* Fixed width for the featured article section */
    margin-right: 30px;
}

.featured-article img {
    width: 550px;
    height: auto;
    border-radius: 10px;
}

.featured-article h2 {
    font-size: 22px;
    margin: 20px 0;
}

.featured-article h2 a {
  font-size: 22px;
  margin: 20px 0;
  color: #000;
  text-decoration: none;
}

.featured-article h2 a:hover {
  font-size: 22px;
  margin: 20px 0;
  color: #000;
  text-decoration: underline;
}

.featured-article p {
    font-size: 14px;
    color: #555;
}

.featured-article span {
    font-size: 13px;
    color: #999;
}

.featured-image {
  width: 650px;
  height: auto;
  border-radius: 10px;
  margin: 10px;
  border: 1px solid #999;
}

.featured-video {
  width: 550px;
  height: auto;
  border-radius: 10px;
  margin: 10px;
  border: 1px solid #999;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.latest-posts {
  width: 350px; /* Fixed width for the latest posts section */
}

.latest-posts h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.latest-posts ul {
    list-style: none;
    padding: 0;
}

.latest-posts ul li {
    font-size: 13px;
    margin-bottom: 15px;
}

.latest-posts ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #0056b3;
    font-weight: normal;
}

.latest-posts ul li a:hover {
    text-decoration: underline;
}

  
.button-main {
  width: 200px;
  padding: 15px;
  border: 1px solid #5c6bc0;
  border-radius: 30px;
  background: linear-gradient(45deg, #6a82fb, #fc5c7d);
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.button-main:hover {
  background: linear-gradient(45deg, #fc5c7d, #6a82fb);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container_air {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.white-background_air {
    background-color: white;
    width: 100%;
}

.black-background_air {
    background-color: black;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.content_air {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between;
    gap: 0px;
    padding: 20px;
    width: 100%;
}

.content-404 {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  justify-content: space-between;
  gap: 0px;
  padding: 20px;
  width: 60%;
  margin: auto;
}

.content-image_air {
    max-width: 100%;
    height: auto;
}

.chart-image_air {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc; /* Border around images */
    margin-left: 30px;
}

.content-text_air {
    flex: 1;
    min-width: 200px;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.content-text_air h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 36px; /* Font size for heading */
    font-weight: 400; /* Light font weight */
}

.content-text_air p {
    font-size: 15px; /* Font size for paragraph */
    line-height: 1.6;
    font-weight: 400; /* Normal font weight */
    margin-bottom: 0; /* Remove bottom margin to reduce gap */
}

.centered-text_air {
    width: 700px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 400;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    width: 100%;
}

/* start of bootstrap style */
.carousel-inner {
  border: 1px solid #000000; /* Border around the carousel */
  border-radius: 10px; /* Optional: round the corners */
  overflow: hidden; /* Prevent overflow */
  height: 600px; /* Set the overall height of the carousel */
  }

  .carousel-item {
  position: relative;
  height: 100%; /* Ensure each item takes full height of the carousel */
  }

  .carousel-inner img {
  width: 100%; /* Full width */
  height: 50%; /* Adjust this to control the image height relative to the carousel height */
  object-fit: cover; /* Cover the container without distortion */
  border-radius: 10px 10px 0 0; /* Round the top corners */
  }

  .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  color: #000000; /* Black text color */
  padding: 0px 0px 10px 10px;
  margin-top: 5px;
  margin-right: 40px;
  margin-left: 40px;
  border-radius: 0 0 10px 10px; /* Match the border radius of the bottom */
  width: 85%; /* Ensure the caption spans the full width of the carousel */
  box-sizing: border-box; /* Ensure padding is included in the width */
  height: 48%; /* Adjust this to control the caption height relative to the carousel height */
  }

      /* Custom indicator colors */
  .carousel-indicators li {
  background-color: #a6a6a8; /* Indicator color */
  }

  .carousel-indicators .active {
  background-color: #000000; /* Active indicator color */
  }

      /* Custom arrow colors */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
  filter: invert(100%); /* Inverts the color to white */
  }
  .carousel-caption h5 {
  text-align: center; /* Center the heading */
  margin-bottom: 10px; /* Add some space between the heading and the paragraph */
  }
  .carousel-caption h6 {
  text-align: center; /* Center the heading */
  margin-bottom: 10px; /* Add some space between the heading and the paragraph */
  }
  .carousel-caption p {
  text-align: left; /* Left-align the paragraph */
  margin: 0; /* Remove any default margins */
  }

/* START OF PRICING TOGGLE CSS */
/* Center container for tier toggle and billing toggle */
.header-container_air {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

/* Center the tier buttons */
.tier-toggle_air {
  display: flex;
  justify-content: center;
  background-color: #f1f3f5;
  border-radius: 25px;
  padding: 5px;
  margin: 0 auto; /* Center the tier toggle */
  width: fit-content;
}

/* Styling for tier buttons */
.tier-btn_air {
  background-color: transparent;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  color: #0056b3;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  width: 220px;
}

.tier-btn_air.active {
  background-color: #0056b3;
  color: #fff;
  outline: none;
}

/* Monthly/Annual toggle (aligned to the right of tier buttons) */
.billing-toggle_air {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider background */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d4edda; /* Very light green */
  transition: 0.4s;
  border-radius: 24px;
}

/* Toggle handle */
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 4px;
  bottom: 4px;
  background-color: #28a745; /* Dark green */
  border: 2px solid white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #d4edda; /* Keep light green background when checked */
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Adjust handle position due to border */
.slider:before {
  left: 2px;
  bottom: 2px;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.save_air {
  color: green;
  font-size: 0.8rem;
  font-weight: normal;
}

/* Active and inactive font colors for toggle */
.toggle-label_air {
  font-size: 1rem;
  color: grey;
  transition: color 0.3s;
  font-size: 0.8rem;
}

.toggle-label_air.active {
  color: black;
  font-weight: bold;
}

/* Pricing boxes (hidden by default) */
.pricing-boxes_air {
  display: none;
}

/* Pricing cards side by side */
.pricing-boxes_air.side-by-side {
  display: flex;
  justify-content: center;
  gap: 30px; /* Small gap between cards */
}

/* Individual pricing card styling */
.pricing-card_air {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 330px;
  text-align: center;
}

/* Container styling */
.pricing_container_air {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Brief Description */
.pricing-card_air .brief-description {
  font-size: 0.9rem;
  color: #555;
  margin: 15px 0;
  text-align: center;
}

/* Horizontal Line */
.pricing-card_air hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* Features Section */
.pricing-card_air .features,
.pricing-card_air .charts {
  text-align: left;
}

/* Features Headers */
.pricing-card_air .features h4,
.pricing-card_air .charts h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

/* Indented List Item */
.pricing-card_air .features .indent {
  margin-left: 20px;
}

/* Features List */
.pricing-card_air .features ul,
.pricing-card_air .charts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card_air .features ul li,
.pricing-card_air .charts ul li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

/* Checkmark Styling */
.pricing-card_air .charts ul li::before {
  content: "✔"; /* Unicode checkmark */
  color: green;
  margin-right: 8px;
  font-weight: bold;
}

/* Paragraphs in Features */
.pricing-card_air .features p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}

.buy-btn_air {
  display: block;
  background-color: #007bff;
  color: #fff;
  padding: 5px 10px;
  margin: 5px 0;
  text-decoration: none; /* No underline */
  border-radius: 25px;
  font-weight: normal; /* normal text */
  text-align: center; /* Center the text */
  transition: background-color 0.3s, text-decoration 0.3s; /* Smooth hover effects */
}

.buy-btn_air:hover {
  text-decoration: none; /* Ensure no underline on hover */
  background-color: #0056b3; /* Slightly darker background on hover */
  color: #fff; /* Keep text white on hover */
  font-weight: bold;
}

.monthly-price, .annual-price {
  font-size: 2.5rem; /* Increase font size (adjust as needed) */
  font-weight: normal; /* Make it bold if desired */
  color: #000; /* Optional: Set color if you want to adjust it */
  display: inline-block; /* Ensure proper alignment */
}

.small-note {
  font-size: 0.75rem; /* Very small font size (adjust as needed) */
  font-weight: bold; /* Bold font */
  color: #333; /* Optional: Color for the text */
  display: block; /* Ensures it goes on a new line */
  margin-top: 5px; /* Space between price and small text */
}
.video-wrapper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; /* desired video width */
  border: 1px solid #5c6bc0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}



/* Media queries for responsive design */
@media (max-width: 768px) {
    .logo {
        height: 75px; /* Adjust height as needed */
    }
    
    .menu-bar {
        flex-wrap: wrap; /* Wrap menu items */
        gap: 10px; /* Reduced gap for mobile */
        padding-right: 0; /* Remove padding for mobile */
        width: auto; /* Adjust width to fit content */
        justify-content: center; /* Center align menu items */
      }

    .content_air {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align items */
    }

    .content-text_air, .content-image_air {
        width: 100%; /* Ensure full width on mobile */
    }

    .content-text_air {
        margin-bottom: 20px;
    }

    .centered-text_air {
        font-size: 24px;
        width: 100%;
    }

  .video-wrapper {
    width: 400px;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }
}


@media (max-width: 480px) {
    .logo {
        height: 75px; /* Adjust height as needed */

    .centered-text_air {
        font-size: 20px;
    }

    .content-text_air {
        margin-bottom: 10px;
    }

    .video-wrapper {
    width: 300px;
  }

    .video-wrapper video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }
}
}