/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000;
}

.container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: relative;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
     font-family: 'Orbitron', monospace;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-weight: 500;

}


.contact-btn {
    background: #000000;
    color: white;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 7px;
    transition: all 0.3s ease;
     transition: transform 0.2s ease;
}

.contact-btn:hover {
    transform: scale(0.95); /* Press-in effect */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 3rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

/* Title wrapper for centered container */
.hero-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    font-family: 'Audiowide', cursive;
    
    /* CRITICAL FIX: Fixed width prevents "B" from moving */
    width: 1000px;
    min-width: 1000px; /* Prevents shrinking */
    
    /* Text aligned left - "B" stays at left edge */
    text-align: left;
    white-space: nowrap;
    min-height: 4.8rem;
    margin: 0; /* Remove "margin: 4" typo */
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    color: rgba(240, 248, 255, 0.911);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Orbitron', monospace;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;

}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    will-change: transform;
}

.btn-primary:hover {
    transform: scale(0.95) !important; /* Press-in effect - NO color change */

}

.btn-secondary {
   background: rgba(146, 134, 134, 0.288);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.685);
    color: #ffffff;
    will-change: transform; /* Optimize animation */
}

.btn-secondary:hover {
     transform: scale(0.95) !important; /* Press-in effect - NO color change */
}
/* Image Carousel Section */
.image-carousel-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    white-space: nowrap;
    height: 500px; /* Your preferred height */
}

.image-carousel {
    display: inline-block;
    animation: carousel-scroll 10s linear infinite;
    height: 100%;
}

.carousel-item {
    display: inline-block;
    max-width: fit-content;
    width: 25vw;
    height: 100%;
    padding: 10px; /* CHANGED: Reduced from 40px 10px to 10px */
    white-space: normal;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Keyframe animation - seamless loop for 3 sets of images */
@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); } /* CHANGED: From -50% to -33.333% */
}


/* ============================================
   SECTION 3: ABOUT INTERSTELLAR AVIATION
   ============================================ */

.about-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 9px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Orbitron', monospace;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color:rgba(0, 0, 0, 0.514);
    font-weight: 400;
}

.btn-about {
    margin-top: 2.5rem;
    background: #000000;
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 9px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: transform 0.2s ease;
    border: 2px solid #000000;
    will-change: transform; /* Optimize animation */
}

.btn-about:hover {
    transform: scale(0.95) !important;; /* Press-in effect - NO color change */
}

.about-image {
    width: 100%;
    height: 450px; /* Fixed height for wider aspect ratio */
    max-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This crops to fill the container */
    object-position: center; /* Center the crop */
    display: block;
}
/* ============================================
   SECTION 4: OUR EXPERTISE (PURE BASIC CSS)
   ============================================ */

.expertise-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.expertise-wrapper {
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT COLUMN - Title */
.expertise-left {
  flex: 0 0 35%;
  top: 100px;
}

.expertise-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  font-family: 'Orbitron', monospace;
  line-height: 1.2;
}

/* RIGHT COLUMN - Content Cards */
.expertise-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.expertise-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: sticky;
  margin-left: 7rem;
}

/* Row 1: Icon + Title together */
.item-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.expertise-icon {
  width: 20px;
  height: 35px;
  flex-shrink: 0;
}

.item-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

/* Row 2: Description paragraph - starts at icon position */
.item-description {
  font-size: 1.2rem;
  color: #6f7478;
  margin: 0;
  font-weight: 520;
}

.item-description strong {
  color: #000;
  font-weight: 100;
}

/* ============================================
   SECTION 5: WHY CHOOSE INTERSTELLAR AVIATION
   ============================================ */

.why-choose-section {
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.why-choose-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Orbitron', monospace;
    text-align: left;
    margin-bottom: 45px;
    line-height: 1.2;
}

.why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-item {
    background: transparent;
    padding: 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation trigger class */
.why-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.why-item:nth-child(1) {
    transition-delay: 0.1s;
}

.why-item:nth-child(2) {
    transition-delay: 0.1s;
}

.why-item:nth-child(3) {
    transition-delay: 0.1s;
}

.why-item-border {
    width: 100%;
    height: 1px;
    border: solid 0.1px gainsboro;
    margin-bottom: 15px;
}

.why-item-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-item-text {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    font-weight: 400;
}

/*   SECTION 6: getintouch FORM */

.getintouch {
    display: flex;
    background-color: #fff;
    min-height: 100vh;
    padding: 80px 0;
}
input{
    margin-bottom: 0;
}

.getintouch-left {
    flex: 1;
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #000;
}

.getintouch-right {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    /* padding-left: 10px; */
    margin-right: 3rem;
    
}

.getintouch-heading {
    font-size: 2.4rem;
    font-weight: 500;
    color: #000000;
    font-family: 'Orbitron', monospace;
    line-height: 1.2;
    margin-bottom: 10px;
}

.getintouch-subtext {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.514);
    font-weight: 550;
}

/* Form Styling */
.multistep-form {
background: #ffffff;
border-radius: 12px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.08);
width: 30%;
max-width: 650px; /* Reduced from 900px - matches image */
min-width: 650px;
padding: 25px; /* Compact padding */
position: relative;
overflow: visible;
height: 1050px; /* Reduced from 650px - matches image */
min-height: 520px;
max-height: 520px;
display: flex;
flex-direction: column;
}


.form-step {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: flex-start;
opacity: 0;
pointer-events: none;
filter: blur(0px);
transition: none;
overflow: visible; /* No scrolling */
}


.form-step.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
  padding: 0;
  filter: blur(0px);
}



.form-step.active:not(.success-step):not([data-step="0"]) {
  padding: 0px;
}

/* Blur exit animation with erasing effect */
.form-step.exiting {
  animation: blurErase 0.8s ease forwards;
}

@keyframes blurErase {
  0% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    filter: blur(3px);
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
  }
}


/* Loading dots animation - TOP LEFT CORNER with wave effect */
.loading-dots {
position: absolute;
top: 20px;
bottom: 40px;
left: 35px;
display: none;
gap: 10px;
z-index: 100;
}

.loading-dots.show {
display: flex;
}

/* Circle-shaped dots */
.loading-dots span {
width: 4px;
height: 4px;
background-color: #2754ff;
border-radius: 50%;
display: inline-block;
animation: wave 1.5s ease-in-out infinite;
}

/* Stagger the wave animation for each dot */
.loading-dots span:nth-child(1) {
animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
animation-delay: 0.4s;
}

/* Wave movement - up and down */
@keyframes wave {
0%, 100% {
transform: translateY(0);
opacity: 0.3;
}
50% {
transform: translateY(-15px);
opacity: 1;
}
}


/* Preview mode - center the actual input/button, hide title and label */
.form-step.preview-mode {
  opacity: 1;
  pointer-events: none;
}

.form-step.preview-mode .step-details {
   display: block !important; /* Changed from none */
  visibility: hidden; /* Hide but keep space */
  height: auto; /* Maintain height */
  margin-bottom: 15px; /* Same as label margin */
}

/* Ensure label and question are invisible but take space */
.form-step.preview-mode .step-details label,
.form-step.preview-mode .step-details .step-question {
  visibility: hidden !important; /* Hidden but keeps space */
  opacity: 0 !important;
}

.form-step.preview-mode .step-info {
  position: relative; /* Keep same position as normal */
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: none;
  margin-top: 0; /* FIXED: Changed from 20 to 0 */
  margin-bottom: 0; /* Same as normal */
  animation: previewFadeInOut 1.5s ease-in-out forwards;
}



.form-step.preview-mode .step-info input,
.form-step.preview-mode .step-info textarea,
.form-step.preview-mode .step-info .radio-options,
.form-step.preview-mode .step-info .file-upload-area,
.form-step.preview-mode .step-info .summary-box {
  opacity: 1;
  border-color: #2754ff;
  pointer-events: none;
  
}

.form-step.preview-mode .form-btn-next,
.form-step.preview-mode .form-btn-submit {
  opacity: 1;
  pointer-events: none;
  margin-top: 11rem;
}
@keyframes previewFadeInOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Normal blinking cursor in input placeholder */
.multistep-form input[type="text"],
.multistep-form input[type="email"],
.multistep-form textarea {
  caret-color: #000; /* Blue caret when typing */
}

/* Simulate blinking cursor in empty input */
.multistep-form input[type="text"]:placeholder-shown,
.multistep-form input[type="email"]:placeholder-shown {
  background-image: linear-gradient(to right, #000 0%, #000 1px, transparent 1px);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 1px 16px;
  animation: cursorBlink 1s step-end infinite;
}

/* Stop cursor animation when focused or has value */
.multistep-form input[type="text"]:focus,
.multistep-form input[type="email"]:focus,
.multistep-form input[type="text"]:not(:placeholder-shown),
.multistep-form input[type="email"]:not(:placeholder-shown) {
  animation: none;
  background-image: none;
}

/* Cursor blink animation */
@keyframes cursorBlink {
  0%, 49% {
    background-image: linear-gradient(to right, #000 0%, #000 1px, transparent 1px);
  }
  50%, 100% {
    background-image: none;
  }
}


.radio-preview-item {
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 7px;
  border: 1px solid #ddd;
}

/* Label - instant display (no typewriter) */
.step-details label {
  display: block;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  margin-bottom: 15px;
  /* Removed overflow and white-space for instant display */
}

/* P tag - will have typewriter effect */
.step-question {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.514);
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 8px;
}



/* Hidden state for inputs before they appear (except Step 0 which has no inputs) */
.form-step:not([data-step="0"]) .step-info input,
.form-step:not([data-step="0"]) .step-info textarea,
.form-step:not([data-step="0"]) .step-info .radio-options,
.form-step:not([data-step="0"]) .step-info .file-upload-area,
.form-step:not([data-step="0"]) .step-info .summary-box {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-info.content-visible input,
.step-info.content-visible textarea,
.step-info.content-visible .radio-options,
.step-info.content-visible .file-upload-area,
.step-info.content-visible .summary-box {
  opacity: 1;
}

/* Step 0 welcome screen - always visible */
.form-step[data-step="0"] .welcome-screen {
  opacity: 1;
}

/* Button hidden initially (except for Step 0) */
.form-step:not([data-step="0"]) .form-btn-next,
.form-step:not([data-step="0"]) .form-btn-submit {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Step 0 button always visible */
.form-step[data-step="0"] .form-btn-next {
  opacity: 1;
}

.button-visible {
  opacity: 1 !important;
}



/* Step Info (Name, Company, Email) */
.step-info {
    margin-bottom: 0;
    flex: 0; /* NEW: Takes available space */
    display: flex;
    flex-direction: column;
}

/* Welcome screen (Step 0) - Matches Image 2 */
.welcome-screen {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    padding: 20px 0;
}

.welcome-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.welcome-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    margin-bottom: 1px;
    max-width: 500px;
}

/* Error message styling - Matches Image 1 */
.error-message {
    color: #dc3545; /* Red color */
    font-size: 0.875rem;
    margin-top: 5px;
    margin-bottom: 0;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

/* Input error state - red border */
.multistep-form input.error,
.multistep-form textarea.error {
   border-color: #dc3545 !important; /* Red border - IMPORTANT to override focus */
    border-width: 1px !important; /* Thicker border to emphasize error */
}


.step-details label {
    display: block;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 4px;
}

.step-question {
    font-size: 1rem;
    /* line-height: 1.8; */
    color: rgba(0, 0, 0, 0.514);
    font-weight: 500;
    margin-bottom: 35px;
}

/* Form Elements */
/* Form Elements - Consistent borders for all inputs */
.multistep-form input[type="text"],
.multistep-form input[type="email"],
.multistep-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc; /* Gray border by default */
    border-radius: 7px;
    font-size: 1rem;
    color: #000; /* Black text */
    background-color: #fff; /* White background */
    transition: border-color 0.3s ease, border-width 0.3s ease;
    margin-bottom: 0;
}

/* Focus state - blue border */
.multistep-form input[type="text"]:focus,
.multistep-form input[type="email"]:focus,
.multistep-form textarea:focus {
    outline: none;
    border-color: #2754ff; /* Blue focus border */
    border-width: 2px;
}

/* Error state - red border (highest priority) */
.multistep-form input[type="text"].error,
.multistep-form input[type="email"].error,
.multistep-form textarea.error {
    border-color: #dc3545 !important; /* Red error border */
    border-width: 1px !important;
}

/* Keep red border when error input is focused */
.multistep-form input[type="text"].error:focus,
.multistep-form input[type="email"].error:focus,
.multistep-form textarea.error:focus {
    border-color: #dc3545 !important;
    border-width: 1px !important;
}


.multistep-form input:focus
 {
    outline: none;
    border-color: #2754ff;
    border-width: 2px;
}

.multistep-form textarea {
resize: vertical;
min-height: 100px; /* Reduced from 120px */
max-height: 200px; /* Add maximum height constraint */
margin-bottom: 0; /* Reduced from 2rem */
}



.form-btn-next,
.form-btn-submit {
display: block;
width: 100%;
padding: 15px 20px;
background: #2754ff;
color: #ffffff;
border: none;
border-radius: 7px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
will-change: transform;
margin-top: 11rem; /* Reduced from 10rem */
}


.form-btn-next:hover,
.form-btn-submit:hover {
    background: #1a43cc; /* Darker blue on hover */
}


/* Radio Button Styling (Inquiry Type) */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000000;
    padding: 1px;
    border-radius: 7px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

 

.radio-option input[type="radio"] {
    display: none;
}

/* Custom radio circle - GRAY FILLED by default */
.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #6b6868; /* Gray border */
    margin-right: 12px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    background-color: #d0d0d0; /* GRAY FILLED - unselected state */
    transition: all 0.3s ease;
}

/* Selected radio - white background circle with purple border */
.radio-option input[type="radio"]:checked + .custom-radio {
    border-color: #7b3ff2; /* Purple border */
    background-color: #ffffff; /* WHITE background */
}


.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .custom-radio {
    border-color: #b10ea9;
}

.radio-option input[type="radio"]:checked + .custom-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background:  #b10ea9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* File Upload Step */
.file-upload-area {
width: 100%;
height: 150px; /* Reduced from 200px */
border: 2px dashed #ccc;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: border-color 0.3s ease;
margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.file-upload-area:hover {
    background-color:#e4e3e3f6;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #888;
    font-size: 1rem;
}


.file-upload-label img{
    height: 100px;
}

/* .upload-icon {
    margin-bottom: 10px;
} */

.file-name-display {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #000;
}

/* Summary Step */
.summary-step {
    padding: 10px;
}

.summary-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 7px;
    color: #000;
    margin-bottom: 20px;
}

.summary-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.summary-box p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    word-wrap: break-word;
}

.summary-box strong {
    font-weight: 700;
    margin-right: 5px;
}
.details-summary {
    display: block;
    white-space: pre-wrap;
    font-style: italic;
    color: #555;
    margin-top: 5px;
}

/* Success Step */
.success-step {
    text-align: center;
    justify-content: center;
}

.success-message {
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkmark-circle img{
    height: 85%;
    width: 85%;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}
@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px #000000; }
}

.success-heading {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #000;
}

.success-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 30px;
    max-width: 400px;
}

.success-tagline {
    font-size: 0.9rem;
    color:  rgba(0, 0, 0, 0.65);;
}

/* Ensure step titles are visible */
.step-details h3 {
  opacity: 1 !important;
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #2754ff;
  font-family: 'Orbitron', monospace;
}

/* Initially hide labels for typewriter effect (except step 0) */
.form-step:not([data-step="0"]) .step-details label {
  opacity: 0;
}

/* Step 0 welcome screen - always visible */
.form-step[data-step="0"] .welcome-screen {
  opacity: 1 !important;
}

.form-step[data-step="0"] .step-details label {
  opacity: 1 !important;
}


/* ============================================
   SECTION 7: CONTACT INFORMATION
============================================ */

.contact-info-section {
  background-color: #ffffff;
  padding: 10px 0;
}

.contact-info-container {
  max-width: 90vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side: Contact Details - Completely Static */
.contact-info-left {
  padding: 0 30px;
}

.contact-heading {
   font-size: 2.4rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Orbitron', monospace;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text {
  font-size: 1.3rem;
  color:#636161e1;
  margin: 0;
  font-weight: 510;
}

/* Right Side: Google Maps */
.contact-info-right {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}


/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background-color: #000000;
    padding: 130px 0;
    color: #ffffff;
}

.footer-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Side: Logo and Tagline */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;

    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}


.social-icon svg {
    width: 30px;
    height: 30px;
}

/* Right Side: Quick Access */
.footer-right {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link-static {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: default;
}

/* ============================================
   UNIFIED CONTAINER SYSTEM - Same padding for all sections
   ============================================ */

/* Global container for consistent width across all sections */
.container,
.about-interstellar-container,
.second-video-section .container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ABOUT INTERSTELLAR AVIATION SECTION
   ============================================ */

.about-interstellar-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-interstellar-container {
    max-width: 90vw; /* Same as header */
    margin: 0 auto;
    padding: 0 20px; /* Same as header */
}

.about-interstellar-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Orbitron', monospace;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.about-interstellar-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 100%; /* Full width within container */
}

.about-interstellar-text {
    font-size: 1.2rem;
    color: #636161e1;
    font-weight: 520;
    margin: 0;
}

.about-interstellar-text strong {
    color: #000000;
    font-weight: 700;
}

/* ============================================
   SECOND VIDEO SECTION (Empty URL)
   ============================================ */

.second-video-section {
    background-color: #fff;
    padding: 80px 0;
}

.second-video-section .container {
    max-width: 90vw; /* Same as header */
    margin: 0 auto;
    padding: 0 20px; /* Same as header */
}

/* Video Wrapper - Responsive 16:9 with margin-bottom */
.video-wrapper-second {
    position: relative;
    width: 100%;
    max-width: 100%; /* Use full container width */
    margin: 0 auto 60px auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.video-wrapper-second iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}




/* Tablet Styles Only - 992px and below */

@media (max-width: 992px) {
    /* hero  section 1*/
    .hero {
        height: 70vh;
        min-height: 550px;
    }
    
    /* Hero content - remove centering to allow independent positioning */
    .hero-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Title wrapper - allows title to animate independently */
    .hero-title-wrapper {
        min-height: 90px; /* Fixed space for 2-line title */
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        width: 90%;
        max-width: 450px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        margin: 0;
    }

    /* Subtitle - independently centered to full page width */
    .hero-subtitle {
        font-size: 0.93rem;
        padding: 0 25px;
        max-width: fit-content;
        /* width: 88%; */
        margin: 0 auto 35px auto; /* Centered to page, not to title */
        line-height: 1.75;
        text-align: center;
        position: relative;
        left: 0; /* Reset any offset */
    }
    
    /* Buttons - also independently centered */
    .hero-buttons {
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* carousel image section 2*/

    .image-carousel-wrap {
        height: 400px;
    }
    
    .carousel-item {
        width: 30vw;
        padding: 0 5px;
    }

    /* about section 3*/

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .about-image {
        width: 100%;
        height: 400px;
        max-height: 400px;
        order: 1;
    }

    .about-content {
        order: 2;
    }

    /* expertise section 4*/

    .expertise-section {
      padding: 60px 0;
    }

    .expertise-wrapper {
      flex-direction: column;
      gap: 35px;
      padding: 0 30px;
    }

    .expertise-left {
      flex: 1;
    }

    .expertise-title {
      font-size: 2rem;
    }

    .expertise-right {
      gap: 20px;
    }

    .expertise-item {
      padding: 25px 20px;
      margin: 0 !important;
      gap: 8px;
    }

    .item-header {
      gap: 15px;
    }

    .expertise-icon {
      width: 30px;
      height: 30px;
    }

    .item-title {
      font-size: 1.15rem;
    }

    .item-description {
      font-size: 0.9rem;
    }

    /* why choose section 5*/

    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-container {
        padding: 0 30px;
    }
    
    .why-choose-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .why-choose-grid {
        gap: 35px;
    }
    
    .why-item-title {
        font-size: 1.35rem;
    }
    
    .why-item-text {
        font-size: 1rem;
    }
    
    /* getin touch section 6 */
      .getintouch {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }

    .getintouch-left {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    
    .getintouch-heading {
        font-size: 2rem;
    }

    .getintouch-right {
        padding: 0 30px 40px 30px;
    }

    .multistep-form {
    max-width: 100%;
    min-width: auto; /* Allow flexibility on tablets */
    width: 100%;
    height: 600px; /* Fixed height for tablets */
    min-height: 600px;
    max-height: 600px;
    padding: 25px;
  }

    .form-step.active:not(.success-step) {
        padding: 25px;
    }

    .step-question {
        font-size: 1.25rem;
    }

    .success-heading {
        font-size: 1.5rem;
    }

    /* contact section */

      .contact-info-section {
    padding: 60px 0;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .contact-info-left {
    padding: 0 20px;
  }

  .contact-heading {
    font-size: 3rem;
    margin-bottom: 18px;
  }

  .contact-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-info-right {
    min-height: 400px;
  }

  .map-wrapper iframe {
    min-height: 400px;
  }
    /* footer section */
    /* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 40px 0;
    position: relative;
}

.footer-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Side: Brand */
.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #999999;
}

/* Right Side: Quick Access */
.footer-right {
    flex: 0 0 auto;
    text-align: right;
}

.footer-menu-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #999999;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
}


    .footer-section {
        padding: 60px 0 30px 0;
    }

    .footer-container {
        padding: 0 30px;
        gap: 40px;
        flex-direction: row; /* Keep side by side */
    }

    .footer-left {
        flex: 1;
        max-width: 60%;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .footer-socials {
        gap: 16px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-right {
        flex: 0 0 auto;
        min-width: 150px;
    }

    .footer-menu-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    /* Unified container padding for tablet */
    .container,
    .about-interstellar-container,
    .second-video-section .container {
        padding: 0 30px; /* Consistent tablet padding */
    }

    /* About Section */
    .about-interstellar-section {
        padding: 60px 0;
    }

    .about-interstellar-heading {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .about-interstellar-content {
        gap: 20px;
    }

    .about-interstellar-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Video Section */
    .second-video-section {
        padding: 60px 0;
    }

    .video-wrapper-second {
        margin-bottom: 50px;
        border-radius: 10px;
    }
}





