body{
margin:0;
padding-top:90px;
}
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
html, body {
  font-family: 'Libre Baskerville', serif;
}
h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
}

button,
.btn,
.navbar,
.navbar-brand,
.nav-link {
  font-family: 'Rethink Sans', sans-serif;
}

/* Brand name */
.navbar-brand {
  font-size: 1.55rem;   
  font-weight: 800;     
  letter-spacing: 0.4px;
  color: #ffffff !important;
}

/* Nav links */
.navbar .nav-link {
  font-size: 1.1rem;    
  font-weight: 800;    
  color: #ffffff !important;
  padding: 0.75rem 1rem;
}

/* Hover / Active */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  opacity: 0.85;
}

/* Dropdown caret */
.navbar .dropdown-toggle::after {
  transform: scale(1.2);
  margin-left: 6px;
  filter: brightness(0) invert(1);
}

/* Request a Demo button */
.navbar .btn-warning {
  font-size: 1rem;
  font-weight: 800;
  padding: 0.6rem 1.3rem;
}
@media (max-width: 992px){
  .navbar-brand{
    font-size: 1.3rem;
  }

  .navbar .nav-link{
    font-size: 1.05rem;
  }
}

/* ================= SPINNER ================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.startup-spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(34, 193, 195, 0.3);
  border-top: 6px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ================= HERO LOTTIE ================= */

.hero-lottie-wrapper{
  position: relative;
  width: 100%;
  height: 420px;
}

.hero-lottie{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-lottie.active{
  opacity: 1;
}

.hero-lottie lottie-player{
  width: 100%;
  height: 100%;
}

@media (max-width: 992px){
  .hero-lottie-wrapper{
    height: 320px;
    margin-top: 40px;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(90deg, #0056b3, #003d80);
  position: relative;
  z-index: 100;
}

.bg-gradient-custom {
  background: linear-gradient(90deg, #0056b3 0%, #003d80 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* Desktop navbar only */
@media (min-width: 992px) {
  .navbar {
    height: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: auto; /* Keeps logo left, button right */
}

/* Logo image */
.navbar-logo {
  height: 200px !important; 
  width: auto;
  display: block;
  margin: -40px 0; /* This "tricks" the navbar into thinking the logo is shorter than it is */
}

/* Company name */
.company-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff !important;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

.dropdown-menu {
  background: #ffffff; /* White background */
  border-radius: 10px;
  border: 1px solid #e5e7eb; /* Light gray border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Soft shadow */
}

/* Dropdown text */
.dropdown-item {
  color: #333333; /* Dark text for readability */
  font-weight: 500;
}

/* Hover */
.dropdown-item:hover {
  background: #f3f4f6; /* Light gray hover */
  color: #000000;
}


/* CTA Button */
.demo-btn {
  background: #ffd700;
  color: #000;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  background: #ffb300;
  transform: scale(1.05);
}
body{
font-family:Segoe UI;
background:#f6f8fc;
margin:0;
}



/* HERO */

.hero{

background:linear-gradient(135deg,#1a5aa6,#114d8c,#0b3e73);

color:white;

padding:100px 20px;

text-align:center;

}


.hero h1{

font-size:44px;
font-weight:700;

}


.hero p{

font-size:18px;

opacity:0.9;

}



/* SECTION TITLE */

.sectionTitle{

text-align:center;

margin-top:50px;

color:#1a5aa6;

font-weight:700;

}



/* JOB CARD */

.jobCard{

background:white;

border-radius:12px;

padding:25px;

margin-top:25px;

box-shadow:0px 5px 20px rgba(0,0,0,0.1);

}



.jobHeader{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:10px;

}



.jobTitle{

font-size:22px;

font-weight:700;

color:#1a5aa6;

}



/* APPLY */

.applyBtn{

background:#1a5aa6;

color:white;

padding:8px 20px;

border-radius:25px;

text-decoration:none;

font-weight:600;

}


.applyBtn:hover{

background:#0b3e73;

color:white;

}



/* DETAILS */

.details{

display:none;

margin-top:10px;

}


.jobActions{

display:flex;

flex-direction:column;

align-items:center;

gap:10px;

}



.viewBtn{

border:none;

background:none;

color:#1a5aa6;

font-weight:600;

cursor:pointer;

}
.jobDesc{

margin-top:8px;

color:#555;

font-size:15px;

line-height:1.6;

max-width:700px;

}

/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:32px;
}

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

}

.sg-footer {
  background: linear-gradient(90deg, #003d80 0%, #002855 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft glow */
.sg-footer::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -160px;
  top: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}

.sg-footer::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -170px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}

/* Brand */
.sg-footer-brand {
  font-size: 1.9rem;
  letter-spacing: 1px;
}

/* Titles */
.sg-footer-title {
  font-weight: 700;
  color: #ffffff;
}

/* Text */
.sg-footer-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Email */
.sg-footer-email {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.sg-footer-email:hover {
  color: #ffe600;
}

/* Links */
.sg-footer-list li {
  margin-bottom: 10px;
}

.sg-footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.sg-footer-link:hover {
  color: #ffe600;
  transform: translateX(4px);
}

/* Social Buttons */
.sg-social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.sg-social-btn:hover {
  background: #ffe600;
  color: #003d80;
  transform: translateY(-4px) scale(1.05);
}

/* Divider */
.sg-footer-divider {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Bottom text */
.sg-footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
}


/* Responsive */
@media (max-width: 768px) {
  .sg-footer {
    text-align: center;
  }
  .sg-footer-socials {
    justify-content: center;
  }
}
/* ================= FOOTER MAP ================= */

.footer-map-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.footer-map {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* Location dots */
.map-dot {
  fill: #ffe600;
  stroke: rgba(255, 230, 0, 0.6);
  stroke-width: 6;
  animation: pulse 2s infinite;
}

/* Location labels */
.map-label {
  fill: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}

/* Connecting line */
.map-line {
  stroke: #ffe600;
  stroke-width: 2;
  stroke-dasharray: 6;
  opacity: 0.8;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    r: 6;
    opacity: 1;
  }
  70% {
    r: 12;
    opacity: 0;
  }
  100% {
    r: 6;
    opacity: 1;
  }
}


/* ================= FOOTER MAP ================= */

#footer-map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0b2f5b; /* fallback */
}

/* Remove Leaflet default background lines */
.leaflet-container {
  background: transparent;
  font-family: inherit;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.leaflet-popup-tip {
  background: rgba(0, 0, 0, 0.85);
}

.leaflet-popup-content {
  margin: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}


.leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
}

.leaflet-control-zoom a:hover {
  background: #ffe600;
  color: #003d80;
}

/* Hide attribution if needed */
.leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.6;
}
.hero{
margin-top:0 !important;
border-top:none !important;
}

nav{
margin-bottom:0 !important;
border-bottom:none !important;
}

body{
margin:0;
padding:0;
}
@media(max-width:768px){

body{
padding-top:110px;
}

}
.sg-footer-brand{
margin-bottom:0 !important;
line-height:0;
}

.footer-logo{
max-width:230px;
height:auto;
display:block;
margin-bottom:2px;
}

.sg-footer-text{
margin-top:0;
}
.sg-footer .col-lg-2,
.sg-footer .col-lg-3 {
  text-align: left;
}

.sg-footer-list {
  padding-left: 0;
}

.sg-footer-list li {
  text-align: left;
}
.sg-footer-text{
  text-align: left;
  line-height: 1.8;
  max-width: 420px;
}