@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --primary-navy: #0b2545;
  --primary-dark: #07192f;
  --accent-red: #c81e2b;
  --accent-red-hover: #a51420;
  --accent-gold: #f59e0b;
  --accent-yellow: #facc15;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 10px 25px rgba(11, 37, 69, 0.12);
  --transition-fast: all 0.25s ease-in-out;
  --transition-normal: all 0.35s ease-in-out;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main) !important;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main) !important;
  font-weight: 700;
  color: var(--primary-navy);
}

button, input, select, textarea, optgroup, .btn, .nav-link {
  font-family: var(--font-main) !important;
}

/* Helper Utilities */
.text-navy {
  color: var(--primary-navy) !important;
}

.bg-navy {
  background-color: var(--primary-navy) !important;
}

.text-slate {
  color: #475569 !important;
}

.desktop-logo {
  display: flex;
  align-items: center;
}

.footer-menu {
  list-style: none;
}

.smooth-scroll {
  cursor: pointer;
}

.initiate-scripts {
  display: inline-block;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ==========================================================================
   TOP INFO BAR (Header Top Area)
   ========================================================================== */
.info-bar-area {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-wrapper img, .logo img {
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-fast);
}

.right-content {
  display: flex;
  align-items: center;
}

.info-items {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.single-info-item {
  display: flex;
  align-items: center;
}

.single-info-item .icon {
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-info-item .content .title {
  display: block;
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 15px;
  line-height: 1.25;
}

.single-info-item .content .details {
  font-size: 12.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 30, 43, 0.08);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-item-content {
  font-size: 13px;
  line-height: 1.35;
}

.info-item-content span {
  display: block;
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item-content a {
  color: var(--text-dark);
  font-weight: 500;
}

.info-item-content a:hover {
  color: var(--accent-red);
}

/* ==========================================================================
   STICKY FLOATING NAVBAR (#floating) - Exactly matching pradham.co.in
   ========================================================================== */
.navbar {
  background: #000332;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 100;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

#floating.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #000332 !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  animation: slideDownNav 0.35s ease-out;
}

@keyframes slideDownNav {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-collapse li {
  position: relative;
}

.navbar-nav > li > a.nav-link,
.navbar-nav > li > a.dropdown-toggle {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 22px !important;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

/* Remove default Bootstrap dropdown arrows */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* Active and Hover styling */
.navbar-nav > li > a.nav-link.active,
.navbar-nav > li > a.dropdown-toggle.active,
.navbar-nav > li.active > a.nav-link,
.navbar-nav > li.active > a.dropdown-toggle,
.navbar-nav > li:hover > a.nav-link,
.navbar-nav > li:hover > a.dropdown-toggle {
  color: #ffffff !important;
  background-color: #c81e2b !important;
}

/* Pradham-style Dropdown Menus on Hover */
.navbar-nav .dropdown-menu {
  display: none !important;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  min-width: 250px;
  padding: 0 !important;
  margin: 0;
  background: #000332 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.navbar-nav li.dropdown:hover > ul.dropdown-menu {
  display: block !important;
  animation: fadeInNav 0.25s ease-out;
}

@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu > li {
  position: relative;
  background: #000332 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu > li:last-child {
  border-bottom: none;
}

.dropdown-menu > li > a {
  color: #ffffff !important;
  font-size: 14px;
  padding: 12px 20px !important;
  display: block;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dropdown-menu > li > a:hover {
  color: #ffffff !important;
  background: #c81e2b !important;
  padding-left: 26px !important;
}

/* Level-2 Flyout Dropdown (matching pradham.co.in) */
ul.dropdown-menu.level-2 {
  left: 100% !important;
  top: 0 !important;
  display: none !important;
  position: absolute;
  min-width: 270px;
  background: #000332 !important;
  border-left: 2px solid #c81e2b !important;
}

li.menu-item:hover > ul.dropdown-menu.level-2 {
  display: block !important;
  animation: fadeInNav 0.2s ease-out;
}

ul.dropdown-menu.level-2 li a {
  padding: 11px 20px !important;
  font-size: 13.5px;
}

ul.dropdown-menu.level-2 li a:hover {
  background: #c81e2b !important;
  color: #ffffff !important;
}

/* Mobile Toggler Bars (Exact 3 spans from pradham.co.in) */
button.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #ffffff;
  border-radius: 1px;
}

@media only screen and (max-width: 991px) {
  button.navbar-toggler {
    display: block !important;
    margin: 8px 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    background: #000332;
    padding: 10px 0;
  }
  
  .navbar-nav > li > a.nav-link,
  .navbar-nav > li > a.dropdown-toggle {
    padding: 12px 18px !important;
  }
  
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    display: block !important;
    box-shadow: none !important;
    padding-left: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }
  
  ul.dropdown-menu.level-2 {
    position: static !important;
    left: 0 !important;
    display: block !important;
    padding-left: 15px !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }
}

/* ==========================================================================
   HERO BANNER CAROUSEL (#home)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background-color: var(--primary-dark);
}

.hero-slider-section .carousel-item {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.92) 0%, rgba(11, 37, 69, 0.78) 50%, rgba(7, 25, 47, 0.88) 100%);
  display: flex;
  align-items: center;
}

.carousel-caption-custom {
  color: #ffffff;
  max-width: 820px;
  padding: 40px 15px;
}

.badge-aviation {
  display: inline-block;
  background: rgba(200, 30, 43, 0.9);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(200, 30, 43, 0.4);
}

.carousel-caption-custom h1 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-caption-custom h1 span {
  color: var(--accent-yellow);
}

.carousel-caption-custom p {
  font-size: 18px;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background-color: var(--accent-red);
  color: #ffffff;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  border: 2px solid var(--accent-red);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 30, 43, 0.4);
}

.btn-outline-custom {
  background-color: transparent;
  color: #ffffff;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background-color: #ffffff;
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(11, 37, 69, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--accent-red);
  opacity: 1;
}

/* ==========================================================================
   QUICK STATS COUNTER STRIP
   ========================================================================== */
.stats-strip {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 35px 0;
  position: relative;
  z-index: 10;
  border-bottom: 3px solid var(--accent-red);
}

.stat-box {
  text-align: center;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-yellow);
  font-family: var(--font-main);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #cbd5e1;
}

/* ==========================================================================
   ABOUT US SECTION (#about)
   With vertical title style modeled after pradham.co.in
   ========================================================================== */
.about-section {
  padding: 90px 0 70px;
  background-color: #ffffff;
}

.about-vertical-heading {
  border-left: 4px solid var(--accent-red);
  padding-left: 20px;
  margin-bottom: 25px;
}

.about-vertical-heading h1 {
  font-size: 38px;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.about-vertical-heading h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-content-right p {
  color: #475569;
  font-size: 15.5px;
  margin-bottom: 16px;
  text-align: justify;
}

.about-experience-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  border-top: 3px solid var(--accent-red);
  transition: var(--transition-fast);
}

.about-experience-card:hover {
  box-shadow: var(--shadow-md);
}

.exp-badge {
  background: rgba(200, 30, 43, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 80px;
}

.about-action-btns {
  margin-top: 25px;
}

.about-section .btn-outline-custom {
  color: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  background-color: transparent !important;
}

.about-section .btn-outline-custom:hover {
  background-color: var(--primary-navy) !important;
  color: #ffffff !important;
  border-color: var(--primary-navy) !important;
}

.commitment-card {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border-left: 4px solid var(--accent-red);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  margin-top: 25px;
  box-shadow: var(--shadow-sm);
}

.commitment-card h5 {
  font-size: 18px;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.commitment-card h5 i {
  color: var(--accent-red);
}

.history-milestones {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.milestone-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.milestone-item:hover {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.milestone-year {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-red);
  font-family: var(--font-main);
}

.milestone-desc {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================================================
   SERVICES & DIVISIONS SECTIONS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.section-title-divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent-red);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Aviation Section */
.aviation-section {
  padding: 85px 0;
  background-color: var(--bg-slate);
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 24px;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 30, 43, 0.4);
}

.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(11, 37, 69, 0.05);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--accent-red);
  color: #ffffff;
}

.service-card h5 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
}

.service-features-list li {
  font-size: 13px;
  color: #334155;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: #10b981;
  font-size: 12px;
}

/* Industrial Machinery Section */
.machinery-section {
  padding: 85px 0;
  background-color: #ffffff;
}

.machinery-category-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.machinery-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-red);
}

.machinery-img-box {
  height: 200px;
  background-color: #1e293b;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machinery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.machinery-category-card:hover .machinery-img-box img {
  transform: scale(1.08);
}

.machinery-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.machinery-content {
  padding: 24px;
}

.machinery-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.machinery-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.machine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.machine-tag {
  background-color: #f1f5f9;
  color: var(--primary-navy);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (#why-us)
   ========================================================================== */
.why-us-section {
  padding: 85px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
}

.why-us-section .section-title {
  color: #ffffff;
}

.why-us-section .section-subtitle {
  color: #cbd5e1;
}

.why-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px 20px;
  height: 100%;
  transition: var(--transition-normal);
  backdrop-filter: blur(4px);
}

.why-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 32px;
  color: var(--accent-yellow);
  margin-bottom: 18px;
}

.why-box h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-box p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 24x7 Highlight Banner */
.support-banner {
  background: rgba(200, 30, 43, 0.18);
  border: 1px solid var(--accent-red);
  border-radius: 8px;
  padding: 25px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.support-banner-text h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.support-banner-text p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 0;
}

/* ==========================================================================
   GLOBAL PARTNERS & REPRESENTATIONS
   ========================================================================== */
.partners-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.partner-card {
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  background: #ffffff;
  transition: var(--transition-fast);
  height: 100%;
}

.partner-card:hover {
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.partner-card h6 {
  font-size: 16px;
  color: var(--primary-navy);
  margin-bottom: 4px;
  font-weight: 700;
}

.partner-card span {
  font-size: 12px;
  color: var(--accent-red);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CONTACT SECTION (#contact)
   Modeled after pradham.co.in contact layout
   ========================================================================== */
.contact-section {
  padding: 85px 0 60px;
  background-color: var(--bg-light);
}

.contact-info-wrapper {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-title {
  border-left: 3px solid var(--accent-red);
  padding-left: 15px;
  margin-bottom: 25px;
}

.contact-info-title h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--primary-navy);
  margin-bottom: 0;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.06);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text h6 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 4px;
}

.contact-text a {
  color: var(--primary-navy);
  font-weight: 500;
}

.contact-text a:hover {
  color: var(--accent-red);
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.form-group-custom {
  margin-bottom: 18px;
}

.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  transition: var(--transition-fast);
  background-color: #f8fafc;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent-red);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(200, 30, 43, 0.12);
}

.submit-btn-custom {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn-custom:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 6px 16px rgba(200, 30, 43, 0.35);
  transform: translateY(-2px);
}

/* Map Container */
.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ==========================================================================
   FOOTER (Modeled after pradham.co.in)
   ========================================================================== */
.main-footer {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  padding: 70px 0 30px;
  border-top: 4px solid var(--accent-red);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 52px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-about-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-widget-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-red);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 13.5px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--accent-red);
  font-size: 11px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-contact-item i {
  color: var(--accent-red);
  margin-top: 4px;
}

.footer-contact-item a {
  color: #cbd5e1;
}

.footer-contact-item a:hover {
  color: var(--accent-yellow);
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  background-color: #040e1b;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #64748b;
  font-size: 13px;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
#backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--accent-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200, 30, 43, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backtotop:hover {
  background-color: var(--primary-navy);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 991.98px) {
  .carousel-caption-custom h1 {
    font-size: 32px;
  }
  
  .carousel-caption-custom p {
    font-size: 15px;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .navbar-nav > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .navbar-nav .nav-link,
  .navbar-nav .dropdown-toggle {
    padding: 12px 18px !important;
    width: 100%;
  }
  
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    background-color: #051025 !important;
    padding-left: 15px !important;
    box-shadow: none !important;
  }
  
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
  }
  
  .stat-box:last-child {
    border-bottom: none;
  }
  
  .about-vertical-heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .info-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-info-box {
    gap: 12px;
    width: 100%;
  }
  
  .info-item {
    font-size: 12px;
  }
  
  .carousel-caption-custom h1 {
    font-size: 26px;
  }
  
  .hero-slider-section .carousel-item {
    min-height: 480px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   INTERNAL PAGE HEADER & BREADCRUMB
   ========================================================================== */
.page-header-banner {
  background: linear-gradient(135deg, rgba(0, 3, 50, 0.95) 0%, rgba(11, 37, 69, 0.88) 100%), url('../img/hero-flight.jpg') center/cover no-repeat;
  padding: 60px 0 50px;
  color: #ffffff;
  border-bottom: 3px solid var(--accent-red);
}

.page-header-banner h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-header-banner p {
  color: #cbd5e1;
  font-size: 16px;
  max-width: 780px;
  margin-bottom: 15px;
}

.breadcrumb-custom,
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.breadcrumb-custom li a,
.breadcrumb-item a {
  color: var(--accent-yellow) !important;
  text-decoration: none;
}

.breadcrumb-custom li a:hover,
.breadcrumb-item a:hover {
  color: #ffffff !important;
}

.breadcrumb-custom li.active,
.breadcrumb-item.active {
  color: #cbd5e1 !important;
}

.breadcrumb-custom li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Internal Page Content & Sidebar */
.page-content-area {
  padding: 70px 0;
  background-color: #ffffff;
}

.sidebar-widget {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
}

.sidebar-widget-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 35px;
  height: 2px;
  background-color: var(--accent-red);
}

.sidebar-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-service-list li {
  margin-bottom: 8px;
}

.sidebar-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.sidebar-service-list a:hover,
.sidebar-service-list a.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  padding-left: 18px;
}

.sidebar-service-list a:hover i,
.sidebar-service-list a.active i {
  color: var(--accent-yellow);
}

.sidebar-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 26px 20px;
  text-align: center;
  border-top: 4px solid var(--accent-red);
}

.sidebar-cta-box h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.sidebar-cta-box p {
  color: #cbd5e1;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.spec-table {
  width: 100%;
  margin-top: 25px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.spec-table th {
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 13px;
  padding: 12px 16px;
}

.spec-table td {
  padding: 11px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-color);
  color: #334155;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

