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

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #dbdbdb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links li.dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.nav-links a svg {
  display: block;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: #860303;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-radius: 5px;
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  color: #000000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown.active .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Apply Button */
.apply-btn {
  background: #000000;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 5px;
}

.apply-btn:hover{
  background: #14075c;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form */
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-box input,
.popup-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit Button */
.popup-box button {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #595a5a;
}

/*whatsapp popup*/
/* WHATSAPP FLOATING */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* BUTTON */
.whatsapp-btn {
  width: 68px;
  height: 68px;
  background: #4ce45c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.whatsapp-btn img,
.whatsapp-btn svg {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

/* POPUP */
.whatsapp-popup {
  position: absolute;
  right: 75px;
  bottom: 0;
  width: 260px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.whatsapp-popup h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.whatsapp-popup p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CHAT BUTTON */
.whatsapp-chat-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER EFFECT */
.whatsapp-widget:hover .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*banner*/
/* Banner Section */
    .banner {
      position: relative;
      width: 100%;
      height: 350px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      overflow: hidden;
      isolation: isolate;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5); /* Dark overlay */
    }

    .banner::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -120px;
      top: -180px;
      border-radius: 42% 58% 63% 37% / 44% 40% 60% 56%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.06) 34%, transparent 60%),
        linear-gradient(135deg, rgba(245, 191, 84, 0.3), rgba(74, 144, 226, 0.12));
      filter: blur(2px);
      animation: countryBannerOrb 11s ease-in-out infinite;
      z-index: 0;
    }

    .banner h1 {
      position: relative;
      font-size: 3rem;
      text-align: center;
      z-index: 1;
      letter-spacing: 0.08em;
      text-shadow: 0 16px 34px rgba(15, 23, 42, 0.4);
      transform: translateY(8px);
      animation: countryTitleFloat 5.6s ease-in-out infinite;
    }

    /* Content Section */
    .content {
      position: relative;
      max-width: 1000px;
      margin: 30px auto;
      padding: 0 20px;
    }

    .content::before {
      content: "";
      position: absolute;
      inset: 20px 0 auto 0;
      height: calc(100% - 20px);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
      pointer-events: none;
      z-index: 0;
    }

    .section {
      position: relative;
      margin-bottom: 40px;
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246, 249, 252, 0.95));
      padding: 24px;
      border-radius: 18px;
      border: 1px solid rgba(27, 49, 77, 0.08);
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
      backdrop-filter: blur(8px);
      transform-style: preserve-3d;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      z-index: 1;
    }

    .section::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(245, 191, 84, 0.1), transparent 36%, rgba(74, 144, 226, 0.08));
      opacity: 0.8;
      pointer-events: none;
    }

    .section:nth-child(odd),
    .section:nth-child(even) {
      transform: none;
    }

    .section h2 {
      position: relative;
      margin-bottom: 15px;
      color: #2c3e50;
      font-size: 1.8rem;
      border-bottom: 2px solid #3498db;
      display: inline-block;
      padding-bottom: 5px;
      z-index: 1;
    }

    .section h3{
        position: relative;
        margin-top: 10px;
        z-index: 1;
    }

    .section p {
      position: relative;
      font-size: 1.2rem;
      line-height: 1.4;
      color: #555;
      text-align: justify;
      z-index: 1;
    }

    .section:hover {
      transform: translateY(-10px);
      box-shadow: 0 26px 48px rgba(15, 23, 42, 0.16);
      border-color: rgba(52, 152, 219, 0.22);
    }

    @keyframes countryBannerOrb {
      0%,
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }
      50% {
        transform: translate3d(-26px, 18px, 0) rotate(10deg);
      }
    }

    @keyframes countryTitleFloat {
      0%,
      100% {
        transform: translateY(8px);
      }
      50% {
        transform: translateY(-4px);
      }
    }


/*FOOTER*/
.footer {
  background: #f5f5f5;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 100px;
  margin-bottom: 25px;
}

.footer-col h3,.footer-col-add h4 {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 20PX;
}

.footer-col h2{
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
  margin-left: 35px;
}

.footer-col h3{
  margin-left: 50px;
}

.footer-col p {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

.footer-col-add .office-address {
  font-size: 18px;
  line-height: 1.25;
  color: #333;
  text-align: justify;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-col-add p {
  font-size: 18px;
  line-height: 1.35;
  color: #333;
  text-align: justify;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-col-add p:last-of-type {
  white-space: nowrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
  margin-left: 70px;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.map iframe {
  border-radius: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(135deg, #122033 0%, #1c3249 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.menu-toggle {
  cursor: pointer;
  display: none;
}

.line {
  stroke: #333;
  stroke-width: 2;
  transition: 0.3s;
}

/* active state */
.menu-toggle.active .top {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active .middle {
  opacity: 0;
}
.menu-toggle.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .container {
    padding: 12px 16px;
    position: relative;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #dbdbdb;
    padding: 0 16px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border-radius: 8px;
    background: #f4f4f4;
  }

  .dropdown-menu li {
    padding: 8px 12px;
  }

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

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

  .apply-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .popup-box {
    width: calc(100% - 24px);
    padding: 20px;
  }

  .popup-box h2 {
    font-size: 1.3rem;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }

  .whatsapp-btn img,
.whatsapp-btn svg {
    width: 34px;
    height: 34px;
  }

  .whatsapp-popup {
    right: 0;
    bottom: 68px;
    width: 220px;
  }

  .banner {
    height: 220px;
    padding: 0 16px;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .content {
    margin: 24px auto;
    padding: 0 16px;
  }

  .section {
    margin-bottom: 24px;
    padding: 16px;
    transform: none;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  .section h3 {
    font-size: 1.05rem;
  }

  .section p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .footer {
    padding-top: 32px;
  }

  .footer-container {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
    text-align: left;
  }

  .footer-col h2 {
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col-add .office-address,
  .footer-col-add p,
  .footer-col ul li a {
    font-size: 16px;
  }

  .map iframe {
    width: 100%;
    height: 240px;
  }
}

/* Compact Footer Override */
.footer { padding-top: 22px; }
.footer-container { gap: 18px; }
.logo-box img { width: 76px; margin-bottom: 6px; }
.footer-col h3, .footer-col-add h4 { margin-bottom: 10px; font-size: 15px; }
.footer-col p, .footer-col-add p, .footer-col-add .office-address, .footer-col ul li a { font-size: 13px; line-height: 1.45; }
.footer-col ul li { margin-bottom: 4px; }
.footer-bottom { margin-top: 16px; padding: 8px; font-size: 12px; background: linear-gradient(135deg, #122033 0%, #1c3249 100%); color: rgba(255, 255, 255, 0.82); }
@media (max-width: 767px) {
  .footer-col p, .footer-col-add p, .footer-col-add .office-address, .footer-col ul li a { font-size: 13px; }
}

/* Premium Motion Enhancements */
body {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(245, 191, 84, 0.08), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(87, 138, 255, 0.08), transparent 22%);
  background-attachment: fixed;
}

.header {
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-links a,
.apply-btn,
.footer-col ul li a,
.btn,
button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.footer-col ul li a:hover {
  transform: translateY(-1px);
}

.apply-btn:hover,
.btn:hover,
.popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.hero-image img,
:is(a, div, article, section)[class*="card"],
:is(div, section)[class*="box"] {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.14);
}

.hero-image:hover img {
  transform: translateY(-6px) scale(1.01);
}

:is(a, div, article, section)[class*="card"]:hover,
:is(div, section)[class*="box"]:not(.popup-box):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.whatsapp-btn {
  animation: premiumFloat 3.6s ease-in-out infinite;
  box-shadow: 0 16px 34px rgba(25, 117, 70, 0.28);
}

.popup-box,
.footer {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-btn {
    animation: none;
  }

  .banner::before,
  .banner h1 {
    animation: none;
  }

  .section,
  .section:hover {
    transform: none;
  }

  .hero-image img,
  :is(a, div, article, section)[class*="card"],
  :is(div, section)[class*="box"],
  .nav-links a,
  .apply-btn,
  .btn,
  button {
    transition: none;
  }
}

/* Responsive: Tablet / Small Laptop */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 14px 24px;
    gap: 16px;
  }

  .logo img {
    height: 54px;
  }

  .nav {
    flex: 1;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 14px;
  }

  .apply-btn {
    padding: 9px 14px;
  }

  .popup-box {
    max-width: 420px;
  }

  .whatsapp-popup {
    width: 240px;
  }

  .banner {
    height: 280px;
  }

  .banner h1 {
    font-size: 2.4rem;
  }

  .content {
    max-width: 100%;
    padding: 0 24px;
  }

  .section {
    padding: 18px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .section p {
    font-size: 1.08rem;
  }

  .footer-container {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
  }

  .map iframe {
    width: 100%;
    height: 260px;
  }
}

/* Responsive: Laptop / Desktop */
@media (min-width: 1024px) and (max-width: 1399px) {
  .container {
    max-width: 96%;
    padding: 15px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .banner {
    height: 320px;
  }

  .content {
    max-width: 1100px;
  }

  .section p {
    font-size: 1.1rem;
  }

  .footer-container {
    width: 94%;
    gap: 30px;
  }

  .map iframe {
    width: 100%;
    max-width: 360px;
  }
}

/* Responsive: Large Desktop */
@media (min-width: 1400px) {
  .container,
  .content {
    max-width: 1280px;
  }

  .banner {
    height: 380px;
  }

  .banner h1 {
    font-size: 3.2rem;
  }

  .section {
    padding: 24px;
  }

  .footer-container {
    max-width: 1280px;
    width: 100%;
  }
}

/* Footer Layout Refresh */
.footer { padding: 26px 0 0; background: linear-gradient(180deg, #f1e7d9 0%, #eadfce 100%); }
.footer-container { max-width: 1180px; width: calc(100% - 48px); grid-template-columns: 1.45fr 0.8fr 1fr 1.15fr; gap: 34px; }
.logo-box { align-items: flex-start; gap: 0; }
.logo-box img { width: 92px; margin-bottom: 8px; }
.footer-col h3, .footer-col-add h4 { margin: 0 0 12px; font-size: 17px; color: #122033; }
.footer-col h3, .footer-col ul li a { margin-left: 0; }
.footer-col p, .footer-col-add p, .footer-col-add .office-address { font-size: 14px; line-height: 1.65; text-align: left; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: 14px; line-height: 1.6; }
.map iframe { width: 100%; height: 225px; border: 0; border-radius: 18px; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10); }
.footer-bottom { margin-top: 18px; padding: 8px; background: linear-gradient(135deg, #122033 0%, #1c3249 100%); color: rgba(255, 255, 255, 0.82); }
@media (max-width: 1023px) { .footer-container { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); gap: 24px; } }
@media (max-width: 767px) { .footer { padding-top: 22px; } .footer-container { grid-template-columns: 1fr; width: calc(100% - 28px); gap: 18px; } .map iframe { height: 210px; } }




