
body{
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);
}


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

.hero-section{
  position: relative;  
  padding: 110px 0;
  background: #112283;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;          
  pointer-events: none; 
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title{
  font-size: 3rem;
  font-weight: 700;
  color: #0b1b3a;
  margin-bottom: 16px;
}

.hero-dynamic-text{
  color: #1f4ed8;
  font-weight: 700;
  margin-left: 6px;
  transition: opacity 0.4s ease;
}

.cursor{
  color: #1f4ed8;
  font-weight: 700;
  animation: blink 1s infinite;
}

@keyframes blink{
  0%,50%,100%{ opacity:1; }
  25%,75%{ opacity:0; }
}

.hero-subtext{
  color: #5f6b7a;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-btn{
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #363a89;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 999px;
}

.hero-btn:hover{
  opacity: 0.9;
}
.hero-lottie-wrapper,
.hero-lottie,
.hero-lottie lottie-player {
  pointer-events: none;
}
.hero-section .col-lg-6.reveal-left {
  position: relative;
  z-index: 5;
}
.hero-btn {
  opacity: 1 !important;
  visibility: visible !important;
}
.reveal-left {
  opacity: 1 !important;
  transform: none !important;
}

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


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

@media (max-width: 992px){
  .hero-title{
    font-size: 2.4rem;
  }

  .hero-lottie-wrapper{
    height: 320px;
    margin-top: 40px;
  }
}


  
/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  z-index: 0;
  padding: 60px 0;
  background: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Text */
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1c2a4d;
  margin-bottom: 15px;
}

#typing-text {
  color: var(--primary);
}

.cursor {
  color: var(--primary);
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-subtext {
  font-size: 1.1rem;
  color: #555;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
}

.hero-btn:hover {
  opacity: 0.9;
}


#heroCarousel{
  max-width: 650px;
  margin-left: auto;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item{
  height: 420px;
}

#heroCarousel .hero-img{
  width: 100%;
  height: 420px;
  object-fit: contain; 
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #fff;
  display: block;
}

/* ================= FEATURES SECTION ================= */

.features-section {
  background: #eaf3ff;
  padding: 80px 0;
}


.features-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

/* Feature card */
.feature-card {
  max-width: 320px;
  text-align: center;
}

/* Icon container */
.feature-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bootstrap icon inside */
.feature-icon i {
  font-size: 3rem;
  color: #ffffff;
}

/* Icon colors */
.feature-icon.academic {
  background: #6f7cf5;
}

.feature-icon.automation {
  background: #49c6f5;
}

.feature-icon.configurable {
  background: #2f6fd6;
}

/* Title */
.feature-card h5 {
  margin-top: 22px;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1c2a4d;
}

/* Text */
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Hover effect */
.feature-card:hover .feature-icon {
  transform: translateY(-6px);
  transition: transform 0.25s ease;
}





.sg-speciality {
  background: #eef4ff;
  padding: 90px 0;
}


.sg-speciality .col-lg-6.text-center{
  display: flex;
  justify-content: center;
  align-items: center;
}


.sg-lottie {
  width: 100%;
  max-width: 520px;
  height: 420px;
  display: block;
  margin: 0 auto;
}


.sg-image {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}


.sg-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1c2a4d;
  margin-bottom: 16px;
}

/* Sub-heading */
.sg-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 24px;
}

/* Text */
.sg-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 16px;
}


.sg-btn {
  margin-top: 26px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(135deg, #1f4fd8, #22c1c3);
  color: #ffffff;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.sg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 79, 216, 0.3);
  color: #ffffff;
}



@media (max-width: 576px) {
  .sg-lottie {
    max-width: 320px;
    height: 260px;
  }
}

/* Hero */
.legal-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 90px 0 70px;
}

.legal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.legal-hero h1 {
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-hero p {
  opacity: 0.9;
}

/* Content */
.legal-content {
  background: #fff;
  padding: 70px 0;
}

.legal-content h4 {
  margin-top: 40px;
  font-weight: 500;
  color: #1c2a4d;
}

.legal-content h4 i {
  color: var(--primary);
  margin-right: 8px;
}

.legal-content p,
.legal-content li {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 18px;
}


.key-highlights-section {
  background: #f8fbff;
  padding: 100px 0;
}

.section-title {
  font-family: 'Libre Baskerville', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}


.highlights-lottie-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(31, 79, 216, 0.10);
  max-width: 380px;
}


.highlights-lottie{
  width: 100%;
  height: 320px;
  display: block;
  margin: 0 auto;
}

.key-highlights-section {
  background: #f8fbff;
  padding: 100px 0;
}

/* Section heading */
.section-title {
  font-family: 'Libre Baskerville', sans-serif;
  font-size: 2.6rem;        
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.highlights-image {
  max-width: 100%;
  margin-top: 24px;
}

/* Feature card */
.kh-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;         
  height: 100%;
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon */
.kh-card i {
  font-size: 2.4rem;         
  color: #1f4fd8;
  margin-bottom: 18px;
  display: inline-block;
}

/* Card title */
.kh-card h6 {
  font-family: 'Libre Baskerville', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;        
  color: #1e293b;
  margin-bottom: 10px;
}

/* Card text */
.kh-card p {
  font-family: 'Libre Baskerville', sans-serif;
  font-size: 1rem;            
  color: #64748b;
  line-height: 1.7;
}

/* Hover effect */
.kh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.1);
}


/* UNIQUE CHARACTERISTICS SECTION */

.unique-section {
  background: #eaf3ff;
}

/* Heading */
.section-heading {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1c2a4d;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
}

/* Cards */
.unique-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Icons */
.unique-card i {
  font-size: 1.9rem;
  color: #1f4fd8;
  margin-bottom: 14px;
  display: inline-block;
}

/* Card title */
.unique-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

/* Card text */
.unique-card p {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.6;
}

/* Image */
.unique-image {
  max-width: 100%;
  animation: floatImage 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .section-heading,
  .section-subtitle {
    text-align: center;
  }

  .unique-image {
    margin-top: 30px;
  }
}
.unique-section {
  background: #eaf3ff;
}

/* Heading */
.section-heading {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1c2a4d;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
}

/* Cards */
.unique-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Icons */
.unique-card i {
  font-size: 1.9rem;
  color: #1f4fd8;
  margin-bottom: 14px;
  display: inline-block;
}

/* Card title */
.unique-card h5 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 8px;
}

/* Card text */
.unique-card p {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.6;
}

/*  Lottie Card Container */
.unique-lottie-card{
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(31, 79, 216, 0.10);
}

/*  Lottie Animation */
.unique-lottie{
  width: 100%;
  height: 420px;
  display: block;
  margin: 0 auto;
  animation: floatLottie 6s ease-in-out infinite;
}

/*  Floating animation */
@keyframes floatLottie {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .section-heading,
  .section-subtitle {
    text-align: center;
  }

  .unique-lottie-card{
    margin-top: 30px;
    max-width: 360px;
  }

  .unique-lottie{
    height: 300px;
  }
}



.partners-section {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/* LEFT TEXT */
.partners-text h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #0f2a5f;
  line-height: 1.3;
}

.partners-text .subtitle {
  font-size: 1rem;
  color: #0f2a5f;
  font-weight: 500;
  margin-top: 10px;
}

.partners-text .description {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5b78;
}

/* RIGHT SIDE */
.partners-logos-wrapper {
  position: relative;
}

/* Blue curved background */
.partners-bg {
  background: #4f6df5;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  padding: 80px 60px;
}

/* GRID */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* LOGO CARD */
.logo-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.logo-card img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

.logo-card:hover {
  transform: translateY(-6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-bg {
    border-radius: 40px;
    padding: 50px 30px;
    margin-top: 40px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .logos-grid {
    grid-template-columns: 1fr;
  }
}


/*OUR SPECIALITY*/
/* ================= PARTNER / CONTACT SLIDER ================= */

.partner-slider {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}


.partner-title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #1c2a4d;
  margin-bottom: 20px;
  line-height: 1.25;
}


.partner-text {
  font-size: 1.08rem;
  color: #475569;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 18px;
}


.partner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1f4fd8, #22c1c3);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 79, 216, 0.3);
  color: #ffffff;
}


.partner-lottie-card{
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 22px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(31, 79, 216, 0.10);
}


.partner-lottie{
  width: 100%;
  height: 420px;
  display: block;
  margin: 0 auto;
  animation: floatLottie 6s ease-in-out infinite;
}


@keyframes floatLottie {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(35%);
}


@media (max-width: 991px) {

  .partner-slider {
    padding: 60px 0;
  }

  .partner-title {
    font-size: 2.1rem;
    text-align: center;
  }

  .partner-text {
    text-align: center;
    margin: 0 auto 18px;
    font-size: 1rem;
  }

  .partner-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .partner-lottie{
    height: 320px;
    margin-top: 20px;
  }
}


@media (max-width: 575px) {

  .partner-title {
    font-size: 1.9rem;
  }

  .partner-text {
    font-size: 0.98rem;
  }

  .partner-lottie{
    height: 260px;
  }
}


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





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

.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-zoom { transform: scale(0.96); }

.reveal.show,
.reveal-up.show,
.reveal-left.show,
.reveal-right.show,
.reveal-zoom.show {
  opacity: 1;
  transform: none;
}

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


@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* =====================================================
   🔥 FINAL MOBILE FIX – iPhone 14 Pro Max (430px)
   Paste at VERY END of CSS
===================================================== */

@media (max-width: 430px) {

  /* ===== GLOBAL RESET ===== */
  html, body {
    overflow-x: hidden;
  }



/* =====================================================
   🔥 FINAL MOBILE FIX – iPhone 14 Pro Max (430px)
   Paste at VERY END of CSS
===================================================== */

@media (max-width: 430px) {

  /* ===== GLOBAL RESET ===== */
  html, body {
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* ===== NAVBAR ===== */
  .navbar {
    height: 78px !important;
    padding: 12px 18px !important;
  }

.navbar-logo {
    height: 70px !important;   /* increase this value */
    width: auto !important;
  }


  /* ===== HERO SECTION ===== */
  .hero-section {
    background: #f3f4f6 !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    text-align: center !important;
  }

  .hero-section .row {
    flex-direction: column !important;
  }

  .hero-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Heading */
  .hero-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
  }

  /* Subtext */
  .hero-subtext {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
    color: #6b7280 !important;
  }

  /* Button */
  .hero-btn {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8) !important;
  }

  /* Remove accidental extra buttons */
  .hero-section .btn + .btn {
    display: none !important;
  }

  /* Lottie */
  .hero-lottie-wrapper {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    height: auto !important;
  }

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

}
  /* ===== HERO SECTION ===== */
  .hero-section {
    background: #f3f4f6 !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    text-align: center !important;
  }

  .hero-section .row {
    flex-direction: column !important;
  }

  .hero-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Heading */
  .hero-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
  }

  /* Subtext */
  .hero-subtext {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
    color: #6b7280 !important;
  }

  /* Button */
  .hero-btn {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8) !important;
  }

  /* Remove accidental extra buttons */
  .hero-section .btn + .btn {
    display: none !important;
  }

  /* Lottie */
  .hero-lottie-wrapper {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    height: auto !important;
  }

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

}


/* ===== CLEAN WORKING NAVBAR FIX ===== */

.navbar-logo{
height:200px;
width:auto;
margin:-40px 0;
}

@media (max-width:991px){

.navbar{
padding:10px 15px;
}

.navbar-collapse{
background:#003d80;
padding:15px;
border-radius:10px;
}

}
/* Lottie visible */

.hero-lottie-wrapper{
height:auto !important;
margin-top:20px !important;
}

.hero-lottie{
position:relative !important;
opacity:1 !important;
}

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

/* ===== FEATURES MOBILE STACK ===== */

@media (max-width: 768px){

.features-row{
flex-direction: column !important;
align-items: center !important;
gap: 35px !important;
}

.feature-card{
width: 100% !important;
max-width: 320px !important;
text-align: center;
}

}
/* ===== KEY HIGHLIGHTS MOBILE FIX ===== */

@media (max-width:768px){

/* Stack sections */
.key-highlights-section .row{
flex-direction:column !important;
}

/* Center heading */
.key-highlights-section .col-lg-4{
text-align:center !important;
margin-bottom:30px;
}

/* Center lottie card */
.highlights-lottie-card{
margin:0 auto 25px auto !important;
max-width:320px !important;
}

/* Cards full width */
.kh-card{
width:100% !important;
}

/* Make grid 1 column */
.key-highlights-section .col-md-4{
width:100% !important;
max-width:100% !important;
}

}
@media (max-width:768px){

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom{
opacity:1 !important;
transform:none !important;
}

}
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-300 { transition-delay: 0.3s; }
.delay-500 { transition-delay: 0.5s; }

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