:root {
  /* Primary Colors */
  --primary-color: #427E72;
  --primary-dark: #356659;
  --primary-light: #5A9A8A;
  
  /* Base Colors */
  --white: #fff;
  --black: #000;
  --grey: #808080;
  --light-grey: #f0f0f0;
  --off-white: #f9fff9;
  --light-green: #E0F2EF;
  
  /* Accent Colors */
  --green: #008000;
  --forest-green: #228B22;
  
  /* Shadow Colors */
  --shadow-light: #228b221a;
  --shadow-medium: #228b2266;
  --shadow-extra-light: #228b220d;
  --indicator: #228b224d;
  
  /* Background Colors */
  --bg-fade: #fffffffa;
  
  /* Feature Colors */
  --feature-bg: #eafff5;
  
  /* Footer Colors */
  --footer-text: var(--light-grey);
  --footer-hover: var(--white);
  --footer-icon-bg: var(--primary-dark);
  --footer-link: var(--light-grey);
  
  /* Text Colors */
  --text-primary: var(--black);
  --text-secondary: var(--grey);
}

body {
  font-family: Poppins, sans-serif;
  overflow-x: hidden !important;
}

/* Header */
.customer-toggle {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.customer-toggle.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.customer-toggle:hover {
  background-color: var(--primary-light);
  color: var(--white);
}

/* Navigation */
.main-nav {
  background-color: var(--primary-color);
}

.nav-link {
  border-bottom: 1px solid transparent;
}

.nav-link.active {
  border-bottom-color: var(--white);
  font-weight: 500;
}

/* Hero */
.hero {
  background: black;
  color: var(--white);
  height: 75vh;
}

.hero-background {
  background-image: url('/assets/images/image.jpg');
  background-size: cover;
  opacity: 0.4;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px var(--grey);
}

.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px var(--grey);
}

.cta-button,
.demo-btn {
  color: var(--primary-color);
  border-radius: 8px;
  transition: 0.3s;
}

.cta-button:hover,
.demo-btn:hover {
  background: var(--light-grey);
  transform: translateY(-2px);
}

/* Second Section */
.content-section {
  background-color: var(--bg-fade) !important; /* keep background */
}

.content-section::before {
  content: "";
  position: absolute;
  top: 280px;
  right: 0;
  width: 500px;
  height: 500px;
  background: url("/assets/images/logo.svg") no-repeat right bottom;
  background-size: contain;
  opacity: 0.9;
  pointer-events: none;
}

.cards-container {
  padding: 30px;
  border: 2px solid var(--shadow-extra-light);
}

.cards-wrapper {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 8px;
  width: calc(100% * 10 / 3);
}

.cards-wrapper.no-transition {
  transition: none;
}



.card-item {
  flex: 0 0 calc(10% - 18px);
  background: linear-gradient(145deg, var(--white), var(--off-white));
  padding: 28px;
  transition: all 0.3s ease;
  border: 2px solid var(--shadow-light);
}

.card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  background-size: 300% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.card-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.card-image::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  z-index: -1;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.card-description {
  color: var(--black);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}


.section-title {
  margin-bottom: 30px;
  text-shadow: 0 4px 8px var(--shadow-extra-light);
}

.about-button {
  background-color: var(--primary-color);
  border: none;
}

/* Create classes for each position (0 to total cards) */
.position-0 { 
  transform: translateX(0%); 
}

.position-1 { 
  transform: translateX(-20%); 
}

.position-2 { 
  transform: translateX(-40%); 
}

.position-3 { 
  transform: translateX(-60%); 
}

.position-4 { 
  transform: translateX(-80%); 
}

.position-5 { 
  transform: translateX(-100%); 
}

@media (width < 768px) {
  .cards-wrapper {
    width: 1000%;
  }

  .card-item {
    flex: 0 0 calc(10% - 18px);
  }

  .section-title {
    font-size: 2rem;
  }

  .cards-container {
    margin: 0 15px;
    padding: 20px;
  }
}

@media (width > 769px) and (width < 1024px) {
  .cards-wrapper {
    width: 500%;
  }

  .card-item {
    flex: 0 0 calc(20% - 18px);
  }
}

/* Third section */
.feature-card {
  border-radius: 20px;
  overflow: hidden;
}
      
.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

      
.highlight {
  color: var(--secondary-color);
}
      
.feature-item {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2rem;
  cursor: pointer;
}
      
.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
      
.section-description-width {
  max-width: 600px;
}

.sector-circle{
  background-color: var(--primary-color) !important;
  height: 75px;
  width: 75px;
}

.feature-item:hover{
  transform: translateY(-5px);
  background-color: var(--feature-bg);
}

.feature-details{
  background-color: var(--feature-bg);
}

.view-toggle {
  cursor: pointer;
  font-size: 0.5rem;
  color: var(--primary-color);
}

.feature-details {
  transition: all 0.3s ease;
}

/* Pricing Section */

.pricing-section {
  padding: 80px 0;
}

.pricing-card {
  border-radius: 32px;
  transition: transform 0.3s ease;
  background-size: cover;       
  background-position: center;
  background-repeat: no-repeat;
  max-width: 390px;
}
      
.pricing-card:hover {
  transform: translateY(-5px);
}
      
.pricing-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  inset: 0;
  z-index: 1;
}
      
.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}
      
      
.card-title {
  font-size: 18px;
  color: var(--primary-color);
}
      
.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;;
}
      
.price-amount {
  font-size: 40px;
  color: var(--primary-color);
}
      
.price-period {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 400;
}
      
.btn-select-plan {
  padding: 12px 0;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-select-plan:hover {
  background: var(--primary-color);
  color: var(--white);
}
      
.feature-list li {
  padding: 8px 0;
  color: var(--text-primary);
  position: relative;
  padding-left: 30px;
}
      
.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.9rem;
}
      
.card-basic {
  background-image: url('/assets/images/pricing-card.png');
}
      
.card-professional {
  background-image: url('/assets/images/pricing-popular.png');
}

.card-professional .btn-select-plan{
  color : var(--white);
  background-color: var(--primary-color);
}

.card-professional .btn-select-plan:hover{
  color : var(--primary-color);
  background-color: var(--white);
}
      
.card-enterprise {
  background-image: url('/assets/images/pricing-card.png');
}
      
.card-startup {
  background-image: url('/assets/images/pricing-card.png');
}
      
.card-corporate {
  background-image: url('/assets/images/pricing-card.png');
}

/* Contact us */

.contact-section {
  background-color: var(--light-green);
}

.submit-btn{
  background-color: var(--primary-color);
}

.submit-btn:hover{
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
}

/* Footer */

.site-footer {
    background-color: var(--primary-color);
    color: var(--light-grey);
    margin-top: auto;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--footer-hover);
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--footer-icon-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--footer-text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--footer-icon-bg);
    color: var(--footer-hover);
}

.footer-bottom-link {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--footer-hover);
}

.feature-image{
  width: auto !important;
  height: 45px;
}

@media (width < 991px) {
    .why-section .row.align-items-center {
        display: flex;
        flex-direction: column-reverse;
    }

    .why-section .col-lg-6:last-child {
        margin-bottom: 2rem;
    }

    .feature-card img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .business-video, .government-video {
    height: 80vh !important; /* fill entire screen height */
    object-fit: cover !important;
  }
}

/* Add mobile-specific text alignment */
@media (width < 768px) {
  .hero-title{
    font-size: 20px !important;
  }

  .business-video, .government-video {
    height: 80vh !important; /* fill entire screen height */
    object-fit: cover !important;
  }

  .hero-description{
    font-size: 16px !important;
  }

    .feature-title {
        text-align: center;
    }
    
    .feature-description {
        text-align: center;
    }
    
    .feature-description-container {
        text-align: center;
    }
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: var(--bs-danger);
}

.form-control.is-valid {
    border-color: var(--bs-success);
}

.invalid-feedback {
    display: block;
    color: var(--bs-danger);
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loading-screen{
  background: #00000039; 
  backdrop-filter: blur(8px); 
  z-index: 1050;
}

.spinner-border{
  width: 2rem; 
  height: 2rem; 
  color: var(--primary-color);
}