@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');

/* Root Colors */
:root {
  /* Primary Colors */
  --primary-color: #427E72;
  --primary-hover: #427e72ae;
  --primary-light: #e7f0fa;
  --business-highlight: #0058B9;
  --government-highlight: #FF9000;
  
  /* Secondary Colors */
  --secondary-color: #20c997;
  --secondary-hover: #1ba085;
  
  /* Accent Colors */
  --accent-orange: #FF9000;
  --accent-orange-light: #ff910045;
  
  /* Neutral Colors */
  --white: #fff;
  --black: #000;
  --gray-100: #f8f9fa;
  
  /* Dark Colors */
  --dark-blue: #001D3D;
  --dark-overlay: #000C;
  
  /* Light Colors */
  --light-blue: #EAF7FF;
  --light-white-transparent: #fff3;
  --light-white-semi: #ffffff4D;
  --light-white-border: #ffffff80;
  
  /* Text Colors */
  --text-primary: #333;
  --text-secondary: #666;
  
  /* Background Colors */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-100);
  --bg-overlay: var(--dark-overlay);

  /* footer colors */

  --footer-bg: #345E51;
  --footer-text: #e0e0e0;
  --footer-hover: #fff;
  --footer-link: #7dd3fc;
  --footer-icon-bg: #496e63a7;

  /* Contact us colors */

  --contact-us-bg : #EAFFF5;

  /* Mobile styling values */

  --font-title-sm: 1.25rem;
  --font-desc-sm: 0.8rem;
  --font-logo-main-sm: 17px;
  --font-logo-sub-sm: 8px;
  --font-mini-label-sm: 11px;
  --font-paragraph-sm: 12px;
  --font-heading-sm: 14px;
  --font-subheading-sm: 15px;
  --font-price-sm: 28px;
  --font-list-item-sm: 12px;
  --hero-divider-height-sm: 11px;
  --hero-nav-padding-sm: 15px 0px;
  --hero-nav-top-sm: 220px;
  --hero-nav-gap-sm: 1rem;
  --hero-nav-font-sm: 0.85rem;

}

body {
  width: 100vw; 
  background: var(--bg-primary); 
  font-family: Poppins, sans-serif;
  font-optical-sizing: auto;
}

.title-text{
  font-family: Syne, sans-serif;
  font-optical-sizing: auto;
  font-size: 40px !important;
}

.mini-title-text{
    font-family: Syne, sans-serif;
    font-optical-sizing: auto;
}

.description-text{
    font-family: Poppins, sans-serif;
    font-optical-sizing: auto;
    width: 80%;
}

.hero-carousel-frame {
  width: 99vw;
  margin-right: auto !important;
  height: 99.8vh;
  justify-content: stretch;
  padding: 0.3vw;
}

.carousel-inner {
  border-radius: 18px; 
}

.hero-carousel-img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.25);
  display: block;
  
}

.hero-content-overlay {
  pointer-events: none;
  padding: 1vw;
}

.hero-content-overlay * {
  pointer-events: auto; 
}

/* Navbar styles */
.hero-navbar {
  top: 1vw;
  z-index: 10;
}

.logo {
  font-size: 1.35rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  user-select: none;
}

.logo-icon {
  width:55px;
  height:55px;
  object-fit:contain;
}

.navbar-toggle {
  background: var(--primary-color);
  width: 44px; 
  height: 44px;
  transition: background 0.2s;
}

.navbar-toggle-icon {
   width: 28px; 
   height: 28px; 
  }

.hero-nav-items {
  background: var(--primary-color);
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  z-index: 20;
  transition: opacity 0.2s, visibility 0.2s;
  opacity: 0;
  visibility: hidden;
}

.navbar-toggle:focus + .hero-nav-items,
.navbar-toggle:hover + .hero-nav-items,
.hero-nav-items.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.hero-nav-link {
  font-weight: 500;
  font-size: 12px;
  padding: 0.3rem 1.1rem;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.hero-nav-link:hover {
   background: var(--primary-light);
   color: black !important; 
  }

/* Carousel indicators */

.title-highlight {
  color: var(--primary-color);
}

.carousel-indicators {
  position: static;
  margin-bottom: -140px !important;
}

.carousel-indicators [data-bs-target] {
  background: var(--white);
  opacity: 0.7;
  border: none;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  width: 16px;
  height: 8px;
  border-radius: 8px;
  margin: 0 2px;
}

.carousel-indicators .active {
  opacity: 1;
  background: var(--primary-color);
  width: 49px;
  height: 8px;
  border-radius: 8px;
}

.scroll-down-btn {
  left: 50%;
  bottom: 2.5vw;
  transform: translateX(-50%);
  background: var(--primary-color);
  width: 44px; 
  height: 44px;
  transition: background 0.2s;
}

.scroll-down-btn:hover {
  background: var(--primary-hover);
 }

.scroll-down-arrow {
  width: 28px;
  height: 28px;
}

.navbar-toggle .close-icon {
  display: none; 
}

.navbar-toggle.open .hamburger-icon {
  display: none; 
}

.navbar-toggle.open .close-icon {
   display: inline; 
}

/* Second Section */

.custom-tab {
  background: transparent;
  color: var(--gray-600);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}
      
.custom-tab:hover {
  background-color: var(--gray-100);
  color: var(--gray-700);
}
      
.custom-tab.active {
  background-color: var(--dark-blue);
  color: var(--white);
}
      
.custom-tab.active[data-tab="government"] {
  background-color: var(--accent-orange);
  color: var(--white);
}
      
.content-card {
  transition: all 0.4s ease;
  border-radius: 12px;
}
      
.card-business {
  background-color: var(--light-blue);
}
      
.card-government {
  background-color: var(--accent-orange-light);
}
      
.header-section {
  padding: 80px 0 60px;
  background-color: var(--gray-100);
}
      
.main-content {
  padding: 60px 0;
}
      
.fade-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
      
.fade-transition.show {
  opacity: 1;
  transform: translateY(0);
}
      
.faq-item {
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--white);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
      
.faq-item.active {
  background: var(--dark-blue);
  color: var(--white);
}

.government .faq-item.active {
  background: var(--accent-orange) !important;
  color: var(--white);
}

.government{
  display: none;
}
      
.faq-header {
  transition: all 0.3s ease;
}
      
.faq-title {
  font-weight: 600;
  font-size: 16px;
}
      
.faq-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}
      
.faq-icon.rotate {
  transform: rotate(180deg);
}
      
.faq-content {
  padding: 0 20px;
  max-height: 0;
  transition: all 0.3s ease;
}
      
.faq-content.show {
  max-height: 120px;
  padding: 0 20px 16px;
}
      
.faq-description {
  font-size: 14px;
  line-height: 1.5;
}
      
.tab-divider {
  width: 2px;
  height: 28px;
  background: var(--text-secondary);
  border-radius: 2px;
}

.hero-divider{
  width:1px;
  height:28px;
}

.logo-name{
  font-size:8px;
  margin-top:-10px;
}

.business-title{
  color: var(--business-highlight);
}

.government-title{
  color: var(--government-highlight);
}

/* Third section */
.feature-card {
  border-radius: 20px;
  overflow: hidden;
}
      
.feature-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
      
.feature-title {
  font-family: Syne, sans-serif;
}
      
.feature-description {
  font-family: Poppins, sans-serif;
}
      
.section-title {
  font-family: Syne, sans-serif;
}
      
.section-description {
  font-family: Poppins, sans-serif;
}
      
.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: #eafff5;
}

.feature-details{
  background-color: #eafff5;
}

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

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

/* Third Section */

.video-section {
  padding-bottom : 60px;
}
      
.highlight {
  color: var(--secondary-color);
}
      
.video-container {
  border-radius: 30px;
}
      
.video-player {
  height: 450px;
  object-fit: cover;
}
      
.video-overlay {
  background: linear-gradient(transparent, var(--bg-overlay));
  padding: 30px;
}
      
.video-text {
  margin-bottom: 25px;
}
      
.video-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
      
.video-description {
  font-size: 1rem;
  opacity: 0.9;
}
      
.play-pause-btn {
  width: 50px;
  height: 50px;
  background: var(--light-white-transparent);
  border: 1px solid var(--white);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
      
.play-pause-btn:hover {
  background: var(--light-white-semi);  
  border-color: var(--light-white-border);  
  transform: scale(1.1);
}

.play-pause-btn i {
  font-size: 1.2rem;
}
      
.get-started-center {
  transform: translateX(-50%);
}
      
.btn-get-started {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}
      
.btn-get-started:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
}
      
.get-started-text {
  font-size: 0.85rem;
  font-weight: 500;
}

/* 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(--contact-us-bg);
}

.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(--footer-bg);
    color: var(--footer-text);
    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);
}

@media (min-width: 0) and (max-width: 576px) {
  .title-text {
    font-size: var(--font-title-sm) !important;
    margin-bottom: 20px;
  }

  .description-text {
    font-size: var(--font-desc-sm);
  }

  .logo-two {
    font-size: var(--font-logo-main-sm);
  }

  .logo-name {
    font-size: var(--font-logo-sub-sm);
    margin-top: -5px;
  }

  .mini-title-text {
    font-size: var(--font-mini-label-sm);
  }

  .hero-divider {
    height: var(--hero-divider-height-sm);
  }

  #hero_nav_items {
    left: auto !important;
    top: var(--hero-nav-top-sm) !important;
    border-radius: 10px !important;
    flex-direction: column !important;
    gap: var(--hero-nav-gap-sm) !important;
    background: var(--primary-color, #427E72) !important;
    z-index: 9999;
    height: auto;
    text-align: center;
    padding: var(--hero-nav-padding-sm);
  }

  #hero_nav_items .hero-nav-link {
    display: block;
    width: 100%;
    padding: 1rem 4rem;
    font-size: var(--hero-nav-font-sm);
    border-radius: 0;
  }

  .custom-tab {
    font-size: var(--font-mini-label-sm) !important;
    padding: 10px;
  }

  .card-text,
  .faq-description,
  .section-description,
  .feature-item,
  .card-description,
  .form-floating,
  .submit-btn {
    font-size: var(--font-paragraph-sm) !important;
  }

  .faq-title,
  .card-title {
    font-size: var(--font-heading-sm);
  }

  .feature-title {
    font-size: var(--font-subheading-sm);
  }

  .price-amount {
    font-size: var(--font-price-sm);
  }

  .feature-list li {
    font-size: var(--font-list-item-sm);
  }

  .feature-details, .text-success{
    font-size: var(--font-paragraph-sm);
  }

  .feature-item-first {
    text-align: center;
    font-size: var(--font-paragraph-sm);
  }
}

/* back-to-home */

.social-login-icons {
 -webkit-box-reflect: below 5px linear-gradient(transparent, #0005);
  bottom: 70px;
  right: 20px;
}

.socialcontainer {
  height: 80px;
}

.icon,
.social-icon-1,
.social-icon-1-1 {
  width: 50px;
  height: 50px;
}

.social-icon-1 {
  background-color: #427e72;
  transition: transform 0.4s cubic-bezier(0.46, -0.78, 0.5, 1.56);
}

.social-icon-1 i {
  opacity: 0;
  font-size: 1.7em;
  transition: opacity 0.5s 0.2s;
}

.social-icon-1-1 {
  background-color: #427e7291;
}

.social-icon-1-1 i {
  font-size: 1.7em;
}

.socialcontainer:hover .social-icon-1 {
  transform: translateY(-72px);
}

.socialcontainer:hover .social-icon-1 i {
  opacity: 1;
}

.morphine-bg {
  background: #254842;
  backdrop-filter: blur(15px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}