
:root {
  --primary: #2563eb;   
  --accent: #0ea5e9;    
  --text: #0f172a;      
  --light: #f8fafc;     
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(120deg, #eef3fb, #ffffff);
}


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

/* Navbar height */
.navbar {
  height: 80px;                
  
}

/* Brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
  padding: 0;
}

/* Logo image */
.navbar-logo {
  height: 210px;                 
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

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

/* ===== BLUE DROPDOWN MENU ===== */

.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);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .navbar {
    height: auto;
    padding: 10px 20px;
  }

  .navbar-logo {
    height: 44px;
  }

  .company-name {
    display: none;
  }

  .navbar-nav {
    padding-top: 12px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px;
  }
}
* {
  box-sizing: border-box;
}



.demo-wrapper {
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.demo-container {
  width: 1100px;
  background: #ffffff;
  border-radius: 26px;
  display: flex;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* LEFT */
.demo-left {
  width: 60%;
  padding: 48px;
}

.demo-left h1 {
  font-size: 36px;
  font-weight: 800;
}

.demo-left h1 span {
  color: #2563eb;
}

.subtitle {
  color: #64748b;
  margin: 8px 0 30px;
}

/* INPUTS */
.field {
  position: relative;
  margin-bottom: 18px;
}

.field i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563eb;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px 14px 50px;
  font-size: 15px;
}

.field textarea {
  height: 120px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

/* RIGHT */
.demo-right {
  width: 40%;
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
  padding: 48px;
}

.demo-right h3 {
  font-weight: 800;
}

.demo-right p {
  color: #64748b;
  margin-bottom: 22px;
}

.illustration-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

lottie-player {
  width: 100%;
  height: 260px;
}

/* CONTACT */
.contact p {
  margin-top: 14px;
  font-weight: 600;
  color: #334155;
}

.contact i {
  color: #2563eb;
  margin-right: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .demo-container {
    flex-direction: column;
  }

  .demo-left,
  .demo-right {
    width: 100%;
    padding: 32px;
  }
}

/* Button */
.btn-demo {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 28px rgba(31, 79, 216, 0.22);
  transition: 0.25s ease;
}

.btn-demo:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/*  Success box */
.success-box {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(17, 109, 112, 0.10);
  border: 1px solid rgba(17, 109, 112, 0.30);
  color: var(--accent);
  font-weight: 700;
}

/* RIGHT SIDE */
.right-side {
  padding: 42px;
  background: linear-gradient(135deg, rgba(31, 79, 216, 0.12), rgba(17, 109, 112, 0.14));
  border-left: 1px solid rgba(17, 109, 112, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-title {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.right-desc {
  color: #5a6772;
  margin-bottom: 18px;
  line-height: 1.55;
}

/*  Lottie container fix */
.lottie-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(31, 79, 216, 0.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottie-box lottie-player {
  width: 100% !important;
  height: 260px !important;
}

.reach-info {
  margin-top: 16px;
  font-weight: 600;
  color: #334155;
}

.reach-info i {
  color: var(--primary);
}



.next-step-section {
  padding: 80px 0;
}

.next-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 36px;
}

/* Button container */
.next-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

/* Base button */
.next-step-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #22c1c3);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Slight emphasis for primary CTA */
.next-step-btn.highlight {
  padding: 14px 42px;
}

/* Hover */
.next-step-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .next-step-actions {
    gap: 18px;
  }

  .next-step-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}



/* ================= ANIMATIONS (REVEAL ON SCROLL) ================= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

/*  When active */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/*  Smooth delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

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

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .footer-map {
    max-width: 360px;
  }

  .map-label {
    font-size: 12px;
  }
}
/* ================= 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;
}

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

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  #footer-map {
    height: 180px;
    border-radius: 10px;
  }
}
/* ================= UPDATED COMPACT MOBILE NAVBAR ================= */

@media (max-width: 991px) {

  /* 1. Reduce overall navbar height and padding */
  .navbar {
    height: auto;          /* Changed from 60px to auto for better fit */
    min-height: 50px;      /* Ensures it doesn't collapse too much */
    padding: 2px 15px;     /* Tightened top/bottom padding */
  }

  /* 2. Scale the logo down to fit the tighter space */
  .navbar-logo {
    height: 60px;          /* Reduced from 80px to move everything "up" */
    width: auto;
    margin-top: -5px;      /* Slight negative margin to pull it up if needed */
    margin-bottom: -5px;
  }

  /* 3. Adjust the toggler (hamburger icon) alignment */
  .navbar-toggler {
    padding: 2px 6px;
    margin-top: 0;         /* Ensures it stays centered with the logo */
  }

  /* 4. Remove extra top margin from the dropdown */
  .navbar-collapse {
    background: linear-gradient(180deg,#003d80,#002855);
    border-radius: 10px;
    padding: 15px;
    margin-top: 5px;       /* Reduced from 8px */
  }

  /* 5. Adjust the Story section top padding */
  /* This prevents the text below from feeling too far from the header */
  .section {
    padding: 40px 0;       /* Reduced from 90px for mobile */
  }
}
.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;
}


@media (max-width: 991px) {

  /* 1. Reduce overall navbar height and padding */
  .navbar {
    height: auto;
    min-height: 50px;
    padding: 2px 15px;
  }

  /* 2. Scale the logo */
  .navbar-logo {
    height: 95px;
    width: auto;
    margin-top: -5px;
    margin-bottom: -5px;
  }

  /* 3. Dropdown styling */
  .navbar-collapse {
    background: linear-gradient(180deg,#003d80,#002855);
    border-radius: 10px;
    padding: 15px;
    margin-top: 5px;
  }

  /* 4. MOVE "OUR STORY" DOWN HERE */
  /* We increase the top padding to create breathing room below the navbar */
  .section {
    padding-top: 80px;    /* Increased from 40px to move text down */
    padding-bottom: 40px;
  }

  /* Specifically target the story heading if needed */
  .story h1 {
    margin-top: 20px;
    font-size: 2.2rem;   /* Slightly smaller font for better mobile fit */
  }
}
.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;
}