body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  /* Apply Roboto font */
  background-color: #fff;
  color: #333;
  overflow: hidden;
  /* Lock scrolling initially */
}

/* General Header Styles */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  width: 100%;
  z-index: 15;
}

header a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s ease;
}

header a:hover {
  transition: 0.2s;
  color: #0073e6;
}

.fly-button {
  background-color: #0073e6;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fly-button:hover {
  background-color: #005bb5;
}


/* Hide navigation links on smaller screens */
/* Fancy Toggle Styles for Navigation */
@media (max-width: 300px) {
  nav {
    margin-top: 200px;
    position: relative;
    /* Adjust position for inline display */
    display: flex;
    /* Inline display for menu items */
    justify-content: center;
    /* Center align links */
    background-color: #fff;
    width: 100%;
    box-shadow: none;
    /* Remove shadow for inline display */
    transform: translateY(0);
    /* Ensure visibility */
    transition: none;
    /* No transition needed for inline */
    opacity: 1;
    /* Fully visible */
    z-index: 15;
    padding: 10px 5px;
    /* Reduced padding */
  }

  nav a {
    display: inline-block;
    /* Inline-block for horizontal layout */
    background: none;
    /* Remove card-like background */
    margin: 0 5px;
    /* Small margin between links */
    padding: 5px 10px;
    /* Smaller padding */
    border-radius: 0;
    /* No rounded corners */
    text-decoration: none;
    font-size: 14px;
    /* Smaller font size */
    font-weight: 400;
    /* Normal font weight */
    color: #333;
    box-shadow: none;
    /* Remove shadow effect */
    transition: color 0.3s ease;
    /* Smooth color change on hover */
  }

  nav a:hover {
    color: #007bff;
    /* Add hover color for better interaction */
  }

  header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    width: 100%;
    z-index: 15;
  }

  header a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  header a:hover {
    transition: 0.2s;
    color: #0073e6;
  }

  .fly-button {
    background-color: #0073e6;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .fly-button:hover {
    background-color: #005bb5;
  }

}



.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: transparent;
  overflow: hidden;

}

.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: center;

  z-index: 2;
  /* Ensure content is above the aircraft */
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.hero .confidence {
  font-size: 14px;
  justify-content: center;
  width: 100%;
  color: #5f5f5f;
  font-weight: 100px;
  font-style: Roboto;
  position: absolute;
  z-index: 1;
  /* Place behind aircraft */
}

.hero button {
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(45deg, #0073e6, #00d4ff);
  /* Gradient background */
  border: none;
  border-radius: 30px;
  /* Rounded corners for a pill-shaped button */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  /* Smooth transition for hover effects */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Add a subtle shadow */
}

.hero button:hover {
  background: linear-gradient(45deg, #00d4ff, #0073e6);
  /* Reverse gradient on hover */
  transform: translateY(-3px);
  /* Slight upward movement */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  /* Enhance shadow on hover */
  transition: all 0.3s ease-in-out;
  /* Smooth transition for hover effects */

}

.hero button:active {
  transform: translateY(2px);
  /* Button depresses slightly on click */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Restore original shadow */
}


.runway {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #333;
  z-index: 0;
  /* Ensure it appears below the aircraft */
}

.aircraft {
  position: absolute;
  bottom: 0px;
  /* Adjusted to match your updated values */
  left: 0;
  /* Start fully visible at the left edge */
  width: 20%;
  /* Adjusted to match your updated values */
  z-index: 2;
  /* Ensure the aircraft is above the runway */
  transition: transform 0.1s linear;
  /* Smooth movement */
}

.fly-button {
  font-family: 'Roboto', Arial, sans-serif;
  /* Match font style */
  font-size: 16px;
  /* Match the font size */
  color: #333;
  /* Text color */
  background-color: transparent;
  /* Transparent background */
  border: 2px solid #ccc;
  /* Light gray border */
  border-radius: 20px;
  /* Rounded corners */
  padding: 8px 20px;
  /* Space around text */
  cursor: pointer;
  /* Pointer cursor for interactivity */
  transition: all 0.3s ease;
  /* Smooth transitions for hover effects */
}

.fly-button:hover {
  border-color: #0073e6;
  /* Change border color on hover */
  color: #0073e6;
  /* Change text color on hover */
  background-color: #f9f9f9;
  /* Add a light background on hover */
}

.logo {
  display: flex;
  /* Arrange image and text side by side */
  align-items: center;
  /* Vertically align the image and text */
  font-family: 'Roboto', Arial, sans-serif;
  /* Use a clean font */
  color: #262626;
  /* Professional blue color */
}

.logo-image {
  width: 50px;
  /* Adjust the size of the image */
  height: 50px;
  margin-right: 10px;
  border-radius: 10%;
  /* Optional: Make the image circular */

}

.logo-text h3 {
  font-size: 24px;
  /* Larger font for the main name */
  font-weight: bold;
  /* Bold text for emphasis */
  margin: 0;
  /* Remove default margins */
  letter-spacing: 1px;
  /* Add slight letter spacing */
  text-transform: uppercase;
  /* Make it all caps for a logo feel */
}

.logo-text p {
  font-size: 12px;
  /* Smaller font for the tagline */
  font-weight: normal;
  /* Regular weight for contrast */
  margin: 0;
  /* Remove default margins */
  color: #555;
  /* Subtle gray for the tagline */
}

.section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.section h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section p {
  font-size: 24px;
  margin-top: 0;
  color: #666;
  margin-bottom: 30px;
}

.carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Video Card Styling */
.video-card {
  position: relative;
  /* Ensure proper positioning for the inner video */
  flex: 0 0 20%;
  /* Default: 5 cards per row (20% each) */
  max-width: 20%;
  /* Match the flex-basis */
  margin: 10px;
  border-radius: 10px;
  /* Optional: Rounded corners */
  overflow: hidden;
  /* Ensures video does not overflow the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #000;
  /* Fallback background color */
}

.video-card::before {
  content: '';
  /* Maintain aspect ratio */
  display: block;
  padding-top: 177.78%;
  /* 9:16 Aspect Ratio (height/width * 100) */
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Ensures the video fits the card */
  height: 100%;
  /* Maintain aspect ratio within the container */
  object-fit: cover;
  /* Ensures the video covers the entire card */
  border-radius: 10px;
  /* Match card border-radius */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-card {
    flex: 0 0 35%;
    /* 2 cards per row */
    max-width: 45%;
    /* Match the flex-basis */
  }
}

@media (max-width: 576px) {
  .video-card {
    flex: 0 0 30%;
    /* 1 card per row */
    max-width: 100%;
    /* Match the flex-basis */
  }
}


.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

.carousel-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Scoped Styles for About Doc.Pilot10 Section */
.about-doc-pilot10 {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.about-doc-pilot10 h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #333;
}

.about-doc-pilot10 p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  margin-top: 0;
}

.about-doc-pilot10 .video-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #e0e0e0;
}

.about-doc-pilot10 .video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Scoped Styles for Pilot Guide Section */
.pilot-guide-section {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  text-align: center;
}

.pilot-guide-section h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #333;
}

.pilot-guide-section p {
  font-size: 26px;
  margin-top: 0;
  color: #666;
  margin-bottom: 30px;
}

.pilot-guide-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  /* Restrict the width */
  margin: 0 auto;
}

.pilot-guide-container .video-container {
  flex: 3;
  /* Larger portion for the video */
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 400px;
  /* Set a height for the video container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pilot-guide-container .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pilot-guide-container .steps-container {
  flex: 1;
  /* Smaller portion for the steps */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pilot-guide-container .step-box {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  text-align: left;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s;
}

.pilot-guide-container .step-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pilot-guide-container .step-box.active {
  background-color: #000;
  /* Highlighted background color */
  color: #fff;
  /* White text for better contrast */
  border-color: #005bb5;
  /* Darker border for active step */
}

/* Responsive Design */
@media (max-width: 768px) {
  .pilot-guide-container {
    flex-direction: column;
    align-items: center;
  }

  .pilot-guide-container .video-container {
    width: 100%;
    height: 300px;
  }

  .pilot-guide-container .steps-container {
    width: 100%;
  }
}

/* Scoped Styles for CPL Subjects Section */
.cpl-subjects-section {
  padding: 50px 20px;
  font-family: 'Poppins', Arial, sans-serif;
  /* Modern font */

  text-align: center;
  max-width: 1000px;
  /* Match other module's max width */
  margin: 0 auto;
  /* Center section */
}

.cpl-subjects-section h1 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #2a2a2a;
  /* Slightly darker color for contrast */
  font-weight: 700;

  letter-spacing: 1px;
  /* Spaced-out letters for a clean look */
}

.cpl-subjects-section p {
  font-size: 20px;
  margin-top: 0;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
  /* Subtle italic style for emphasis */
}

.cpl-subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Three cards per row */
  gap: 20px;
  /* Adjusted spacing for consistency */
  width: 100%;
  /* Full width of the section */
}

.cpl-subject-card {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  /* Light gradient background */
  border-radius: 15px;
  /* Softer rounded corners */
  height: 150px;
  /* Consistent height for the cards */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  /* Larger font for readability */
  color: #333;
  font-weight: 600;
  /* Bolder font weight */
  text-transform: capitalize;
  /* Capitalize text for a cleaner look */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  /* Enhanced shadow */
  cursor: pointer;
  position: relative;
  /* For hover effects */
  overflow: hidden;
  /* Ensure hover effects don't overflow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cpl-subject-card:hover {
  transform: translateY(-10px) scale(1.05);
  /* Lift and slightly enlarge */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  /* Stronger shadow on hover */
}

.cpl-subject-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.1);
  /* Subtle blue overlay */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  /* Ensure it stays behind the text */
}

.cpl-subject-card:hover::before {
  opacity: 1;
  /* Reveal overlay on hover */
}

.cpl-subject-card span {
  position: relative;
  z-index: 1;
  /* Bring text to the front */
}

/* Responsive Design */
@media (max-width: 768px) {
  .cpl-subjects-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Two cards per row on smaller screens */
    gap: 20px;
    /* Adjust spacing */
  }
}

@media (max-width: 576px) {
  .cpl-subjects-grid {
    grid-template-columns: 1fr;
    /* One card per row on very small screens */
  }

  .cpl-subject-card {
    height: 140px;
    /* Adjust height for smaller screens */
  }
}

/* Scoped Styles for ePilot Practise Zone */
.epilot-practise-section {
  padding: 40px 20px;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #fff;
  text-align: center;
  max-width: 1000px;
  /* Ensure consistent max width */
  margin: 0 auto;
  /* Center section */
  border-radius: 10px;

}

.epilot-practise-section h1 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.epilot-practise-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  margin-top: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Three cards per row */
  gap: 20px;
  background: #f4f7fa;
  /* Light background for the grid */
  padding: 20px;
  border-radius: 15px;
  /* Round edges for grid container */
}

.practice-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  color: #333;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.exam-section {
  margin-top: 30px;
}

.exam-section button {
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(45deg, #0073e6, #00b4ff);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.exam-section button:hover {
  background: linear-gradient(45deg, #00b4ff, #0073e6);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.exam-description {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Two cards per row on tablets */
  }
}

@media (max-width: 576px) {
  .practice-grid {
    grid-template-columns: 1fr;
    /* One card per row on smaller screens */
  }

  .practice-card {
    font-size: 14px;
    /* Adjust font size for smaller screens */
  }

  .exam-section button {
    font-size: 14px;
    /* Adjust button font size */
  }

  .exam-description {
    font-size: 13px;
    /* Adjust description font size */
  }
}

/* Footer Styling */
.site-footer {
  background-color: #f4f7fa;
  color: #333;
  padding: 20px 0px 0px;

  font-family: 'Poppins', Arial, sans-serif;

}

.footer-container {
  max-width: 1000px;
  /* Consistent max width */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-column p {
  font-size: 14px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column p a {
  color: #000;
  text-decoration: none;
}

.footer-column p a:hover {
  text-decoration: underline;
}

/* Social Media Section */
.footer-social {
  text-align: center;
  margin-top: 30px;
}

.footer-social h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0073e6;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #b4b4b4;
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 0px;
  text-align: center;
  font-size: 14px;
  color: #555;
  padding-top: 0px;
  border-top: 1px solid #ddd;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  background: linear-gradient(135deg, #742d91, #dc3b36);
  color: #fff;
  width: 90%;
  max-width: 900px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.popup h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}



.phone-box button {
  background-color: #fbc02d;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.phone-box button:hover {
  background-color: #ffeb3b;
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.student-container {
  display: flex;
  gap: 15px;
  overflow: hidden;
  padding: 20px;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.student-card {
  text-align: center;
  flex: 0 0 auto;
  width: 120px;
}

.student-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1%;
  margin-bottom: 0px;
}

.student-info {
  font-size: 0.9rem;
  color: #333;
}

.student-marks {
  font-size: 0.8rem;
  color: #555;
}



html {
  scroll-behavior: smooth;
  height: 100%;

}

.secmarg,
section {
  padding-top: 50px;
  height: 80%;


}

.marks-box {

  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.container {
  max-width: 960px;
}

.steps-section {
  padding: 50px 0;
  background-color: #fff;
}

.step-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.step-card h5 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
}