body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; }
header { background: #fff; color: #fff; padding: 10px 0; }
.logo img {max-height: 50px; }
.nav-link { color: #000 !important; }
.nav-link.active { text-decoration: underline; font-weight: bold; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 30px; color: #190063; }
.flight-card, .blog-card, .airline-card { transition: transform 0.3s; border: none; }
.flight-card:hover, .blog-card:hover, .airline-card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

a.btn-primary { background-color: #190063; border: none; }
a.btn-primary:hover { background-color: #3c0f9c; }
.airline-card img { object-fit: contain; display: block; }

/* Typography for Headings */
h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  line-height: 1.4;
}

h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 0.4em;
}

h5 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 0.3em;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.8em;
  margin-bottom: 0.3em;
}

/* Paragraph Styling */
p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.2em;
  color: #333;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  font-size: 16px;
}

table thead {
  background-color: #f5f5f5;
}

table th,
table td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

table th {
  font-weight: 600;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;  
  border-radius: 8px;
}

/* Blockquote */
blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

.navbar-toggler {
  background: #ccc;
}
.recent-posts li a:hover {
    text-decoration: underline;
    color: #190063;
}
.sidebar .btn {
  margin-bottom: 10px;
}

.highlight ul {
  padding-left: 1.2rem;
}

/* Lists */
ul, ol {
  padding-left: 2em;
  margin-bottom: 1.2em;
}

ul li, ol li {
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.thumb-wrap {
  aspect-ratio: 1 / 1;      /* square ratio */
  width: 100%;
  height: 250px;              /* fixed width (can also be percentage or auto) */
  overflow: hidden;         /* hide image overflow */
  border-radius: 6px;       /* optional rounded corners */
  flex-shrink: 0;           /* prevent resizing in flex layout */
  position: relative;
  background-color: #f0f0f0; /* optional placeholder bg */
}

.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* crop image to fill box */
  object-position: center;  /* center the image crop */
  display: block;
}
.card-title{font-size: 18px; font-weight: 600; color: #0d6efd;}
.card-title:hover{text-decoration: underline;color: orange;}
/* Responsive Font Sizes */
@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
  h4 { font-size: 17px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
  p, table {font-size: 15px; }
}

.mobile-footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.footer-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-btn i {
  font-size: 20px;
  margin-bottom: 2px;
}

footer { background: #1a1a1a; color: #f1f1f1; text-align: center; padding: 15px 0; }

footer h5 {font-weight: 600; font-size: 1.1rem; border-bottom: 2px solid #ffc107;
    display: inline-block; padding-bottom: 5px;}

footer ul li {margin-bottom: 10px;}
footer a {color: #dcdcdc;transition: color 0.3s ease, text-decoration 0.3s ease;}
footer a:hover {color: #ffc107;text-decoration: underline;}
footer p {font-size: 0.95rem;}
footer hr {border-top: 1px solid #444; margin-top: 30px;}
footer .social-icons a { color: #f1f1f1;font-size: 1.2rem;transition: color 0.3s;}

footer .social-icons a:hover {color: #ffc107;}
footer .text-center {font-size: 0.9rem;color: #aaa;}

/* Accent Colors */
.footer-btn.whatsapp { color: #25D366; }
.footer-btn.call     { color: #007bff; }
.footer-btn.email    { color: #d63384; }

/* Hide on larger screens */
@media (min-width: 768px) {
  .mobile-footer-menu {
    display: none;
  }
}



