html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
}

.header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height:95px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #001a40;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
  padding-left: 0;
}

.logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-left: 0;
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
}

.deep {
  font-size:22px;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Libre Baskerville', serif;

}

.deep .blue {
  color: #002B56;
  font-weight: 700;         /* Bold */
  font-size: 24px;          /* Adjust as needed */
  letter-spacing: 0.5px;    /* Slight spacing for clarity */
  text-transform: none; 
}

.deep .black {
  color: #002B56;
  font-weight: bold;         /* Medium */
  font-size: 16px;          /* Slightly smaller */
  letter-spacing: 2px;      /* Wider tracking */
  text-transform: uppercase;/
}

.menu {
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.menu a {
  text-decoration: none;
  color: #002B56;
  transition: color 0.3s;
}

.menu a:hover {
  color: #002B56;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #002B56;
  
}

.mobile-menu {
  position: fixed; /* not absolute — so it appears above ticker & hero */
  top: 95px; /* adjust to your header height */
  left: 0;
  width: 100%;
  background-color: #002855; /* dark blue */
  color: #fff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2000; /* ensures it stays above ticker & hero */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.mobile-menu a {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s;
}

.mobile-menu a:hover {
  color: yellow; /* hover la highlight panna */
}

.mobile-menu.show {
  max-height: 400px; /* adjust based on number of links */
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 60px;
padding: 5px 30px;

}
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }  
  .logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  padding-left: 0;
  margin-right: 0;
}
}
.aviation-section {
  background: linear-gradient(to bottom right, white);
  padding: 20px 8%;
  color: #ffffff;
  font-family: 'Libre Baskerville', serif;
  position: relative;
  overflow: hidden;
}

.aviation-header {
  text-align: center;
  margin-bottom: 60px;
}

.aviation-header h1 {
  font-size: 2.6rem;
  color: #0a2a5e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.aviation-header h1::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin: 15px auto;
  border-radius: 3px;
}

.aviation-header p {
  font-size: 1.1rem;
  color: black;
}

.aviation-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.aviation-text {
  flex: 1 1 45%;
}

.aviation-text h2 {
  color: #0a2a5e;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.aviation-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: black;
}

.aviation-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.aviation-points li {
  margin: 10px 0;
  font-size: 1rem;
  color: black;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.aviation-points li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.aviation-note {
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #ffcc00;
  padding: 15px 20px;
  border-radius: 10px;
  color:black;
  font-style: italic;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

/* Gallery */
.aviation-gallery {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.aviation-gallery .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.aviation-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aviation-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.aviation-gallery .gallery-item:hover {
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .aviation-content {
    flex-direction: column;
    gap: 50px;
  }
}
.footer-bottom {
  background-color: white;
  border-top: 1px solid #1f2a44;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #1f2a44;
  font-family: 'Libre Baskerville', serif;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #1f2a44;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f5c518;
}
@media (max-width: 768px) {
  .footer-bottom {
  background-color: white;
  border-top: 1px solid #1f2a44;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #1f2a44;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #1f2a44;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f5c518;
}
}