* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


/* LOGO IMAGE */
.logo img {
  height: 50px;       /* desktop size */
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 40px;   /* smaller on mobile */
  }
}
.logo img {
  height: 60px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #0a3d62;
  backdrop-filter: blur(10px);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  padding: 10px 40px;
  background: #0a3d62;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
}

/* MENU */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  padding: 8px;
  position: relative;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #feca57;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* REMOVE animation for Services */
.drop-btn::after {
  display: none !important;
}

/* ===== DROPDOWN ===== */
.dropdown {
  padding-bottom: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a3d62;
  min-width: 200px;
  border-radius: opx;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: rgb(255, 255, 255);
  padding: 12px 15px;
  display: block;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #052f4e;
}

/* ARROW */
.arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: 0.3s;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

/* BUTTON */
.cta-btn {
  padding: 8px 18px;
  background: linear-gradient(45deg, #1a15aa, #9aa5ef);
  color: white;
  border-radius: 20px;
   border: 2px solid black;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(241, 238, 238, 0.2);
}

.cta-btn:hover {
  transform: scale(1.05);
}
.apply-btn {
  padding: 8px 18px;
  background: linear-gradient(45deg, #1a15aa, #9aa5ef);
  color: white;
  border-radius: 20px;
   border: 2px solid black;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(241, 238, 238, 0.2);
  display: none;
}

.apply-btn:hover {
  transform: scale(1.05);
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90%;
    background: #0a3d62;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 12px;

    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 5px;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .cta-btn {
    display: none;
  }
  .apply-btn {
    display: visible;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: relative;
    width: 100%;
    background: #082c47;
    display: none;
  }

  .dropdown-menu a {
    color: white;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}










.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: black; /* FULL BLACK */
  opacity: 0.5;      /* control darkness */

  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
}

.hero-content p {
  font-size: 20px;
  margin: 10px 0 30px;
}

/* BUTTON */
.hero-btn {
  padding: 12px 25px;
  background: #ffae00;
  color: rgb(0, 0, 0);
  border-radius: 25px;
  text-decoration: none;
}
.hero-btn:hover {
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5);
  transform: translateX(3px);
  
}
/* CONTROLS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

.prev { left: 15px; }
.next { right: 15px; }

/* MOBILE */
@media (max-width: 768px) {

  .hero-content h1 {
  font-size: 28px;
}

.hero-content p {
  font-size: 15px;
  
}
.hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
}
}







/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 40px;
  color: #0a3d62;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: linear-gradient(45deg, #0a3d62, #1e5f9e);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.05);
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}
.about-image img {
  transition: 0.3s;
}

.about-image img:hover {
  transform: scale(1.03);
}









/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a3d62, #1e5f9e);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.why-title {
  font-size: 32px;
  margin-bottom: 50px;
}

/* GRID */
.why-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.why-box {
  background: rgba(255,255,255,0.08);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);

  transition: 0.3s;
}

/* ICON */
.why-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TITLE */
.why-box h3 {
  margin-bottom: 10px;
}

/* TEXT */
.why-box p {
  font-size: 14px;
  color: #ddd;
}

/* HOVER EFFECT */
.why-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,0.15);
}
.why-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(80px);
}

.why-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(80px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}










/* ===== SERVICES SECTION ===== */
.services-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.services-title {
  font-size: 30px;
  color: #0a3d62;
  margin-bottom: 40px;
}

/* GRID */
.services-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}



/* FORCE CENTER CONTENT */
.service-box {
  background: #f9fbff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;

  display: flex;
  flex-direction: column;
  align-items: center;   /* 🔥 center horizontally */
  text-align: center;    /* 🔥 center text */
 box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* ICON PERFECT CENTER */
.service-box .icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  background: #0a3d62;
  color: white;
  border-radius: 50%;

  margin-bottom: 15px;
}

/* TITLE */
.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a3d62;
}

/* TEXT */
.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}
.service-box .icon {
  background: #0a3d62;
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
}











/* ===== GET IN TOUCH ===== */
.touch-section {
  background: #0a3d62; /* same blue as navbar */
  padding: 70px 20px;
  color: white;
  text-align: center;
}

.touch-title {
  font-size: 30px;
  margin-bottom: 40px;
}

/* CONTAINER */
.touch-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* BOX */
.touch-box {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

/* ICON */
.touch-box .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* TEXT */
.touch-box h3 {
  margin-bottom: 10px;
}

.touch-box p {
  font-size: 14px;
  color: #ddd;
}

/* HOVER */
.touch-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .touch-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .touch-container {
    grid-template-columns: 1fr;
  }
}
.touch-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}










/* ===== CONTACT ===== */
.contact-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e8f0ff);
}

.container {
  
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 40px;
  color: #0a3d62;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #555;
}

.info-box {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-3px);
}

.info-icon {
  background: #0a3d62;
  color: white;
  padding: 10px;
  border-radius: 50%;
}

/* FORM */
.contact-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form textarea {
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #0a3d62, #1e5f9e);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);

  display: flex;
  justify-content: center;
  align-items: center;

  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 320px;
  animation: scaleUp 0.3s ease;
}

.modal-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.modal-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #0a3d62;
  color: white;
  border: none;
  border-radius: 6px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes scaleUp {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

















/* ===== FOOTER ===== */
.footer {
  background: #0a3d62; /* same as navbar */
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left p {
  margin-bottom: 5px;
  font-size: 14px;
}

.tagline {
  font-size: 13px;
  color: #ccc;
}

/* RIGHT MENU */
.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* HOVER EFFECT (same feel as navbar) */
.footer-right a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #feca57;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.footer-right a:hover::after {
  width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer {
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}




















/* ===== PRIVACY PAGE ===== */
.privacy-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.privacy-container h1 {
  margin-bottom: 20px;
  color: #0a3d62;
}

.privacy-container h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #0a3d62;
}

.privacy-container p,
.privacy-container li {
  color: #555;
  line-height: 1.6;
}

.privacy-container ul {
  padding-left: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .privacy-container {
    padding: 20px;
  }
}























/* ===== APPLY PAGE ===== */
.apply-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

.apply-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.apply-container h1 {
  margin-bottom: 10px;
  color: #0a3d62;
}

.apply-container p {
  margin-bottom: 20px;
  color: #555;
}

/* FORM */
.apply-form {
  display: flex;
  flex-direction: column;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  width: 100%;
}

.apply-form textarea {
  height: 120px;
}

/* BUTTON */
.apply-form button {
  padding: 12px;
  background: linear-gradient(45deg, #0a3d62, #1e5f9e);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.apply-form button:hover {
  opacity: 0.9;
}






















/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #25D366;
  color: white;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  text-decoration: none;
  z-index: 999;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

























/* ===== BACK TO TOP BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;

  display: none; /* hidden initially */

  background: #0a3d62;
  color: white;

  border: none;
  border-radius: 50%;

  width: 50px;
  height: 50px;

  font-size: 20px;
  cursor: pointer;

  z-index: 999;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  transition: 0.3s;
}

#topBtn:hover {
  background: #1e5f9e;
  transform: scale(1.1);
}