/* ==============================
   0. GLOBAL RESET
============================== */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: #f8f7f7;
  font-family: 'Times New Roman', Times, serif;
}
/* Floating Social Buttons */
/* Floating Buttons Wrapper */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 2000; /* Increased so WhatsApp never hides */
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none; /* Container won't block scroll */
}

/* Each Floating Button */
.float-btn {
  pointer-events: auto; /* Buttons stay clickable */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button – ALWAYS FIXED & ALWAYS ON TOP */

.float-btn.whatsapp {
  background-color: #25D366;
  z-index: 1001 !important; /* Already set */
  position: relative;
}

/* Ensure WhatsApp stays above Instagram when stacked */
.floating-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Optional: Add a subtle shadow to make buttons stand out */
.float-btn {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.float-btn.instagram {
  background: #e1e8ef;
  transition: all 0.3s ease;
}

.float-btn.instagram:hover {
   background-color: #092147;
  transform: translateY(-3px);
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
} 

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #092147;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}


/* ==============================
   1. HEADER & NAVBAR
============================== */
.top_header {

  color: #000;
  padding: 0.5rem 0;
 position: relative;
  z-index: 1000;
}



.top_header ul {
  margin: 0;
  padding: 0;
}

.top_header ul li {
  list-style: none;
  display: inline;
  font-size: 15px;
  font-weight: 700px;
  padding: 5px 0px 0px 10px;
}

.top_header ul li i {
  color: #35629a;
  text-decoration: none;
  outline: none;
 

}
.top_header ul li a {
  color: inherit;        
  cursor: pointer;        
  pointer-events: auto;   
  
}
.top_header ul li a:hover i {
  color: orange;        
}




.header_area {
  background-color: #35629a;
  padding: 10px 0;

}

.menu li a {
  color: #ffffff;
  font-weight: 700px;
  font-size: 17px;

}

.menu li a:hover {
  color: rgb(234, 136, 17);

}

.main-header {
  background-color: #fbfaf7;
  color: #693f26;
  padding: 20px;
  position: relative;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10%;
}

.logo img {
  height: 80px;
  width: 180px;
 
}

.navbar {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 65px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: rgb(96, 96, 163);
}

.navbar-toggler {
  background-color: white;
}

/* Sidebar (Mobile Menu) */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  z-index: 999;
  background-color: #fdf5aa81;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

.sidebar li {
  list-style: none;
}

.sidebar a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 10px;
}

.sidebar a:hover {
  color: #f68a06;
  background: #e0e0e0;
}

.menu-button {
  display: none;
  cursor: pointer;
}
/* ==============================
   2. POPUP FORM
============================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-form {
  background: #fbfaf6;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 0 20px rgba(159, 156, 156, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-form h4 {
  margin-bottom: 15px;
  text-align: center;
  color: #2d2d41;
  font-weight: 600;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #6293f6;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form textarea:focus {
  background: #fffde7;
  border: 1px solid #35629a;
  box-shadow: 0 0 8px rgba(55, 171, 228, 0.5);
  outline: none;
}

.popup-form button[type="submit"] {
  width: 100%;
  padding: 10px;
  background: #0a2241;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-form button[type="submit"]:hover {
  background: #f1a221;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* ==============================
   3. HERO SECTION
============================== */
.banner {
  min-height: 100vh;
  background-image:
  url("Images/home-back-img.jpg");
  background-repeat: no-repeat, repeat-x;
  background-position: center, 0 0;
  background-size: cover, auto;
  animation: moveBg 30s linear infinite;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes moveBg {
  from {
    background-position: center, 0 0;
  }

  to {
    background-position: center, 500px 0;
  }
}
/* Make sure content stays above overlay */
.banner .container {
  position: relative;
  z-index: 2;
}

.banner p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.drone-img {
  max-width: 90%;
  /* Prevents oversizing */
  height: auto;

}

/* Enquiry Button */
.open-popup-btn { 
  background:  #35629a;
  color: #f0f2f5;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 500px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.open-popup-btn:hover {
  background: #e79511;
  color: white;
}

/* Drone Image Animation (Left Side) */
.banner img.drone-img {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 300px;
  max-width: 80%;
  transform: translateY(-50%);
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-55%) translateX(15px);
  }

  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* ==============================
   ABOUT US - RPTO SECTION
============================== */
.about-rpto {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


.about-rpto h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  color: #0a2241;

}

.about-rpto h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f1a221;
  margin: 8px auto 0;
  border-radius: 2px;
}


/* Text Section */
.about-rpto-text {
  flex: 1 1 500px;
}


.about-rpto-text .tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.about-rpto-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.Dgca-para {
  font-size: 60px;
  line-height: 2.5;

}

/* Image Section */
.about-rpto-image {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
}

.about-rpto-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-rpto-image img:hover {
  transform: scale(1.05);
}

/* Feature Box Common */
.aboutus-feature-box {
  background: #092147;
  color: #fff;
  border: 1px solid #f3f1f1;
  border-radius: 0 0 50px 50px;
  /* square top + curved bottom */
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.aboutus-feature-box:hover {
  background: #7b9bdb;
  color: #fff;
  transform: translateY(-5px);
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border: 3px solid orange;

  border-radius: 50%;
  background: #f2f4f6;
  color: #0a2241;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: -55px auto 20px;

  /* pulls circle above box */
}

/* Variations for Bottom Radius */
.box-1 {
  border-radius: 0 0 90px 90px;
}

.box-2 {
  border-radius: 0 0 90px 90px;
}

.box-3 {
  border-radius: 0 0 90px 90px;
}

/* Hover Effect (Common) */
.box-1:hover,
.box-2:hover,
.box-3:hover {
  background: #111c2d;
  color: white;
  transform: translateY(-5px);
}

/* ==============================
   USPs SECTION
============================== 

/* Wrap content above overlay */

.usps {
  position: relative;
  z-index: 1;
}

/* Heading */
.usps-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #0a2241;
}

.usps-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: orange;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Subtitle */
.usps-sub {
  font-size: 1.2rem;

}

/* USP Card */
.usp-card {
  margin-bottom: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.usp-card i {
  font-size: 2rem;
  color: #0a2241;
  margin-bottom: 10px;
}

.usp-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.usp-card p {
  font-size: 0.95rem;
  color: #555;
}

.usp-card:hover {
  transform: translateY(-5px);
}

.drone-img {
  position: relative;
  display: inline-block;
  max-height: 380px;
  animation: floatDrone 4s ease-in-out infinite;
}

.drone-img::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 80%);
  border-radius: 50%;
}

@keyframes floatDrone {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .usp-section .col-lg-4 {
    text-align: center;
    margin-bottom: 20px;
  }
  .drone-img {
    max-height: 250px;
    margin: 20px 0;
   
  }
}


/* Opportunity card styles */
.opportunity-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
}
.opportunity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Icon style */
.opportunity-icon {
  font-size: 40px;
  color: orange;
  margin-bottom: 15px;
}
.opportunity-usps h2 {
  color: #0a2241;
}

/* Drone floating animation */
.drone-image {
  width: 180px;
  animation: droneFloat 3s ease-in-out infinite;
}

@keyframes droneFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Center wrapper to make drone central */
.drone-center-wrapper  {
  max-width: 200px;
  position: relative;
  z-index: 1;
}


/* ..............features.......... */
/* Section background */


.features-cards {
  background: url("Images/feature-back.jpg") center/cover no-repeat;
  position: relative;
}


.feature-title {  
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a2241;
  text-align: center;
  margin-bottom: 30px;
  position: relative;

}

.feature-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: orange;
  margin: 8px auto 0;
  border-radius: 2px;
}



.features-cards.cards-box{
  margin-bottom: -200px !important;
}
.features-cards h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;



}

.features-cards h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f1a221;
  margin: 8px auto 0;
  border-radius: 2px;
}
.dif-para {
  color: white;
}
.features-cards h3{
  color:black;
}

.features-cards.card {

  color: #ebe5e5;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.features-cards.card:hover {
  transform: translateY(-5px);
}

.features-cards .card-icon i {
  color:  #35629a;

}

/* Feature Box */
.instructor-section {
  background: linear-gradient(135deg, #2b3038, #ebecee, #090925);
  color: #0a2241;
  position: relative; 
  overflow: hidden;

}

/* Decorative circles in background */
.instructor-section::before,
.instructor-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.instructor-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.instructor-section::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
}


/* ...........our reviews */
.reviews-section {
  background: linear-gradient(135deg, #0a0a0a 60%, #35629a 120%);
  color: white;
  padding: 60px 20px;
}

.section-title-review {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background0.3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.stars {
  color: #f6b21c;
  margin-bottom: 10px;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: #ddd;
}

.reviewer {
  font-weight: bold;
  margin-top: 10px;
  color:  #35629a;
}

.contact-section {
  background: #f9f9f9;
}

.section-title-contact {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-us {
  background-image: url(Images/contact-us\ background.jpg);
}


.section-title-contact {  
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a2241;
  text-align: center;
  margin-bottom: 30px;
  position: relative;

}

.section-title-contact::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: orange;
  margin: 8px auto 0;
  border-radius: 2px;
}   

.contact-box {
  transition: all 0.3s ease;
  background: white;
  color: #000;
  border-radius: 10px;
  border: #25D366;
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
}

#footer {
  background-color: rgb(28, 25, 25);
    color: #fff;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-useful-title {
  font-size: 18px;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;

}

.footer-contact-title {
  font-size: 18px;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;

}

.footer-service-title {
  font-size: 18px;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;

}

.footer-about-title {
  font-size: 18px;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;

}

/* Links */
.footer-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-links li i {
  color: orange;
  margin-right: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: orange;
}

/* Contact Info */
.footer-contact a {
  color: orange;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* About */
.footer-about {
  color: #a6a3a3;
}

/* Social Icons */
.social-links .social-icon {
  font-size: 22px;
  display: inline-block;
  color: #a6a3a3;
  margin-right: 15px;
  transition: 0.3s ease;
}
.fa-instagram {
  font-size: 28px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-icon.instagram:hover {
  color: #E1306C;
}

.social-icon.linkedin:hover {
  color:  #35629a;
}

/* Bottom */
.footer-bottom {
  background: #edeaea;
  border-top: 1px solid #222;
}



/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}



/* // `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* // `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* // `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .mt-40 {
    margin-top: 40px !important;
  }
}

/* // `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* // `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

