/* -------------------------------------------------- */
/* RESET + GLOBAL                                      */
/* -------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #2f2f2f;
  background: #ffffff;
  overflow-x: hidden;
  padding-top: 100px; /* space for fixed header */
}

img {
  max-width: 100%;
  display: block;
}

/* -------------------------------------------------- */
/* HEADER (FIXED)                                      */
/* -------------------------------------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fcfcfc;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
}

/* Logo */
header .logo {
  position: relative;
  margin-top: 50px;
}

header .logo img {
  width: 160px;
  height: auto;
}

/* -------------------------------------------------- */
/* DESKTOP NAV                                         */
/* -------------------------------------------------- */

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }

  .desktop-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #1f4d40;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

/* Underline hover */
.desktop-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #88d4c0;
  transition: width 0.25s ease;
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

/* Active */
.desktop-nav ul li a.active {
  font-weight: 600;
}

.desktop-nav ul li a.active::after {
  width: 100%;
}

/* -------------------------------------------------- */
/* LANGUAGE DROPDOWN (DESKTOP)                        */
/* -------------------------------------------------- */

.lang-dropdown {
  position: relative;
}

.lang-dropdown > a {
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: 28px;
  right: 0;
  background: #ffffff;
  min-width: 130px;
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 200;
  list-style: none;
}

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

.lang-menu li a {
  padding: 10px 15px;
  display: block;
  font-size: 14px;
  color: #1f4d40;
  text-decoration: none;
}

.lang-menu li a:hover {
  background: #e8f5f1;
}

/* -------------------------------------------------- */
/* MOBILE MENU BUTTON                                 */
/* -------------------------------------------------- */

.menu-btn {
  font-size: 28px;
  cursor: pointer;
  z-index: 9999;
}

/* Hide burger on desktop */
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* -------------------------------------------------- */
/* MOBILE HEADER BEHAVIOUR                            */
/* -------------------------------------------------- */

@media (max-width: 767.98px) {
  /* center logo on mobile, burger on right */
  header {
    justify-content: center;
  }

  header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-btn {
    position: absolute;
    right: 20px;
    top: 32px;
  }
}

/* -------------------------------------------------- */
/* MOBILE NAV (OVERLAY PANEL)                         */
/* -------------------------------------------------- */

.mobile-nav {
  position: fixed;
  top: 100px; /* directly under header */
  left: 0;
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow-y: auto;

  background: #ffffff;
  border-top: 1px solid #eee;
  display: none;

  z-index: 9998;
}

.mobile-nav.open {
  display: block;
  animation: fadeMenu 0.25s ease-out;
}

@keyframes fadeMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
  list-style: none;
  padding: 15px 20px;
}

.mobile-nav ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
}

.mobile-nav ul li a {
  font-size: 17px;
  color: #1f4d40;
  text-decoration: none;
  display: block;
}

/* Mobile language block (only inside mobile nav) */
.mobile-lang-title {
  padding: 12px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #1f4d40;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.mobile-lang-menu {
  padding-left: 20px;
  display: none;
}

.mobile-lang.open .mobile-lang-menu {
  display: block;
}

.mobile-lang-menu li a {
  padding: 10px 0;
  display: block;
  color: #1f4d40;
}

/* Hide mobile nav / mobile language completely on desktop */
@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

/* -------------------------------------------------- */
/* HERO SLIDER                                        */
/* -------------------------------------------------- */

.adr-slider {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}

.adr-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.adr-slide.active {
  opacity: 1;
}

.adr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider arrows */
.adr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  z-index: 50;
}

.adr-arrow:hover {
  background: rgba(0,0,0,0.6);
}

.adr-arrow.left { left: 20px; }
.adr-arrow.right { right: 20px; }

/* Dots */
.adr-dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 60;
}

.adr-dots button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.adr-dots button.active {
  background: #ffffff;
}

/* -------------------------------------------------- */
/* SLIDER OVERLAY                                     */
/* -------------------------------------------------- */

.adr-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 20px;
  color: #fff;

  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.4)
  );

  pointer-events: none;
}

.adr-overlay h1 {
  font-size: 2.6rem;
  font-weight: 600;
}

.adr-overlay p {
  font-size: 1.2rem;
  max-width: 620px;
  margin: 12px 0 22px;
}

.adr-cta {
  pointer-events: auto;
  padding: 12px 28px;
  background: #88d4c0;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

/* -------------------------------------------------- */
/* RESPONSIVE SLIDER                                  */
/* -------------------------------------------------- */

@media (max-width: 768px) {
  .adr-slider { height: 360px; }

  .adr-overlay h1 { 
    font-size: 1.4rem;
  }
}
 
@media (max-width: 480px) {
  .adr-slider { height: 340px;}
    
.adr-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.4)
  ); 
  pointer-events: none;
}    
  .adr-overlay p {
  font-size: 1.2rem;
  max-width: 220px !important;
  margin: 12px 0 22px;
}
  .adr-overlay h1 { font-size: 1.2rem !important; }
}

/* -------------------------------------------------- */
/* SECTIONS + FOOTER                                  */
/* -------------------------------------------------- */

.hero {
  padding: 60px 20px;
  background: #e8f5f1;
  text-align: center;
}

.section {
  max-width: 1440px;
  margin: 50px auto;
  padding: 0 20px;
  border-radius: 25px;
}

.placeholder {
  height: 180px;
  background: #f4f4f4;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  text-align: center;
  background: #f7f7f7;
  padding: 22px;
  margin-top: 60px;
  color: #777;
}

/* -------------------------------------------------- */
/* FLOATING TOP RIGHT LANGUAGE SWITCHER               */
/* -------------------------------------------------- */

.lang-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 99999;

  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;

  padding: 4px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
}

/* Dropdown styling */
.lang-switch select {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #1f4d40;
  padding: 6px;
  cursor: pointer;
  outline: none;
  appearance: none; /* Removes default arrows */
}

/* Add custom dropdown arrow */
.lang-switch {
  position: fixed;
}

.lang-switch::after {
  content: "▾";
  font-size: 12px;
  color: #1f4d40;
  margin-left: -18px;
  pointer-events: none;
}

/* OPTION LIST STYLE */
.lang-switch select option {
  padding: 8px;
  font-size: 14px;
}

/* Hover effect */
.lang-switch:hover {
  border-color: #bbb;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* OPTIONAL: Hide floating selector on mobile, use mobile menu instead */
@media (max-width: 768px) {
  .lang-switch {
    display: none;
  }
}
/* -------------------------------------------------- */
/* MAIN MENU — REFINED DESKTOP STYLE                   */
/* -------------------------------------------------- */

.desktop-nav ul {
    display: flex;
    gap: 36px;                 /* more elegant spacing */
    list-style: none;
    align-items: center;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #1f4d40;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;           /* better click area */
    position: relative;
    transition: color 0.25s ease;
}

.desktop-nav ul li a:hover {
    color: #3b7d6b;
}

/* Refined underline */
.desktop-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #88d4c0;
    transition: width 0.25s ease;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Active link */
.desktop-nav ul li a.active {
    font-weight: 600;
}

.desktop-nav ul li a.active::after {
    width: 100%;
}


/* -------------------------------------------------- */
/* FLOATING LANGUAGE SWITCHER                          */
/* -------------------------------------------------- */

/* DESKTOP (top-right) */
.lang-switch {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 99999;

    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);

    display: flex;
    align-items: center;
}

/* Dropdown */
.lang-switch select {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #1f4d40;
    padding: 6px 16px 6px 6px;
    cursor: pointer;
    outline: none;
    appearance: none;
}

/* Custom arrow */
.lang-switch::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #1f4d40;
    pointer-events: none;
}


/* -------------------------------------------------- */
/* MOBILE — MOVE SWITCHER TO TOP-LEFT                  */
/* -------------------------------------------------- */

@media (max-width: 768px) {
    .lang-switch {
        top: 10px;
        left: 10px;
        right: auto;      /* STOP sticking to the right */
        padding: 3px 6px;
        transform: scale(0.95);
    }

    /* cleaner arrow on mobile */
    .lang-switch::after {
        right: 6px;
    }
}


/* -------------------------------------------------- */
/* MOBILE HEADER — CENTER LOGO FIX                     */
/* -------------------------------------------------- */

@media (max-width: 768px) {
    header {
        justify-content: center;
    }

    header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-btn {
        position: absolute;
        right: 22px;
        top: 34px;
    }
}
/* Give desktop menu breathing room so it never collides with lang switcher */
.desktop-nav {
    padding-right: 140px;   /* adjust as needed */
}

/* Align menu items to the center of the header */
.desktop-nav ul {
    align-items: center;
}

/* Ensure header items align nicely on desktop */
@media (min-width: 768px) {
    header {
        align-items: center;
    }
}
@media (min-width: 768px) {
    .lang-switch {
        top: 32px;    /* matches menu height visually */
    }
}

@media (max-width: 768px) {
    .lang-switch {
        top: 35px;    /* matches menu height visually */
    }
}
/* ==============================
   BACK TO TOP BUTTON
   ============================== */
#backToTop {
  position: fixed;
  
  bottom: 35px;
  right: 35px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--black) !important;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(168,220,84,0.4);
  z-index: 1000;
}

#backToTop:hover {
  background: #eee;
  box-shadow: #ddd;
    color: #FFF;
}

#backToTop.show {
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0);
}

/* hidden default state */
#backToTop:not(.show) {
  transform: translateY(60px);
}

/* mobile tweaks */
@media (max-width: 600px) {
  #backToTop {
    width: 44px;
    height: 44px;
    bottom: 25px;
    right: 20px;
    font-size: 1.2rem;
  }
}


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


h1, h2, h3, h4, h5, h6{
    margin-top: 10px;
    margin-bottom: 10px;  
}
.textcenter{text-align:center;}
/* ============================== */
/* FOOTER                         */
/* ============================== */

.adr-footer {
  background: #f7f7f7;
  padding: 60px 20px 60px;
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
 
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #00a78e; /* ADR teal accent */
} 

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #777;
    background-color: #121212;
    width: 100%;
    
}
 
/* ============================== */
/* RESPONSIVE FOOTER              */
/* ============================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4 {
    margin-top: 20px;
  }
}

/* Two Column Layout */
.two-col-section {
  max-width: 1440px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 20px;
}

.two-col-section .col {
  background: #fff;
    border-radius: 25px;
}

.two-col-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.two-col-section h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.two-col-section p {
  line-height: 1.7;
  color: #444;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .two-col-section {
    grid-template-columns: 1fr;
  }
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
    margin: 20px auto !important; 
}

.how-step i {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  color: #1f4d40;
  text-align: center;
    margin: 10px auto !important;
}
 
.how-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.how-step p {
  margin: 0;      
}

 

 
.cta-strip {
  text-align: center;
  padding: 60px 20px;
  background: #1f4d40;
  color: #ffffff;
  border-radius: 18px;
  max-width: 1100px;
  margin: 40px auto 60px;
}

.cta-strip h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-strip p {
  font-size: 18px;
  margin-bottom: 22px;
}

.cta-button {
  background: #88d4c0;
  padding: 14px 32px;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.2s;
}

.cta-button:hover {
  background: #7ac9b4;
}
