/* Center wrapper */
.center-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Outer box */
.welcome__left {
  background-color: #f9f9f9;
  padding: 40px;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Layout: side-by-side on desktop, stacked on mobile */
.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

/* Text section */
.text-content {
  flex: 1;
}

/* Image section */
.image-container {
  flex: 0 0 250px;
}

.image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Headings and paragraphs */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.welcome__text,
.text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.text strong,
.welcome__text strong {
  color: #0077cc;
}

.text:last-child {
  font-weight: 500;
  color: #000;
}

/* MOBILE styles */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    margin-top: 20px;
    width: 100%;
  }

  .image {
    max-width: 100%;
  }

  .welcome__left {
    padding: 24px;
  }

  .title {
    font-size: 24px;
  }

  .text,
  .welcome__text {
    font-size: 15px;
  }
}
/* Optional wrapper padding for breathing room */
.well {
  padding: 30px;
}

/* Add top/bottom padding on small screens */
@media (max-width: 768px) {
  .well {
    padding: 20px;
  }

  .form-group,
  .checkbox {
    margin-bottom: 20px;
  }

  .alert {
    margin-bottom: 20px;
  }
}
/* Make the Sign In button modern and pill-shaped */
.btn.btn-primary {
  background-color: #0d6efd;  /* same as earlier code */
  border: none;
  padding: 12px 28px;
  border-radius: 999px; /* oval/pill shape */
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #005fa3; /* a slightly darker shade on hover */
}
.well {
  background-color: #f9f9f9;            /* Same soft background */
  padding: 40px;                        /* Spacious inner padding */
  border-radius: 16px;                  /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);  /* Soft shadow for depth */
  border: none;                         /* Remove Bootstrap's default border */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;                          /* Consistent text color */
}
/* Modern Input Fields */
.form-control {
  background-color: #f9f9f9;        /* Soft background similar to the earlier code */
  border: 1px solid #ddd;           /* Light border for subtle distinction */
  padding: 12px 20px;                /* Comfortable padding for text */
  border-radius: 12px;               /* Rounded corners for a modern look */
  font-size: 16px;                   /* Clean, readable text size */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;  /* Smooth transitions */
}

/* Focused Input Box (when clicked) */
.form-control:focus {
  border-color: #0077cc;            /* Highlight the border with your primary color */
  box-shadow: 0 0 8px rgba(0, 119, 204, 0.3); /* Soft glowing effect around the box */
  outline: none;                    /* Remove default outline */
}

/* Input Box on Disabled (optional) */
.form-control:disabled {
  background-color: #e9ecef;        /* Slightly darker background */
  border-color: #ddd;               /* Greyed out border */
  cursor: not-allowed;              /* Disable cursor */
}
/* Section styling */
.why-us {
  padding: 40px 0;
  position: relative;
}

/* Remove background from the section */
.why-us.dark_mode_section {
  background: none; /* no background color */
}

/* Container for content */
.why-us__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left section styling */
.why-us__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Reason box styling */
.why-us__reason {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

/* Reason image icon styling */
.why-us__reason_img {
  width: 56px;
  height: 56px;
  background: #e6f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.why-us__reason_img i {
  font-size: 32px;
  color: #0077cc;
}

/* Reason title styling */
.why-us__reason_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Right section styling */
.why-us__right {
  flex: 1;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Main title styling */
.why-us__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Text content styling */
.why-us__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.why-us__text strong {
  color: #0077cc;
}

/* Button styling */
.why-us__btn {
  display: inline-flex;
  align-items: center;
  background-color: #060606;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.why-us__btn:hover {
  background-color: #005fa3;
}

.why-us__btn i {
  margin-left: 10px;
}

/* Responsive Design for mobile */
@media (max-width: 767.98px) {
  .why-us__inner {
    flex-direction: column;
    align-items: center;
  }

  .why-us__left {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-us__right {
    width: 100%;
  }

  .why-us__reason {
    padding: 15px;
  }

  .why-us__reason_img {
    margin-right: 12px;
  }

  .why-us__reason_title {
    font-size: 16px;
  }

  .why-us__subtitle {
    font-size: 24px;
  }

  .why-us__text {
    font-size: 14px;
  }
}
/* Container for the FAQ section */
.qaa__top {
  padding: 40px 20px;
  background-color: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Header section (title and subtitle) */
.qaa__header {
  margin-bottom: 20px;
}

/* Subtitle above the main title */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* Responsive Design for mobile screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 15px;
  }

  .subtitle {
    font-size: 24px;
  }

  .qaa__description .text {
    font-size: 14px;
  }
}
/* General styles for the FAQ section */
.qaa__top {
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Adding depth */
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

/* Header styling */
.qaa__header {
  margin-bottom: 30px;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #0077cc;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.subtitle:hover {
  color: #0077cc;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

/* Add a modern font for better readability */
body {
  font-family: 'Poppins', sans-serif;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 20px;
  }

  .subtitle {
    font-size: 28px;
  }

  .qaa__description .text {
    font-size: 16px;
  }

  .suptitle {
    font-size: 14px;
  }
}
/* General Styles */
section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Heading Styles */
h2 {
    font-size: 2.5rem; /* Bigger for impact */
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.375rem; /* Slightly larger */
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Container */
.max-w-4xl {
    max-width: 900px;
    margin: 0 auto;
}

/* Center text */
.text-center {
    text-align: center;
}

/* Step Box Styling */
.bg-white {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.bg-white:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Number Styling */
.text-2xl {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4ed8;
}

/* Step Icons */
img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

/* Description Text Styling */
.text-gray-600 {
    color: #444;
    font-size: 1rem; /* Increased for readability */
    line-height: 1.7;
}

.text-sm {
    font-size: 1rem; /* Make small text more readable */
}

/* Flex layout */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.space-x-4 {
    margin-right: 1rem;
}

.flex-1 {
    flex-grow: 1;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .space-y-6 {
        margin-bottom: 2rem;
    }

    .bg-white {
        padding: 2rem;
    }

    .text-2xl {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .text-gray-600 {
        font-size: 1rem;
    }

    img {
        width: 48px;
        height: 48px;
    }

    .max-w-4xl {
        padding: 0 1rem;
    }
}
.image-container {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.why-us__btn {
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-us__btn:hover {
  background-color: #1743b3;
}

.why-us__btn i {
  font-size: 1.1rem;
}

/* RESPONSIVE: Stack image + button under text on small screens */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 100%;
    margin-top: 20px;
    align-items: center;
  }

  .why-us__btn {
    margin-top: 12px;
  }

  .text-content {
    width: 100%;
  }
}
/* Basic Styles for Container */
.container {
  margin-top: 3px;
}

/* Side box layout styling */
.side-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.side-box:hover {
  transform: translateY(-4px); /* Slight lift effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Media section styling */
.media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-left {
  margin-right: 20px;
}

.media-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-body h5 {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

/* Icon size and color */
.fas, .fab {
  color: #060606;
  transition: color 0.3s ease;
}

.fas:hover, .fab:hover {
  color: #0077cc; /* Change icon color on hover */
}

.fa-3x {
  font-size: 2.5rem; /* Larger icon size */
}

/* Spacing for the columns */
.col-sm-4 {
  margin-bottom: 30px; /* Space between the profile boxes */
}

@media (max-width: 767px) {
  /* For smaller devices, make the icons and text more responsive */
  .fa-3x {
    font-size: 2rem; /* Smaller icons on mobile */
  }

  .media-body h4 {
    font-size: 1.1rem; /* Adjust the heading size */
  }

  .media-body h5 {
    font-size: 0.9rem; /* Adjust the subtitle size */
  }
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* Main Tutorial Box */
.tutorial-box {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

/* Label */
.tutorial-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* Heading */
.tutorial-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

/* Description */
.tutorial-description {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.tutorial-description a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive YouTube Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .tutorial-box {
    padding: 20px;
  }

  .tutorial-heading {
    font-size: 1.25rem;
  }

  .tutorial-description {
    font-size: 0.95rem;
  }
}

.qaa__faq-list {
  padding: 20px 0;
}
.faq-item {
  margin-bottom: 25px;
}
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


  * { margin: 0; padding: 0; box-sizing: border-box; }
  .airastay_banner {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #f5f0e8;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border-radius: 4px;
  }

  .airastay_banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1a2e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
  }

  .airastay_banner:hover::before { transform: scaleX(1); }

  .airastay_banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 3.5rem;
    gap: 2rem;
  }

  .airastay_label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: skyblue;
    margin-bottom: 0.6rem;
    transition: color 0.4s ease;
  }

  .airastay_headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.4vw, 2.0rem);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a2e;
    transition: color 0.4s ease;
    max-width: 460px;
  }

  .airastay_sub {
    font-size: 0.85rem;
    color: #6b6460;
    margin-top: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
  }

  .airastay_cta-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: skyblue;
    color: #f5f0e8;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: background 0.4s ease, color 0.4s ease, gap 0.3s ease;
    white-space: nowrap;
  }

  .airastay_cta-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
  }

  .airastay_banner:hover .airastay_label { color: deepskyblue; }
  .airastay_banner:hover .airastay_headline { color: #f5f0e8; }
  .airastay_banner:hover .airastay_sub { color: rgba(245,240,232,0.55); }
  .airastay_banner:hover .airastay_cta-btn {
    background: darkblue;
    color: #fff;
    gap: 1.1rem;
  }
  .airastay_banner:hover .airastay_cta-btn .airastay_arrow { transform: translateX(4px); }

  .airastay_deco-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: skyblue;
    z-index: 3;
  }

  .airastay_deco-num {
    position: absolute;
    right: 3.5rem; bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26,26,46,0.07);
    line-height: 1;
    z-index: 2;
    transition: color 0.4s ease;
    pointer-events: none;
    user-select: none;
  }

  .airastay_banner:hover .airastay_deco-num { color: rgba(245,240,232,0.06); }

  @media (max-width: 600px) {
    .airastay_banner-inner { flex-direction: column; align-items: flex-start; padding: 2rem 2rem 2rem 2.5rem; }
    .airastay_cta-btn { align-self: flex-start; }
    .airastay_deco-num { display: none; }
  }