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

body {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(245, 191, 84, 0.12), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(0, 86, 179, 0.1), transparent 24%),
    linear-gradient(180deg, #f8f6f1 0%, #f4f7fb 48%, #f6f7f9 100%);
  background-attachment: fixed;
}

/* 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);
}

/*IMAGINTE MELE TEXT OVERLAY*/
.about-story {
  padding: 60px 8%;
  background: transparent;
}

.story-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245, 247, 250, 0.9));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.story-container::before,
.story-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.story-container::before {
  width: 210px;
  height: 210px;
  top: -70px;
  right: -50px;
  background: radial-gradient(circle, rgba(245, 191, 84, 0.26), rgba(245, 191, 84, 0));
}

.story-container::after {
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.18), rgba(0, 86, 179, 0));
}

/* Left Text */
.story-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.story-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}

/* Right Image */
.story-image {
  flex: 1;
  position: relative;
  perspective: 1200px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  animation: storyImageFloat 6s ease-in-out infinite;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: auto 6% -22px 6%;
  height: 30px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0));
  filter: blur(12px);
  z-index: 0;
}

/*VISION & MISSION*/
.vision-mission {
  padding: 60px 8%;
  background: transparent;
}

.vm-container {
  display: flex;
  gap: 30px;
  perspective: 1400px;
}

/* Each Box */
.vm-box {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.vm-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  display: block;
}

/* Overlay */
.vm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(22px);
  backdrop-filter: blur(4px);
}

.vm-overlay h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.vm-overlay p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* Hover Effects */
.vm-box:hover img {
  transform: scale(1.09) rotate(1.2deg);
  filter: saturate(1.05);
}

.vm-box:hover .vm-overlay {
  opacity: 1;
  transform: translateY(0);
}

/*DIRECTOR*/
.founder-section {
  padding: 70px 8%;
  background: transparent;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(255,255,255,0.96), rgba(242, 246, 252, 0.9));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* LEFT SIDE */
.founder-left {
  flex: 1;
  text-align: center;
}

.founder-left img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 6px solid #002147;
  box-shadow: 0 20px 48px rgba(0, 33, 71, 0.22);
  animation: founderPortraitFloat 5.8s ease-in-out infinite;
}

.founder-left h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.destination {
  color: #0056b3;
  font-weight: 500;
}

/* RIGHT SIDE */
.founder-right {
  flex: 2;
}

.founder-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #002147;
}

.founder-right p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

/*WHO WE ARE & WHY CHOOSE US*/
.about-choose {
  padding: 80px 8%;
  background: transparent;
}

.about-container {
  display: flex;
  gap: 50px;
  perspective: 1200px;
}

.about-box {
  flex: 1;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.about-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #002147;
  text-align: center;
}

.about-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.about-box img {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.about-box img:hover {
  transform: rotateY(-7deg) translateY(-6px) scale(1.03);
  filter: saturate(1.04);
}

/*WHO WE ARE*/
.how-we-help {
    padding: 80px 20px;
    background: transparent;
    text-align: center;
}

.how-we-help h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #002147;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.help-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.94));
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(0, 33, 71, 0.08);
}

.help-box:hover {
    transform: translateY(-10px) rotateX(4deg);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
}

.help-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.help-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002147;
}

.help-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

/* 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 p1, .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; }
}

@keyframes founderPortraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/*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 */
@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;
    width: 100%;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: #f4f4f4;
  }

  .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;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }

  .whatsapp-btn svg {
    width: 34px;
    height: 34px;
  }

  .whatsapp-popup {
    right: 0;
    bottom: 68px;
    width: 220px;
  }

  .story-container,
  .founder-container {
    flex-direction: column;
  }

  .vm-container,
  .about-container {
    flex-direction: column;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .story-text h2,
  .founder-right h2,
  .how-we-help h2 {
    font-size: 1.8rem;
  }

  .story-text p,
  .founder-right p,
  .about-box p,
  .help-box p,
  .footer-col p,
  .footer-col-add p,
  .footer-col-add .office-address {
    font-size: 16px;
  }

  .story-image img,
  .founder-left img {
    width: 100%;
    height: auto;
  }

  .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;
  }

  .map iframe {
    width: 100%;
    height: 240px;
  }
}

/* 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;
  }

  .story-image img,
  .founder-left img {
    animation: none;
    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;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 14px 24px;
    gap: 16px;
  }

  .nav {
    flex: 1;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .story-container,
  .founder-container {
    flex-direction: column;
  }

  .vm-container,
  .about-container {
    gap: 24px;
  }

  .help-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    width: calc(100% - 48px);
    gap: 30px;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
  }

  .map iframe {
    width: 100%;
    height: 260px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .container {
    max-width: 96%;
    padding: 15px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .story-container,
  .founder-container {
    gap: 32px;
  }

  .footer-container {
    width: 94%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }

  .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 p1, .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; } }




