/* ===== FORCE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* =========================== 
   RESET AND BASE STYLES
=========================== */
* {margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif;}
:root {--amethyst: #7e22ce;--orange: #ffcc99;}

/* ===========================
   HEADER
=========================== */
header {
  background: var(--amethyst); width: 100%; }
.navbar {max-width: 1200px; margin: auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between;}

/* LOGO */
.logo img {height: 48px;}

/* ===========================
   NAVIGATION
=========================== */
.nav-links,
.nav-links ul,
.dropdown-menu {
  list-style: none; /* removes bullets */
   padding: 0; margin: 0;}
.nav-links {
  display: flex; gap: 22px;}
.nav-links li { position: relative;}
.nav-links a {color: white;text-decoration: none;padding: 8px;transition: color 0.3s ease;font-weight: bold;     /* Make text bold */}
/* Top-level hover color */
.nav-links a:hover {color: #FF6600;}

/* ===========================
   DROPDOWN MENUS
=========================== */
.dropdown-menu {display: none; position: absolute; top: 100%; left: 0; background: #c91f1f; /* Black dropdown background */ min-width: 300px;    /* Big width */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); padding: 10px 0; z-index: 1000;}

.dropdown-menu li a {
  color: #ffffff;        /* White text for dropdown items */
  font-size: 16px;       /* Bigger text */
  font-weight: 500;
  padding: 14px 22px;    /* Big clickable area */
  display: block;
  line-height: 1.4;
  transition: all 0.3s ease;
   border-top: 3px solid #7e22ce; /* Purple line on top */
}

.dropdown-menu li a:hover {
  background: var(--orange); /* Light orange hover */
  color: #000000;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* DROPDOWN ARROW */
.dropdown > a {
  position: relative;
  padding-right: 22px;
}

.dropdown > a::after {
  content: "▼";
  font-size: 11px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ===========================
   HAMBURGER MENU (MOBILE)
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

/* ===========================
   MOBILE STYLES
=========================== */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--amethyst);
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    background: #000000;
    box-shadow: none;
    padding-left: 0;
  }

  .dropdown-menu li a {
    color: #ffffff;
    padding-left: 40px;
    font-size: 16px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    font-size: 14px;
    right: 10px;
  }
}

/* ===========================
   SECTION HEADINGS
=========================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--amethyst);
}
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  padding: 12px 25px;
  background: #FF6600;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #e55a00;
}

.btn-outline {
  border: 2px solid #FF6600;
  color: #FF6600;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #FF6600;
  color: #fff;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--amethyst);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.fade-in.delay-1 { transition-delay: 0.3s; }
.fade-in.delay-2 { transition-delay: 0.6s; }

.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ===========================
  CONTACT SECTION
=========================== */

   /* ===== HERO IMAGE FULL PAGE ===== */

/* ===== HERO IMAGE FULL PAGE ===== */
/* ===== FULL PAGE HERO IMAGE (FORCED) ===== */
/* ===== FULL PAGE HERO IMAGE – FIXED ===== */
/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* ===== HERO FULL SCREEN ===== */
/* ===== HERO IMAGE FULL SCREEN (FINAL) ===== */
.hero-image {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero-text {
  color: #ffffff;/* ===== texts colour inHERO FULL SCREEN ===== */
  max-width: 900px;/* ===== texts size inHERO FULL SCREEN ===== */
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 5px solid #7e22ce;
}

.contact-form h2 {
  color: #7e22ce;
  margin-bottom: 10px;
}

.contact-form h4 {
  margin-bottom: 25px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 2px solid #ccb2b2;
  border-radius: 6px;
}

.contact-form button {
  background: #7e22ce;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Dropdown (Select) Styling */
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* contact Custom dropdown arrow */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

/* contact Focus state */
.contact-form select:focus {
  border-color: #9966cc; /* Amethyst */
  outline: none;
  box-shadow: 0 0 0 2px rgba(153, 102, 204, 0.2);
}

/* Disabled option (placeholder) */
.contact-form select option:disabled {
  color: #999;
}

/* ===== END OF  CONTACT SECTION ===== / CONTACT*/

/* ===== Directors  image section  =====/ Leadership Team*/
.team-section { padding: 60px 20px; background: white; text-align: center;}
.team-section .section-title { font-size: 36px;color: #7e22ce; margin-bottom: 40px;}
.team-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;justify-items: center;}
.director-card {position: relative; width: 370px; height: 370px; overflow: hidden; border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; transition: transform 0.3s ease;}
.director-card img { width: 100%;height: 100%; object-fit: cover; transition: transform 0.3s ease}
.director-card:hover img { transform: scale(1.1)}
.overlay { position: absolute; bottom: 0; left: 0; right: 0; background: #b28dff; color: #fff; padding: 20px; text-align: center;transform: translateY(100%);transition: transform 0.3s ease;}
.director-card:hover .overlay {transform: translateY(0)}
.overlay h3 { margin: 0 0 10px 0; font-size: 20px;}
.overlay p { margin: 0;font-size: 14px;}
/* ===== END OF Directors  image section  =====/ Leadership Team*/


/* ===== The text background colour =====/ Core Values*/
.contact-section-full {
  background-color: #C5B4E3; 
  color: #ffffff;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 80px 20px;
}
/* =====END OF The text background colour =====/ Core Values*/


/* Sections */
section { padding: 60px 20px; max-width: 1200px; margin: auto; }
h2 { font-size: 2rem; color:#9063CD; margin-bottom: 30px; text-align: center; }

/* Sections   H5 h6*/

h5 { font-size: 18px; color:#C724B1; margin-bottom: 30px; text-align:; }
h6 { font-size: 30px; color:#e5e7eb; margin-bottom: 30px; text-align:; }

/* Full Text section*//* Full Text section*//* Full Text section*//* Full Text section*/
.full-text {
  width: 100%;
  margin: 0;
  padding: 5px;
  font-family:  'Montserrat','Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #374151;
}
.about-container {
  margin-top: -80px; /* moves the text up */
}


/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { background: #f9f9f9; padding: 25px; border-radius: 12px; text-align: center; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.why-card { background: #C724B1; color: #fff; padding: 20px; border-radius: 10px; text-align: center; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 20px; }
.project-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.1); transition: 0.3s; }
.project-card img { width: 100%; height: 200px; object-fit: cover; }
.project-card:hover { transform: translateY(-5px); }


/* ===== This is the SMALL CONTACT THE APPEAR IN EVERY PAGE ===== */
  .btn-orange {display: inline-block; background-color: #ff7a00; /* Orange */color: #ffffff;
  padding: 14px 32px;font-size: 16px; font-weight: 600;text-decoration: none;border-radius: 30px; transition: all 0.3s ease;}
.btn-orange:hover {
  background-color: #e66a00; /* Darker orange */
  transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);}
/* ===== END OF This is the SMALL CONTACT THE APPEAR IN EVERY PAGE ===== */

 /* THIS FOR LOWER MOVING IMAGES PAGE (Partnership)  --> */
.bottom.partnership {background: #f5f5f5; padding: 40px 20px; text-align: center;}
.section-title { font-size: 22px; margin-bottom: 25px; letter-spacing: 2px;}
/* Slider container */
.slider-container { overflow: hidden; width: 100%}
/* Moving track */
.slider-track { display: flex; gap: 40px; animation: scroll-horizontal 20s linear infinite;}
/* Individual item */
.partnership-item { min-width: 200px; text-align: center;}
.partnership-item img { width: 120px; height: auto;margin-bottom: 10px;}
.partnership-item p { font-size: 14px; font-weight: bold;}
/* Animation */
@keyframes scroll-horizontal {0% {transform: translateX(0);} 100% {transform: translateX(-50%);}}
 /* END OF THIS FOR LOWER MOVING IMAGES PAGE (Partnership)  --> */


/* ===== SUB FOOTER SOCIAL MEDIA ===== */
.footer-social a i {
  font-size: 40px;          /* Bigger icons */
  letter-spacing: 5px;      /* Space between icons */
  transition: transform 0.3s ease;
}

.footer-social a:hover i {
  transform: scale(1.2);    /* Grow on hover */
}

/* ===== SUB FOOTER ===== */
.sub-footer {
  background: #b28dff;      /* Light purple background */
  color: white;
  padding: 40px 20px;

}

.sub-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;                /* Space between columns */
  flex-wrap: wrap;           /* Wrap on small screens */
}

.sub-footer-col {
  flex: 1;                   /* Equal width columns */
  min-width: 250px;          /* Prevent columns from getting too small */
}

.sub-footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.sub-footer p,
.sub-footer a {
  font-size: 14px;
  color: white;
  text-decoration: none;
}

.sub-footer ul {
  list-style: none;           /* Remove bullet points */
  padding: 0;
  margin: 0;
}

.sub-footer ul li {
  margin-bottom: 8px;
}

.sub-footer a:hover {
  color: #FF6600;             /* Orange hover */
  text-decoration: none;      /* Remove underline */
}

/* ===== FOOTER ===== */
footer {
  background: #7e22ce;
  color: #fff;
  padding: 25px 20px;
  text-align: center;
}

/* ===== FADE-IN ANIMATION =====HOME PAGE/ */
.fade-in-section,
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
   color: white; /* black */
}

.fade-in.delay-1 { transition-delay: 0.3s; }
.fade-in.delay-2 { transition-delay: 0.6s; }
.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sub-footer-container {
    flex-direction: column;
    gap: 25px;               /* Space between stacked columns */
  }

  header nav ul {
    display: none;
    flex-direction: column;
    
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  header nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* =====END OF FADE-IN ANIMATION =====HOME PAGE/ */

/* ===== MAP SECTION ===== */
.map-section {
  width: 100vw;       /* full viewport width */
  height: 55vh;      /* full viewport height */
  position: relative;
  margin: 0;          /* remove any default margin */
  padding: 0;         /* remove padding */
   max-width: 100%;             /* override global max-width */
   
}

#map {
  width: 100%;
  height: 100%;       /* fill the map-section completely */
  background-color: #7e22ce;
}

/* Loader */
.map-loader {
  position: absolute;
  inset: 0;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 500;
}

.map-loader .loader {
  border: 4px solid #e5e7eb;
  border-top: 4px solid #7e22ce;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1.2s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Leaflet popup purple theme */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #7e22ce;
  color: white;
}
/* ===== END OF MAP SECTION ===== */

/* ===== CONTACT AND MAP ===== /OFFICE LOCATION*/
.contact-section-full {
  width: 100vw;                /* full viewport width */
  min-height: 55vh;
  margin: 0;                   /* remove centering margin */
  padding: 60px 10px;          /* optional padding */
  background-color: #C5B4E3;   /* your desired color */
  box-sizing: border-box;
  max-width: 100%;             /* override global max-width */
 
}
/* Wrapper to center content */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;  /* content width */
  margin: 0 auto;
  flex-wrap: wrap;    /* wrap on smaller screens */
}

/* Contact info box */
.contact-us {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  flex: 1 1 400px; /* responsive width */
  min-width: 300px;
}

/* Contact info headings */
.contact-us h5 {
  font-size: 24px;
  color: #7e22ce;
  margin-bottom: 20px;
  text-align: center;
}

.contact-us p {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Map box */
.map-box {
  flex: 1 1 500px; /* responsive width */
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
  }

  .contact-us,
  .map-box {
    width: 100%;
    max-width: 400px;
  }
}
/* =====END OF CONTACT AND MAP ===== /OFFICE LOCATION*/



/* ===== HERO VIDEO FULL SCREEN ===== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Video fills entire screen */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text */
.hero-text {
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.hero-text h6 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #ffffff;
}

/* Button already defined, but safe fallback */
.btn-orange {
  display: inline-block;
  background: #ff7a00;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #e66a00;
  transform: translateY(-3px);
}

/* ===== CAREERS SECTION ===== / CAREERS*/
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f7f7f9;
  color: #222;
}

/* HERO */
.careers-hero {
  background: #7e22ce;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

/* SEARCH */
.careers-search {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  gap: 15px;
  padding: 0 20px;
}

.careers-search input,
.careers-search select {
  padding: 14px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* JOB CARDS */
.jobs-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.job-card {
  background: white;
  padding: 25px;
  text-decoration: none;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-4px);
}

.job-card h3 {
  margin: 0 0 8px;
}

/* JOB DETAIL */
.job-detail {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.meta {
  color: #666;
}

/* APPLY */
.apply-btn {
  display: inline-block;
  margin-top: 20px;
  background: #7e22ce;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
}

.apply-form {
  max-width: 600px;
  margin: 60px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.apply-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-form input,
.apply-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.apply-form button {
  background: #7e22ce;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* ===== END OF CAREERS SECTION ===== / CAREERS*/



/* ===== CONTACT SECTION ===== / CONTACT*/
    
/* ===== END OF  CONTACT SECTION ===== / CONTACT*/



/* ===== Full width image with overlay text, CONACT IMAGE =====/ Contact*/
/* Careers Hero */

/* ===== SERVICES (LOTUSWORKS STYLE) ===== */

/* ===== SERVICES PRO ===== */

/* ===== SERVICES PRO (FIXED FOR YOUR CSS) ===== */
/* ===== SERVICES PRO ===== */

/* Dropdown (Select) Styling */
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom dropdown arrow */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

/* Focus state */
.contact-form select:focus {
  border-color: #9966cc; /* Amethyst */
  outline: none;
  box-shadow: 0 0 0 2px rgba(153, 102, 204, 0.2);
}

/* Disabled option (placeholder) */
.contact-form select option:disabled {
  color: #999;
}
