/* --- General Styles --- */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #EAECEE;
  color: #111;
}

/* --- Navbar Styles --- */
.navbar {
  background: #017EC6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.navbar .logo {
  font-size: 22px;
  color: white;
  font-weight: bold;
}

.navbar .highlight {
  color: red;
}

/* Menu ko center karne ke liye */
.menu {
  list-style: none;
  /* display: flex; gap: 20px; ye pehle se hain */
  margin: 0 auto; /* Menu ko navbar ke andar horizontally center karega */
  /* justify-content: center; ko lagu karne ke liye, .menu ko flex container banana padta hai */
  display: flex;
  justify-content: center; /* Isse menu items beech mein aayenge */
  gap: 20px; /* Pehle se define hai, yahan bhi rakhen */
  padding: 0; /* Default padding hata do */
}

.menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* --- Banner Styles --- */
.banner-container img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

/* --- Main Container & Content Styles --- */
.main-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0px;
}

.content-box,
.step-box {
  background: white;
  padding: 10px;
  margin-bottom: 5px;
  /* border-radius: 20px; */ /* Aap isko comment out ya remove kar sakte hain agar chahen */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  text-align: justify;
  font-size: 16px;
}
/* Extra '}' bracket removed from here */


/* --- Button Styles --- */
.button-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  display: inline-block;
}

.red { background: #e53935; }
.green { background: #43a047; }
.blue { background: #1e88e5; }
.purple { background: #8e24aa; }
.darkred { background: #6a1b1a; }

/* --- Strip Heading Styles --- */
.strip-heading {
  background-color: #1175C3; /* Blue color */
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.strip-heading2 {
  background-color: #ffffff; /* White background */
  /* color: white; */ /* Removed - White text on white background is invisible */
  color: #111; /* Example: Set text color for visibility on white */
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  /* border: 1px solid #ccc; */ /* Optional: Add a subtle border if needed */
}

/* --- Footer Styles --- */
/* Updated to target the actual <footer> tag */
footer { /* Changed from .footer to footer */
  background: #0b3f70;
  /* max-width: 800px; */ /* Removed - Footer should span full width */
  color: white;
  text-align: center;
  padding: 15px;
  margin: 20px auto 0 auto; /* Adjusted margin */
  /* Consider removing max-width if you want it full-width */
}

/* --- Disclaimer Box Styles --- */
.disclaimer-box {
  background-color: #000;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  max-width: 960px; /* Centers the content box */
  margin: 40px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.disclaimer-box a {
  color: #ccc;
  text-decoration: underline;
}

.disclaimer-box hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #fff;
}

/* --- Footer Navigation Links --- */
/* These styles apply if the class name in footer.php is .footer-links */
.footer-links {
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px; /* Links ke beech space */
  margin: 15px 0;
  padding: 0;
  list-style: none; /* Agar yeh <ul> ke andar hai toh */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  /* margin: 0 12px; */ /* Replaced by gap in flexbox */
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
}
/* --- End Footer Styles --- */


/* --- Contact Form Styles (If used elsewhere) --- */
.contact-form-container {
    max-width: 800px;
    background-color: #ffffff;
    margin: 20px auto; /* Adjusted margin */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    /* Inherit font-family from body if not specified here */
}

.contact-form-container h1 {
    text-align: center;
    color: #222;
    margin-bottom: 25px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Style input and textarea elements */
.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: Arial, sans-serif; /* Ensure font consistency */
}

.contact-form-container textarea {
    resize: vertical; /* Allows vertical resizing only */
}

/* Style the submit button */
.contact-form-container button {
    background-color: #1c257e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-family: Arial, sans-serif; /* Ensure font consistency */
}

.contact-form-container button:hover {
    background-color: #101a5c;
}

/* Style the thank you message */
.thank-you {
    text-align: center;
    color: green;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

/* Style the note paragraph */
.note {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 20px; /* Add some space above the note */
}
/* --- End Contact Form Styles --- */
