* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.thrnav {
  width: 100%;
  background-color: #f1ab00;
}

.firnav {
  width: 95%;
  margin: auto;
}

.secnav {
  width: 90%;
  margin: auto;
}

.logo {
  background-color: #f1ab00;
  padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Shared Navbar Style */
nav {
  background-color: #001129;
  padding: 15px 0;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
}

.nav-container a {
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 18px;
  padding: 10px 20px;
  transition: background-color 0.3s;
}

.nav-container a:hover {
  background-color: #f1ab00;
  border-radius: 5px;
  text-decoration-line: none;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .nav-container {
    gap: 10px;
  }

  .nav-container a {
    font-size: 16px;
    padding: 8px 15px;
  }
}

nav span .download-btn {
  display: inline-block;
  font-weight: bold;
  padding: 12px 25px;
  background-color: #f1ab00;
  color: #001129;
  text-decoration: none;
  font-size: 16px;
  border-radius: 50px;
  transition: 0.3s ease;
}

nav span .download-btn:hover {
  background-color: #ffffff;
  color: #001129;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  nav .nav-container {
    display: block;
    text-align: center;
    justify-content: center; /* items center ho jayein */
  }

  nav span .download-btn {
    margin-top: 7px;
    width: 80%;
  }
}

/* Navbar container */
.navbar-nav {
  margin: auto; /* Center the nav items */
}
.nav-item {
  padding: 10px 10px;
}

.navbar-toggler {
  margin: 8px 0px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
}

/* Target all nav links */
.navbar-nav .nav-link {
  color: #00204e !important; /*  Change to your desired color */
  font-weight: bold; /*  Make text bold */
  text-transform: capitalize; /* Optional: Capitalize first letters */
}

/* Hover effect (optional) */
.navbar-nav .nav-link:hover {
  color: #f1ab00 !important;
}

/* Optional: Dropdown items style too */
.dropdown-menu .dropdown-item {
  font-weight: 500;
  color: #00204e;
}

.dropdown-menu .dropdown-item:hover {
  color: #ffffff;
  background-color: #00204e;
}

/* header */

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url("image/header/header.png"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 45vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Overlay Layer */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity here */
  z-index: 1;
}

/* Text Content */
.hero-content {
  position: relative;
  z-index: 2; /* Above overlay */
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Updates Section */
.updates-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.updates-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.update-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

.update-card:hover {
  transform: translateY(-5px);
}

.update-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.update-card h3 {
  font-size: 20px;
  margin: 15px;
  color: #333;
}

.update-card p {
  font-size: 14px;
  margin: 0 15px 20px;
  color: #555;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(rgba(21, 35, 77, 0.9), rgba(21, 35, 77, 0.9)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1050&q=80")
      no-repeat center center;
  background-size: cover;
  color: rgb(255, 255, 255);
  padding: 60px 0;
}

.contact-info table {
  border-collapse: separate;
  border-spacing: 10px;
}

.contact-info tbody tr td {
  background-color: #001129;
  color: #fff;
  padding: 10px;
  border-radius: 15px;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.contact-info h2 {
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-info td {
  padding: 12px 8px;
  vertical-align: middle;
  font-size: 16px;
}

.contact-info i {
  margin-right: 10px;
  color: #ffc107;
}

.contact-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .contact-section {
    text-align: center;
  }

  .contact-info {
    margin-top: 30px;
  }
}

/* footer */
:root {
  --footer-bg: #ffffff;
  --footer-text: #eeeeee;
  --footer-link: #00204e;
  --footer-link-hover: #f1ab00;
  --footer-padding: 2rem;
}

.custom-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--footer-padding) 0;
}

.custom-footer a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-bottom {
  border-top: 1px solid #00204e;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
}

.footer-column {
  padding: 1rem 0;
}

/* Dropdown caret color override */
.dropdown-toggle::after {
  border-top-color: var(--footer-link);
}

.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}
