/* 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;                
  padding-top: 0;
  padding-bottom: 0;
}

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

/* Dropdown */
.dropdown-menu {
  background: rgba(0,0,0,0.85);
  border-radius: 10px;
  border: none;
}

.dropdown-item {
  color: #ffffff;
}

.dropdown-item:hover {
  background: #00d4ff;
  color: #000;
}

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


/* ================= HERO SECTION ================= */

.hero-section {
  background: #f2f4f7;  /* exact soft grey tone */
  padding: 160px 0 130px; /* space for fixed navbar */
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Lottie Card */
.hero-lottie-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-lottie-card lottie-player {
  width: 100%;
  max-width: 420px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero-section {
    text-align: center;
    padding: 130px 0 90px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    margin: 0 auto 28px;
  }

  .hero-lottie-card {
    margin-top: 45px;
    padding: 35px;
  }
}
/* Page Background */

body{
background:#f3f3f3;
font-family: 'Segoe UI', sans-serif;
}


/* Section spacing */

.industry-section{
padding:70px 0;
}


/* Card */

.industry-card{
background:#ffffff;
border:1px solid #e5e5e5;
border-radius:6px;
overflow:hidden;
height:100%;
transition:0.3s;
}


/* Hover effect */

.industry-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* Image */

/* Image */

.industry-card img{
display:block;
margin-left:auto;
margin-right:auto;
width:100%;
max-width:320px;   /* keeps images nicely centered */
height:220px;
object-fit:cover;
border-radius:4px;
}
.industry-card{
text-align:center;
}


/* Card body */

.industry-card-body{
padding:20px;
}


/* Title */

.industry-card h5{
font-size:18px;
font-weight:600;
margin-bottom:12px;
color:#222;
}


/* Paragraph */

.industry-card p{
font-size:14px;
color:#666;
line-height:1.8;
}


/* Responsive */

@media(max-width:992px){

.industry-card img{
height:200px;
}

}

@media(max-width:768px){

.industry-section{
padding:40px 0;
}

.industry-card img{
height:180px;
}

}
/* HERO SECTION */

.industry-hero{
padding:100px 0;
background:#ffffff;
}

/* Left Content */

.hero-content{
padding-right:30px;
}

/* Title */

.hero-title{
font-size:48px;
font-weight:700;
color:#0f172a;
margin-bottom:20px;
}

/* Text */

.hero-text{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:30px;
}

/* Button */

.hero-btn{
display:inline-block;
background:#2563eb;
color:#fff;
padding:12px 30px;
border-radius:6px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.hero-btn:hover{
background:#1d4ed8;
color:#fff;
}

/* Lottie animation container */

.hero-animation{
display:flex;
justify-content:center;
align-items:center;
}

/* Responsive */

@media(max-width:992px){

.hero-title{
font-size:38px;
}

.hero-content{
text-align:center;
padding-right:0;
margin-bottom:40px;
}

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