* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    background-image: url('background1.jpg');
    background-size: cover; 
    background-position: center;  
    background-attachment: fixed;  
    color: #fff;
  }
  
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  .feedbacks {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .feedback {
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #2c5364;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .feedback p {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .feedback strong {
    display: block;
    text-align: right;
    color: #555;
  }
  .services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
    color: white;
  }
  
  /* Assign unique background colors to each card */
  .service:nth-child(1) {
    background: linear-gradient(135deg, #00b4db, #0083b0);
  }
  .service:nth-child(2) {
    background: linear-gradient(135deg, #f7971e, #ffd200);
  }
  .service:nth-child(3) {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
  }
  
  /* Hover effect */
  .service:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
    
  
  header {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  nav {
    display: flex;
    gap: 15px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .service {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 280px;
  }
  
  footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    nav {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .services {
      flex-direction: column;
    }
  
    header {
      align-items: flex-start;
    }
  }
/* Add perspective to the whole layout (optional 3D depth) */
body {
    perspective: 1000px;
  }
  
  /* 3D-like effect for service cards */
  .service {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
    color: white;
    transform: rotateX(0deg) rotateY(0deg);
  }
  
  .service:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  
  /* Unique colorful backgrounds */
  .service:nth-child(1) {
    background: linear-gradient(135deg, #00b4db, #0083b0);
  }
  .service:nth-child(2) {
    background: linear-gradient(135deg, #f7971e, #ffd200);
  }
  .service:nth-child(3) {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
  }
  
  /* 3D-style header shadow */
  header {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
  

  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 80%);
    animation: rotateBG 20s linear infinite;
    z-index: 0;
  }
  
  .hero h1,
  .hero p {
    position: relative;
    z-index: 1;
  }
  
  @keyframes rotateBG {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* Base navigation styles */
header {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    position: relative;
  }
  
  nav {
    display: flex;
    gap: 15px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  /* Hamburger menu hidden by default */
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .nav-toggle-label span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-toggle-label {
      display: flex;
      align-self: flex-end;
      margin-top: 10px;
    }
  
    nav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }
  
    .nav-toggle:checked + .nav-toggle-label + nav {
      max-height: 500px;
      margin-top: 10px;
    }
  
    nav a {
      padding: 10px 20px;
      width: 100%;
      box-sizing: border-box;
    }
  }
  #faqs {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  #faqs h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #2c5364;
  }
  
  .faq details {
    margin-bottom: 15px;
    background: white;
    border-radius: 6px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq summary {
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
  }
  
  .faq p {
    margin-top: 10px;
    color: #444;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }
  
  .logo img {
    height: 40px;
    width: auto;
    display: block;
  }
  nav a {
    color: white;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 4px;
    transition: color 0.3s ease;
  }
  
  nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00b4db;
    transition: width 0.3s ease;
  }
  
  nav a:hover {
    color: #00b4db;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  #feedbacks {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
  }
  
  #feedbacks h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c5364;
  }
  
  .feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .feedback-card {
    background: white;
    padding: 20px;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feedback-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  #plane-animation {
    position: fixed;
    top: 100px;
    left: -100px;
    z-index: 2000;
    pointer-events: none;
  }
  
  #plane {
    height: 60px;
    animation: fly-across 7s ease-in-out 1s forwards;
  }
  
  @keyframes fly-across {
    0% {
      transform: translateX(0) translateY(0);
      opacity: 1;
    }
    25% {
      transform: translateX(40vw) translateY(-80px);
      opacity: 1;
    }
    50% {
      transform: translateX(80vw) translateY(-120px);
      opacity: 0.9;
    }
    75% {
      transform: translateX(120vw) translateY(-120px); /* leveled flight */
      opacity: 0.6;
    }
    100% {
      transform: translateX(160vw) translateY(-120px); /* straight horizontal */
      opacity: 0;
    }
  }
  
  
  #contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c5364;
  }
  
  #contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  .contact-buttons {
    margin-bottom: 30px;
  }
  
  .btn.contact-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    color: white;
    background-color: #2c5364;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn.contact-btn:hover {
    background-color: #1e3c4c;
    transform: scale(1.05);
  }
  
  .social-links {
    margin-top: 20px;
    font-size: 1rem;
  }
  
  .social-icon {
    margin-left: 15px;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.3);
  }
  
  .social-icon .fa-instagram {
    color: #E1306C;
  }
  
  .social-icon .fa-youtube {
    color: #FF0000;
  }
  
  .social-icon:hover .fa-instagram {
    color: #c13584;
  }
  
  .social-icon:hover .fa-youtube {
    color: #cc0000;
  }
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  