@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* ===================================
   Utility Classes - Brand Color System
   =================================== */

/* Background Color Classes */
.bg-primary {
  background-color: #e4eaef !important;
}

.bg-secondary {
  background-color: #1d4462 !important;
}

.bg-section {
  background: #e9eef6;
}

.bg-alt-section {
  background: #f8fafc;
}
.bg-white { background-color: #ffffff !important; }

/* Text Color Classes */
.text-primary { color: #222121 !important; }
.text-white { color: #ffffff !important; }
.text-dark { color: #274360274360 !important; }

/* Accent Color Classes */
.accent-primary { color:#0078b6 !important; }
.accent-secondary { color: #a6cfe4 !important; }
.bg-accent-primary { background-color: #0078b6 !important; }
.bg-accent-secondary { background-color: #a6cfe4 !important; }

.cta_bg{
  background:#ffa41e;
}

.cta_bg:hover{
  background: #e8903d;
}

.lead { 
  font-size: 20px;
  font-weight: 400;
}

/* Button Classes */
.btn-cta {
  background-color: #ffa41e;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #e8903d;
  box-shadow: 0 4px 12px rgba(255, 164, 30, 0.3);
}

.btn-outline-cta {
  background-color: transparent;
  color: #ffa41e;
  border: 2px solid #ffa41e;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-cta:hover {
  background-color: #ffa41e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: #0078b6;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-accent:hover {
  background-color: #006399;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 120, 182, 0.3);
}

/* Icon Color Classes */
.icon-cta { color: #ffa41e; }
.icon-accent { color: #0078b6; }

/* Border Color Classes */
.border-cta { border-color: #ffa41e !important; }
.border-accent { border-color: #0078b6 !important; }
.border-secondary { border-color: #1d4462 !important; }

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #565656;
  background: #fff;
}



html {
  scroll-behavior: smooth;
}

/* Typography scale */
html { font-size: 14px; }
body { font-size: 16px; line-height: 1.3; font-weight: 400; }

h1 { font-size: 60px; /* 48px */ font-weight: 600; line-height: 1.2;  color: #274360;}
h2 { font-size: 40px; /* 32px */ font-weight: 600; line-height: 1.3; }
h3 { font-size: 24px; /* 24px */ font-weight: 600; line-height: 1.2; }
h4 { font-size: 20px; /* 18px */ font-weight: 600; line-height: 1.2; }
h5 { font-size: 18px; /* 16px */ font-weight: 600; line-height: 1.2; }

.justify{
  /* text-align: justify;
  text-justify:auto; */
}
.font-sm{
  font-size: 14px;
}

.font-md{
  font-size: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000; /* ensure header always overlays content */
  padding: 12px 0;
  transition: all 0.3s ease;
  background-color: #f8fafc !important; 
  box-shadow: 0 1px 15px #142435;
}

.header.scrolled {
  padding: 4px 0;
  background: #f8fafc;
  box-shadow: 0 1px 15px #202122;
}

.header.scrolled  .nav-links{
  margin: auto 2px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Ensure nav links and header controls are vertically centered */
.header-container .nav-links,
.header-container .header-btn,
.header-container .mobile-menu-toggle {
  /* display: flex; */
  align-items: center;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px; /* slight gap from nav */
}

  .sign-in{
    background-color: #fff !important;
    border: 1px solid #e8903d !important;
    color: #e8903d !important;
    display: block;
    float: right;
  }

    .sign-in:hover{
    background-color: #e8903d !important;
    border: 1px solid #e8903d !important;
    color: #fff !important;
    display: block;
    float: right;
  }


.logo {
  display: flex;
  align-items: center;

}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.header.scrolled .logo img {
  height: 40px;
}


/* Navigation Menu */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin: 0px;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  /* fallback */
  color: #274360;
  color: #274360;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  padding: 10px 10px;
  transition: all 0.3s ease;
  position: relative;
  
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  /* fallback */
  background: #f7941d;
  background: #ffa41e;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links > li > a:hover::after {
  width: 100%;
}

.nav-links > li > a:hover, .nav-links > li > a.active {
  color: #ffa41e;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* fallback */
  background: #fff;
  background: #fff;
  border-radius: 8px;
  padding: 20px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%) translateY(20px);
  margin-top: 10px;
  list-style: none;
  
}

.nav-links li:hover .submenu {
  opacity: 1;
  visibility: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 12px 30px;
  /* fallback */
  color: #274360;
  color: #274360;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.submenu a:hover {
  background: #ffa41e;
  color: #fff;
  padding-left: 40px;
}

/* Header Button */
.header-btn {
  /* fallback */
  background: #f7941d;
  background: #ffa41e;
  color: #fff;
  color: #fff;
  border: none;
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ffa41e;
}

.header-btn:hover {
  background: #fff;
  color:#ffa41e;
  border: 1px solid #ffa41e;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #274360;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.header.scrolled .mobile-menu-toggle span {
  background: #274360;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -8px);
}

/* Mobile Navigation */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  gap: 0;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.nav-links.mobile-open li {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.nav-links.mobile-open .mobile-get-started-item {
  border-bottom: none;
}

.nav-links.mobile-open > li > a {
  display: block;
  padding: 15px;
  font-size: 1.1rem;
}

.nav-links.mobile-open .submenu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  margin-top: 0;
  padding: 10px 0 10px 20px;
  background: #f8f9fa;
}

.nav-links.mobile-open .submenu a {
  padding: 10px 20px;
}

.nav-links.mobile-open .mobile-get-started {
  display: block;
  width: calc(100% - 30px);
  margin: 20px 15px;
  padding: 15px 30px;
  background: #f7941d;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-links.mobile-open .mobile-get-started:hover {
  background: #b57931;
}

.mobile-get-started {
  display: none;
}

/* Hero Section */
.hero {
  background: #e4eaef;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  /* background-image: url('../images/graphic.png');
  background-size: contain;
  background-position-x: right;
  background-position-y: bottom;
  background-repeat: no-repeat; */
}

.hero-home{
  height: 96vh;
  position: relative;
  background: #274360 !important;
}

.hero-home h1{ max-width: 900px;
margin: 0 auto;
color: #fff !important;
}

.hero-inside{
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;   /* horizontal */
  align-items: center;       /* vertical */
  margin-top: 94px;
  padding-top: 32 px;
  max-height: 600px;
}


.img-container {
  height: 70vh;
  max-height: 600px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
 
}

.img-container img {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: 0px;
  
}

.hero-content {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 1280px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 60px; /* 48px */
  font-weight: 600;
  color: #274360;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
  text-align: center;
}

.hero .tagline {
  color: #565656 !important;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: backwards;
  text-align: center;
}

.hero-home .tagline{
  color: #fff !important;
  font-size: 22px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: backwards;
}

.hero-cta button {
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  /* fallback */
  background: #f7941d;
  background: #ffa41e;
  color: #fff;
  color: #fff;
}

.btn-primary-custom:hover {
  background: #e8903d;
 
}

.btn-secondary-custom {
  background: transparent;
  color: #fff;
  border: 2px solid #ffa41e;
}

.btn-secondary-custom:hover {
  background: #ffa41e;
  color: #fff;

}

.btn{
  font-weight: 500;
  font-size: 18px;
  border-radius: 18px;
  padding: 6px 12px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About page: image appear animation (scoped) */
.about-appear {
  opacity: 0;
  transform: translateY(24px) scale(0.995);
  transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.about-appear.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#mission{
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .about-appear,
  .about-appear.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Video Section */
.video-section {
  position: sticky;
  top: 50px;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -50px;
  z-index: 1;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.video-text-overlay {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background: rgba(39, 67, 96, 0.3);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 30px;
  max-width: 600px;
 
}
.subheadline {
  font-size: 18px !important;
}

.video-text-overlay h2 {
  
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0;
  color: #fff !important;
}

.video-text-overlay .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.buttons button {
  background: #f7941d;
  color: white;
  border: none;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
}

.video-text-overlay .buttons button:hover {
  background: #b57931;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-section .sign-in{
  background: none !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.video-text-overlay a {

  text-decoration: underline;
  font-weight: 400;
  transition: all 0.3s ease;
}

.video-text-overlay a:hover {
  color: #f7941d;
  text-decoration: underline;
}

/* Call to Action Section */
.cta-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  margin-top: -50px;
  position: relative;
  z-index: 50;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.05), transparent);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(86, 141, 185, 0.05), transparent);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  z-index: 0;
}

.cta-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #274360;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
}

.cta-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-container {
  background: white;
  padding: 0;
  text-align: left;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 250px;
}

#services h3{
  color: #2d75ad !important;
}

.cta-container:nth-child(odd) {
  background: linear-gradient(135deg, #eaf5f9 0%, #ffffff 100%);
}

.cta-container:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, #ffffff 0%, #eaf5f9 100%);
}

.cta-image {
  flex: 0 0 35%;
  height: 350px;
  border-radius: 20px 0 0 20px;
  position: relative;
}

.cta-image img {
  width: 100%;
  height: auto;
  
  border-radius: 20px 0 0 20px;
  position: absolute;
  bottom: 0;
}

.cta-container:nth-child(even) .cta-image {
  border-radius: 0 20px 20px 0;
}

.cta-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  flex: 0 0 65%;
  padding: 40px 50px;
}

.cta-icon {
  font-size: 2.5rem;
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.cta-container:nth-child(1) .cta-icon { color: #2d75ad; }
.cta-container:nth-child(2) .cta-icon { color: #2d75ad; }
.cta-container:nth-child(3) .cta-icon { color: #2d75ad; }
.cta-container:nth-child(4) .cta-icon { color: #2d75ad; }

.cta-container:hover .cta-icon {
  transform: scale(1.1);
}

.cta-container h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #274360;
  transition: color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.cta-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cta-container p {
  color: #666;
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

.cta-container p:last-of-type {
  margin-bottom: 0;
}

.cta-link {
  display: inline-block;
  margin-top: 15px;
  color: #f7941d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-container:nth-child(even) .cta-link {
  color: #b57931;
}

.cta-container:hover .cta-link {
  transform: translateX(5px);
}

/* Steps Section */
.steps-section {
  padding: 100px 40px;
  background: #ffffff;
  position: relative;
  z-index: 110;
  margin-top: -50px;
}

.steps-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.steps-title {
  text-align: center;
  margin-bottom: 70px;
}

.steps-title h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #274360;
  margin-bottom: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa41e, #ffa41e);
  color: white;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
  position: relative;
  outline: 4px solid #2d75ad;
  border: 5px solid #fff;
  z-index: 2;
}


.step-connector {
  position: absolute;
  top: 80px;
  left: 68%;
  width: calc(100% - 100px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #2d75ad, transparent);
  z-index: 1;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #274360;
  margin-bottom: 15px;
}

.steps-section h3.text-primary{
  color: #2d75ad !important;
}

.step-description {
  color: #666;
}

/* Stats Section */
.stats-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: url('../images/section4.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-top: -50px;
  z-index: 75;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;

}

.stats-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 40px;
}

.stats-content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  animation: fadeInUp 1s ease;
}

/* Testimonials Section */
.testimonials-section {
  
  padding: 100px 40px;
  position: relative;
  z-index: 100;

  margin-top: -50px;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0; 
}

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-wrapper h2.text-primary, .steps-wrapper h2.text-primary {
  color: #274360 !important;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title h2 {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.testimonials-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-height: 400px;
}

.testimonial-slide {
  font-size: 16px;
  font-weight: 300;
  border-radius: 30px;
  padding: 36px 36px;
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;

 
}



.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.testimonial-slide.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}

.quote-icon {
  display: none;
}

.testimonial-text {
  font-size: 18px;
  color: #565656;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 200;
}

.testimonial-author {
  margin-top: 30px;
  padding-top: 30px;
  /* border-top: 1px solid #1a527e; */
}

.author-name {
  font-size: 18px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-company {
  font-size: 1rem;

}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  height: 13px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #274360;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffa41e;
  transform: scale(1.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  /* fallback */
  background: #1d4462;
  background: #1d4462;
  color: #fff;
  color: #fff;
  padding: 60px 40px 30px;
 
  margin-top: -50px;
  position: relative;
  z-index: 100;
  font-size: 16px;
}

/* Features Hero Section */
.features-hero-section {
  padding: 240px 0;
  background: #1d4462;
  position: relative;
  z-index: 10; /* sit below the header */
 
}
.features-hero-section h2, .stats-content h2 {
  max-width: 800px;
  font-size: 50px !important;
}

.features-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  text-align: left !important;
}

.features-hero-subtitle {
  font-size: 1.25rem;
  color: #e4eaef;
  text-align: left !important;
}

.features-hero-section img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Page Styles */
.features-nav-section {
  position: sticky;
  top: 48px;
  /* fallback */
  background: #fff;
  background: #fff;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.features-nav-section.sticky {
  top: 70px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.features-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.features-nav-title {
  font-size: 2rem;
  font-weight: 600;
  color: #274360;
  margin-bottom: 15px;
  text-align: center;
}

.features-nav-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ffa41e;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 auto 20px;
  max-width: 300px;
}

.features-nav-toggle:hover {
  background: #e8903d;
  transform: translateY(-2px);
}

.features-nav-toggle i {
  transition: transform 0.3s ease;
}

.features-nav-toggle.active i {
  transform: rotate(180deg);
}

.features-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-nav-item {
  padding: 8px 12px;
  /* fallback */
  background: #f2e6d9;
  background: #e4eaef;
  border-radius: 15px;
  text-decoration: none;
  color: #274360;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-nav-item:hover,
.feature-nav-item.active {
  background: #ffa41e;
  color: #fff;
  font-weight: 600;
}

/* Features Detail Section */
.features-detail-section {
  background: #e4eaef;
  position: relative;
  z-index: 50;
}

/* Features Detail Section */
.features-detail-section {
  position: relative;
  background: #e4eaef;
}

.features-detail-section .sticky-content h5{
  color: #2d75ad;
}

.feature-detail-item {
  position: relative;
  padding: 80px 0;
  overflow: visible; /* Allow sticky to work */
}

/* Alternating background colors */
.feature-detail-item:nth-child(odd), .altbg:nth-child(odd) {
  /* fallback */
  background: #eaf5f9;

}

.feature-detail-item:nth-child(even), .altbg:nth-child(even) {
  background: #fff;
}

/* Image Container - Sticky to Top */
.feature-image-sticky {
  position: sticky;
  top: 240px;
  width: 100%;
  /* allow image to size naturally; avoid forcing a min-height which causes
    object-fit to crop parts of the image */
  min-height: auto;
  overflow: hidden;
}

.feature-image-sticky img {
  width: 100%;
  height: auto;
  max-height: 75vh; /* keep image within viewport while avoiding crop */
  object-fit: contain; /* show the whole image without cropping */
  display: block;
}

.feature-detail-content {
  width: 48%;
  flex-shrink: 0;
  padding: 40px;
  background: transparent;
  min-height: 120vh;
}

.feature-detail-content h2,
.feature-detail-content h5 {
  color: #274360;
  font-size: 2rem; /* ensure H2 within feature content follows scale */
}

.feature-detail-content p {
  color: #274360;
}

/* Override Bootstrap badge colors */
.feature-detail-item .badge {
  /* fallback */
  background: #f7941d !important;
  background: #ffa41e !important;
  color: #fff !important;
  color: #fff !important;
}

/* Override icon colors */
.feature-detail-item .text-primary,
.feature-detail-item .text-success,
.feature-detail-item .text-warning,
.feature-detail-item .text-info {
  color: #2d75ad !important;
}

.feature-detail-text {
  max-width: 100%;
}

.feature-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f7941d, #ff9a3c);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sticky Content for Features with Multiple Scrolling Images */
.feature-detail-item .container {
  overflow: visible; /* Important: Allow sticky positioning */
}

.feature-detail-item .row {
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

.sticky-content {
  position: -webkit-sticky;
  position: sticky;
  top: 160px; /* Below header (78px) + nav section height (~80px) */
  align-self: flex-start;
  z-index: 5; /* above images */
}

/* Ensure the content column stays above the images when sticky */
.feature-detail-item .col-lg-6:first-child .sticky-content,
.feature-detail-item .col-lg-6:nth-child(2) .sticky-content {
  z-index: 5;
}

.scrolling-images {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 100px; /* Extra padding to ensure content stays sticky till end */
}

.image-item {
  width: 100%;
  margin-bottom: 0;
}

.image-item img {
  width: 100%;
  height: auto;
  max-height: 60vh; /* responsive cap to avoid oversized images */
  object-fit: contain; /* prevent cropping */
}

.image-caption {
  color: #274360;
  text-align: center;
  font-style: italic;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Mobile responsive - remove sticky on smaller screens */
@media (max-width: 991.98px) {
  .sticky-content {
    position: static;
  }
  
  .scrolling-images {
    gap: 30px;
    padding-bottom: 0;
  }
  
  .image-item img {
    min-height: auto;
  }
}

/* Use CSS variable set by JS so anchors don't hide headings behind sticky nav */
:root {
  /* New Brand Color System */
  --bg-primary: #f8fafc;      /* Light background */
  --bg-secondary: #e4eaef;    /* Secondary background */
  --cta-primary: #ffa41e;     /* Call-to-action primary */
  --cta-hover: #e8903d;       /* Call-to-action hover state */
  --text-primary: #565656;    /* Primary text color */
  --accent-primary: #0078b6;  /* Bento primary accent */
  --accent-secondary: #a6cfe4; /* Bento secondary accent */
  
  /* Legacy colors (keeping for compatibility) */
  --features-nav-offset: 160px; /* default fallback */
}

.feature-detail-item h2,
.feature-detail-item .badge {
  scroll-margin-top: calc(160px + 16px);
}

/* When nav links jump to anchors, ensure target heading is visible */
#features-nav-list a {
  scroll-margin-top: calc(160px + 8px);
  padding: 18px 12px;
} 

.feature-detail-content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #274360;
  margin-bottom: 15px;
}

.feature-lead {
  color: #666;
  margin-bottom: 40px;
}

.feature-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-detail-block {
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-detail-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-detail-block i {
  font-size: 2.5rem;
  color: #f7941d;
  margin-bottom: 15px;
}

.feature-detail-block h4 {
  font-weight: 600;
  color: #274360;
  margin-bottom: 10px;
}

.feature-detail-block p {
  margin: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding-left: 0px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f7941d;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
}

.social-links {
  display: flex;
  gap: 15px;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f7941d;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {

  .hero h1 { font-size: 60px; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
  
  .cta-container {
    flex-direction: column !important;
    min-height: auto;
  }
  
  .cta-image {
    width: 100%;
    flex: 1 1 100% !important;
    height: 300px;
    border-radius: 20px 20px 0 0 !important;
  }
  
  .cta-content {
    flex: 1 1 100% !important;
    padding: 40px 30px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .step-connector {
    display: none;
  }
  
  .video-text-overlay {
    padding: 40px 50px;
    max-width: 90%;
  }
  
  .video-text-overlay h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* On small screens hide the desktop nav by default. Use !important so
     the .nav-links.mobile-open rule (which also uses !important) can still
     override when the mobile menu is opened by JS. */
  .nav-links { 
    display: none !important;
  }
  .get-started {
   display: none;
  }

  .hero-home{
    height: 70vh;
  }

  h1{
    font-size: 42px;
  }

  .hero-inside{
    margin-top:84px;
  }

  .hero-inside h1{
    margin-top: 24px;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
  padding: 0 20px;
    gap: 15px;
  }
  
  .logo img {
    height: 60px;
  }

  .header-btn {
    margin-left: 0;
  }
  
  .header.scrolled .logo img {
    height: 35px;
  }
  
  .header-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
  }


  
  .hero {
    padding: 100px 20px 50px;
  }
  
  .hero h1 { 
    font-size: 42px;
  }
  
  .hero .tagline { 
    font-size: 18px;
  }
  
  .hero-cta { 
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
  }
  
  .hero-cta button {
    width: 100%;
    padding: 16px 40px;
  }
  
  .video-section {
    top: 70px;
    height: 70vh;
    margin-top: 0;
   
  }
  
  .video-text-overlay {
    padding: 25px 30px;
    max-width: 95%;
    gap: 20px;
  }
  
  .video-text-overlay h2 {
    font-size: 1.5rem;
  }
  
  .video-text-overlay .buttons button {
    padding: 6px 12px;
    font-size: 1.05rem;
  }
  
  .video-text-overlay a {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 60px 20px;
    margin-top: -30px;
    
  }
  
  .section-title h2 { 
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .cta-grid {
    gap: 30px;
  }
  
  .cta-container {
    border-radius: 15px;
  }
  
  .cta-image {
    height: 200px;
    border-radius: 15px 15px 0 0 !important;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-icon {
    font-size: 2rem;
    margin-right: 10px;
  }
  
  .cta-container h3 {
    font-size: 1.3rem;
  }
  
  .cta-container p {
    font-size: 0.9rem;
  }
  
  .stats-section {
    height: 60vh;
   
    margin-top: -30px;
   
  }
  
  .stats-content {
    padding: 20px;
  }
  
  .stats-content h2 {
    font-size: 1.8rem;
  }
  
  .testimonials-section {
    padding: 60px 20px;
    margin-top: -30px;
   
  }
  
  .testimonials-title h2 {
    font-size: 2rem;
  }
  
  .testimonials-title p {
    font-size: 1rem;
  }
  
  .testimonial-carousel {
    min-height: 350px;
  }
  
  .testimonial-slide {
    padding: 10px 10px;
  }
  
  .testimonial-text {
    font-size: 1.4rem;
  }
  
  .testimonial-slide::before,
  .testimonial-slide::after {
    font-size: 3.5rem;
  }
  
  .testimonial-slide::after {
    bottom: -30px;
    right: 30px;
  }
  
  .steps-section {
    padding: 60px 20px;
    margin-top: 0px;
    
  }
  
  .steps-title h2 {
    font-size: 2rem;
  }
  
  .step-item {
    padding: 30px 20px;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .footer {
    padding: 40px 20px 20px;
    margin-top: -30px;
   
  }
  
  .footer-container { 
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column h4 {
    font-size: 1.2rem;
  }
  
  .footer-bottom {
    font-size: 0.9rem;
  }
  
  /* Features Page Mobile */
  .features-nav-container {
    padding: 20px;
  }
  
  .features-nav-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-nav-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .feature-detail-item {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  
  .feature-image-sticky {
    position: relative;
    top: 0;
    height: 300px;
    order: 1 !important;
  }
  
  .feature-detail-content {
    padding: 40px 20px;
    min-height: auto;
    order: 2 !important;
  }
  
  .feature-detail-content h2 {
    font-size: 2rem;
  }
  
  .feature-lead {
    font-size: 1.1rem;
  }
  
  .feature-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-detail-block {
    padding: 20px;
  }
  
  .feature-detail-block i {
    font-size: 2rem;
  }
  
  .feature-detail-block h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }
  
  .header-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-cta button {
    padding: 14px 35px;
  }
  
  .video-text-overlay {
    padding: 10px;
  }
  
  .video-text-overlay h2 {
    font-size: 1.3rem;
  }
  
  .video-text-overlay .buttons button {
    padding: 6px 12px;
    font-size: 0.95rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .cta-container h3 {
    font-size: 1.2rem;
  }
  
  .stats-content h2 {
    font-size: 32px !important;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
  }
}

/* ========================================
   BLOG & POST STYLES
   ======================================== */

/* Blog Hero Section */
.hero.blog-hero {
  min-height: 40vh;
  background: linear-gradient(180deg,rgba(43, 43, 43, 1) 0%, rgba(29, 68, 98, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background:radial-gradient(circle at 30% 50%, rgba(247, 148, 29, 0.1) 0%, transparent 50%); */
  pointer-events: none;
}

.hero.blog-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero.blog-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 5rem auto 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero.blog-hero .lead {
  color: rgba(255, 255, 255, 0.95);

  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Grid Section */
.blog-grid-section {
  padding: 80px 0;
 
}

/* Blog Cards - Modern Styling */
.card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
  position: relative;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #274360;
  margin-bottom: 1rem;
}

.card-text {
  color: #666;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body a.stretched-link {
  color: #ffa41e;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.card-body a.stretched-link:hover {
  color: #e8903d;
}



/* Post Content Styles */
.post-content-section {
  padding: 60px 0 80px 0;
  background: #fff;
}

.post-content-section .container {
  max-width: 1200px;
}

.post-content-section img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.post-content-section p {

  margin-bottom: 1.5rem;
}

.post-content-section h4 {
  color: #1d4462;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.6rem;
}

.post-content-section ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.post-content-section ul li {
  color: #555;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1rem;
}

.post-content-section ul li::before {
  content: '•';
  color: #ffa41e;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: -0.5rem;
  top: -0.2rem;
}

.post-content-section a {
  color: #2d75ad;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.post-content-section a:hover {
  color: #ffa41e;
  border-bottom-color: #ffa41e;
}

/* Sidebar Card Styling */
.post-content-section .card {
  border-radius: 12px;
  border: none;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.post-content-section .card-body {
  padding: 2rem;
  background-color: #e4eaef;
}

.post-content-section .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1d4462;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #ffa41e;
  padding-bottom: 0.8rem;
}

.post-content-section .card .list-unstyled {
  margin: 0;
  padding: 0;
}

.post-content-section .card .list-unstyled li {
  margin-bottom: 1rem;
}

.post-content-section .card .list-unstyled li a {
  color: #274360;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

.post-content-section .card .list-unstyled li a:hover {
  background: #ffa41e;
  color: #fff;
  transform: translateX(5px);
}

/* Responsive Blog Styles */
@media (max-width: 992px) {
  .hero.blog-hero h1 {
    font-size: 2.5rem;
  }
  
  .post-hero h1 {
    font-size: 2.2rem;
  }
  
  .card-title {
    font-size: 1.3rem;
    min-height: auto;
  }
  
  .post-content-section .card {
    position: relative;
    top: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero.blog-hero h1 {
    font-size: 2rem;
  }
  

  
  .post-hero {
    padding: 100px 0 60px 0;
  }
  
  .post-hero h1 {
    font-size: 1.8rem;
  }
  
  .card-img-top {
    height: 220px;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .post-content-section p,
  .post-content-section ul li {
    font-size: 1rem;
  }
}


/* Feature Comparison Table */
.feature-comparison-section {
  margin-top: 100px;
}

.feature-comparison-section h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.table-header {
  background: #f6f8f9;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-col {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #274360;
  min-width: 250px;
  background: #f6f8f9;
}

.plan-col {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  background: #f6f8f9;
}

.plan-essential {
  color: #2d75ad;
}

.plan-advanced {
  color: #3d85c6;
}

.plan-premium {
  color: #1d4462;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody td {
  padding: 12px 20px;
}

.category-header {
  background: #e8f4f8;
  cursor: pointer;
}

.category-header td {
  padding: 15px 20px;
  font-weight: 600;
  color: #2d75ad;
  font-size: 1.1rem;
}

.text-center {
  text-align: center;
}

.category-header td i {
  margin-right: 10px;
  transition: transform 0.3s;
}

/* ========================================
   PRICING PAGE STYLES
======================================== */

/* Pricing Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Pricing Card Base */
.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Featured Pricing Card */
.pricing-card-featured {
  background: linear-gradient(135deg, #1d4462 0%, #0078b6 100%);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Pricing Card Elements */
.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.pricing-subtitle {
  margin: -0.5rem 0 0 0;
  opacity: 0.9;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1d4462;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
}

.starting-price {
  font-size: 24px;
  font-weight: 600;
  color: #ccc;
  text-decoration: line-through;
  display: block;
}

.pricing-card-featured .pricing-amount {
  color: #ffffff;
  /* background: rgba(255, 255, 255, 0.15); */
}

.pricing-period {
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

.pricing-badge {
  color: #565656;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}



/* Pricing Buttons */
.btn-pricing {
  background: #ffa41e;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-pricing:hover {
  background: #e8903d;
  transform: scale(1.02);
}

.btn-pricing-featured {
  background: #ffa41e;
  color: #565656;
  border: none;
}

.btn-pricing-featured:hover {
  background: #ffa41e;
  color: #fff;
}

/* Feature Comparison Section */
.feature-comparison-section {
  max-width: 1200px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.feature-comparison-section h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table-header {
  background: linear-gradient(135deg, #1d4462 0%, #0078b6 100%);
  color: #ffffff;
}

.table-header th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-col {
  text-align: left !important;
  min-width: 250px;
}

.plan-col {
  color: #565656;
  min-width: 120px;
  font-weight: 600;
}




.comparison-table tbody tr {
  border-bottom: 1px solid #e4eaef;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  color: #565656;
}

.comparison-table tbody tr td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1d4462;
}

/* Category Header Rows */
.category-header {
  background: #e4eaef !important;
  cursor: pointer;
  font-weight: 700 !important;
  color: #1d4462 !important;
  user-select: none;
}

.category-header:hover {
  background: #d4e9f7 !important;
}

.category-header td {
  padding: 1rem !important;
  text-align: left !important;
  font-size: 1.1rem;
}

.category-header i {
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
  color: #0078b6;
}

/* Check/X Icons in Table */
.comparison-table .fa-check {
  color: #0078b6;
  font-size: 1.2rem;
}

.comparison-table .fa-times {
  color: #cccccc;
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
  
  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-amount {
    font-size: 2.5rem;
  }
  
  .feature-comparison-section h3 {
    font-size: 1.5rem;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .table-header th {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
  
  .comparison-table td {
    padding: 1rem 0.5rem;
  }
  
  .feature-col {
    min-width: 200px;
  }
  
  .plan-col {
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    gap: 1.5rem;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  
  .pricing-amount {
    font-size: 2rem;
  }
  
  .comparison-table {
    font-size: 0.85rem;
  }
}


/* Updated: Thu Jan 22 10:55:43 AM IST 2026 - All pricing buttons and badges now use #ffa41e orange */



/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 41, 68, 0.6);
  z-index: 10000;
  backdrop-filter: blur(3px);
}

.modal-content {
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  margin: 5% auto;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #274360;
  font-weight: 600;
}

.modal-body {
  padding: 24px;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  font-size: 28px;
  color: #666;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1;
}

.close:hover {
  color: #000;
}

/* Form Styles */
#signInForm .form-group {
  margin-bottom: 20px;
}

#signInForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;

}

#signInForm .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

#signInForm .form-control:focus {
  outline: none;
  border-color: #274360;
  box-shadow: 0 0 0 3px rgba(39, 67, 96, 0.1);
}

#signInForm .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

#signInForm .form-check-input {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

#signInForm .form-check-label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

#signInForm .btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #ffa41e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
}

#signInForm .btn-primary:hover:not(:disabled) {
  background-color: #1e3447;
}

#signInForm .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#signInForm .btn-block {
  display: block;
  width: 100%;
}

#signInForm .alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

#signInForm .alert-danger {
  color: #d04654;
  background-color: #fdf8f9;
  border: 1px solid #f5c2c7;
}

#signInForm .alert-success {
  color: #198754;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}

#signInForm .form-footer {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

#signInForm .forgot-password {
  color: #274360;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

#signInForm .forgot-password:hover {
  color: #1e3447;
  text-decoration: underline;
}

/* Tenant Selection Buttons */
.tenant-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-tenant {
  width: 100%;
  padding: 16px 20px;
  background-color: #f9ede7;
  border: 2px solid #ff5b00;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-align: left;
}

.btn-tenant:hover {
  background-color: #274360;
  border-color: #274360;
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(39, 67, 96, 0.2);
}

.btn-tenant .tenant-name {
  font-weight: 600;
  flex-grow: 1;
}

.btn-tenant i {
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.btn-tenant:hover i {
  opacity: 1;
}

#tenantSelection {
  margin-bottom: 16px;
}

#tenantSelection p {
  margin-bottom: 12px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .modal-content {
    width: 95%;
    margin: 10px auto;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 20px 20px 12px;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .close {
    right: 12px;
    top: 12px;
    font-size: 24px;
  }
}

/* #home, #services, .video-section, .stats-section {
  display: none;
} */
/* ========================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATIONS
   ======================================== */

/* Tablet Landscape & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Typography */
  h1 { font-size: 2.5rem;  }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  p, .lead { font-size: 1rem;  }
  
  /* Section Padding */
  section { padding: 60px 20px; }
  .container { padding: 0 20px; }
  
  /* Features sections */
  .feature-detail-item .container { padding: 40px 20px; }
  .features-hero-section { padding: 50px 20px; }
  .features-nav-section { padding: 15px 0; }
}

/* Tablet Portrait - Mobile optimized (max-width: 768px) - Enhanced */
@media (max-width: 768px) {

  
  /* Typography - Mobile optimized */
  body{
    font-size: 14px !important;
  }
  /* Typography - Extra compact for small screens */
  h1 { font-size: 42px !important; }
  h2 { font-size: 32px !important; }
  h3 { font-size: 24px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 16px !important; }
 
  /* Section Spacing */
  section { padding: 40px 12px !important; }
  .container { padding: 0 12px !important; max-width: 100%; }
  .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .mb-4 { margin-bottom: 1.25rem !important; }
  .mb-5 { margin-bottom: 2rem !important; }
  
  /* Features Page Specific */
  .features-hero-section { padding: 40px 12px !important; }
  .features-hero-section h2 { font-size: 1.5rem !important; }
  
  .feature-detail-item { padding: 30px 0 !important; }
  .feature-detail-item .container { padding: 20px 15px !important; }
  .feature-detail-item h2 { font-size: 1.75rem !important; margin-bottom: 1rem !important; }
  .feature-detail-item h5 { font-size: 1.05rem !important; margin-bottom: 0.5rem !important; }
  
  /* Features Nav */
  .features-nav-list { 
    flex-direction: column; 
    gap: 0.5rem;
    padding: 10px 0;
  }
  .feature-nav-item { 
    font-size: 0.9rem !important; 
    padding: 10px 12px !important;
    text-align: center;
  }
  
  /* Image containers */
  .scrolling-images { margin-bottom: 2rem; }
  .image-item { margin-bottom: 1.5rem !important; }
  
  /* Grid spacing */
  .g-4, .g-5 { gap: 1.25rem !important; }
  .row { margin: 0 -10px; }
  .row > * { padding: 0 10px; }
  
  /* Hero sections */
  .hero, .hero-inside { 
    padding: 40px 15px 0px !important; 
    min-height: auto !important;
  }
  .hero-inside { margin-top: 70px !important; height: 60vh; }
  .features-hero-title { font-size: 1.85rem !important; margin-top: 1rem !important; }
  .tagline { font-size: 18px !important; }
  
  /* Buttons */
  .btn-cta, .header-btn, .mobile-get-started {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }
  
  /* Icons */
  .fs-3 { font-size: 1.75rem !important; }
  
  /* Cards & Content blocks */
  .d-flex.flex-column { gap: 0.5rem; }

  .hero-inside , .img-container{
    height: auto;
   
  }

  .post-hero .hero-content{
    position: relative;
    top: 0px;
    transform: translate(-50%, 0%);
  }
  .img-container .container{
    padding: 0px !important;
  }

  .img-container img{
    position: relative;
  }
}

/* Mobile Small (max-width: 480px) - Extra compact */
@media (max-width: 480px) {
  body{
    font-size: 14px !important;
  }
  /* Typography - Extra compact for small screens */
  h1 { font-size: 42px !important; }
  h2 { font-size: 32px !important; }
  h3 { font-size: 24px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 16px !important; }
  
  p, .lead { font-size: 16px !important; }
  
  /* Tighter Spacing */
  section { padding: 30px 12px !important; }
  .container { padding: 12px 12px !important; }
   .hero-inside .container{
    padding: 0px !important;
  }

  .cta-grid { padding: 12px 0 !important; }
  .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .mb-4 { margin-bottom: 1rem !important; }
  
  /* Features */
  .feature-detail-item { padding: 20px 0 !important; }
  .feature-detail-item .container { padding: 15px 12px !important; }
  .features-hero-section { padding: 30px 12px !important; }
  .features-hero-section h2 { font-size: 1.25rem !important; }
  
  /* Buttons */
  .btn-cta, .header-btn {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
  }
  
  /* Grid */
  .g-4, .g-5 { gap: 1rem !important; }
  
  /* Images */
  .img-fluid { max-width: 100%; height: auto; }
  .image-item { margin-bottom: 1rem !important; }
}

.grecaptcha-badge{
  z-index: 10000 !important;
}