/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fdfdfd;
}

a {
  text-decoration: none;
  color: inherit;
}


.update-bar {
  background: #004aad; /* brand blue */
  color: #ffffff;
  text-align: center;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  width: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.update-bar strong {
  color: #ffeb3b; /* highlight date */
}

.close-btn {
  position: absolute;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #ffeb3b;
}

body {
  padding-top: 45px; /* prevents overlap with the fixed bar */
}

.updates {
  background: #f4f8ff;
  border-left: 5px solid #004aad;
  padding: 20px 30px;
  margin: 60px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.updates h3 {
  color: #004aad;
  margin-bottom: 15px;
  font-size: 20px;
}

.updates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.updates li {
  font-size: 16px;
  padding: 6px 0;
  color: #333;
}


/* ============================= */
/* Header (Sticky) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0a3d62;
  color: white;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.8rem;
}

.tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: #f1c40f;
}

.header-center nav {
  display: flex;
  gap: 1.5rem;
}

.header-center nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.header-center nav a:hover {
  color: #f1c40f;
}

.header-right {
  text-align: right;
  font-size: 0.9rem;
}

.header-right a {
  color: #f1c40f;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #f1c40f;
}


/* ============================= */
/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  background: linear-gradient(270deg, #0a3d62, #3c6382, #0a3d62);
  background-size: 600% 600%;
  animation: heroAnimation 15s ease infinite;
  color: white;
  flex-wrap: wrap;
  box-shadow: inset 0 -5px 20px rgba(0,0,0,0.1);
}

@keyframes heroAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-align: left;
}

.hero-text .highlight {
  color: #f1c40f;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #fdfdfd;
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #f1c40f;
  color: #0a3d62;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
  margin-right: 10px;
}

.btn:hover {
  background: #d4ac0d;
  transform: scale(1.05);
}

/* Client Stats Below Hero 
.client-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  color: #fff;
}

.client-stats div {
  text-align: center;
}

.client-stats h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.client-stats p {
  font-size: 1rem;
} */

/* ============================= */
/* Sections */
section {
  padding: 3rem 2rem;
}

h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0a3d62;
  text-align: left;
  border-left: 5px solid #f1c40f;
  padding-left: 0.8rem;
}

/* ============================= */
/* About Us */
#about .about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#about .about-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Why Us Subsection */
.why-us {
  margin-top: 1.5rem;
}

.why-us h3 {
  color: #0a3d62;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.why-us ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.why-us ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* ============================= */
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: #0a3d62;
}

/* ===== Our Features Section ===== */
.features-section {
 position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
  
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.features-overlay::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(rgba(247, 244, 244, 0.15), transparent 70%);
  top: -100px;
  left: -150px;
  border-radius: 50%;
  animation: float1 10s ease-in-out infinite alternate;
}

.features-overlay::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(255,255,255,0.1), transparent 80%);
  bottom: -100px;
  right: -150px;
  border-radius: 50%;
  animation: float2 12s ease-in-out infinite alternate;
}

@keyframes float1 {
  from { transform: translateY(0px); }
  to { transform: translateY(30px); }
}
@keyframes float2 {
  from { transform: translateY(0px); }
  to { transform: translateY(-30px); }
}

.features-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 1;
  text-align: center;
}

.features-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: rgba(7, 6, 6, 0.85);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: left;
}

.feature-column {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-column:hover {
  transform: translateY(-5px);
  background: rgba(33, 8, 103, 0.15);
}

.feature-column h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #060606;
  border-bottom: 1px solid #081c7733;
  padding-bottom: 8px;
}

.feature-column ul {
  list-style: none;
  padding: 0;
}

.feature-column ul li {
  margin: 8px 0;
  font-size: 1rem;
  color: rgba(15, 13, 13, 0.9);
  display: flex;
  align-items: center;
}

.feature-column ul li::before {
  content: "✔";
  color: #00ffcc;
  margin-right: 10px;
  font-size: 0.9rem;
}



/* ============================= */
/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-card img {
  max-width: 120px;
  margin-bottom: 1rem;
}

/* ============================= */
/* Pricing Section */
.software-pricing {
  margin-bottom: 3.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.software-pricing h3 {
  color: #0a3d62;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  text-align: left;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.software-pricing .price-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.software-pricing .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.software-pricing .price-card h4 {
  margin-bottom: 0.6rem;
  color: #f1c40f;
  font-size: 1.2rem;
}

.software-pricing .price-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.software-pricing .price-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  margin-top: 0.8rem;
}

.software-pricing .price-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.software-pricing .note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.8rem;
  text-align: left;
}

/* ===== Client Statistics Section ===== */
#stats {
  background: #f9fafc;
  padding: 3rem 2rem;
  text-align: center;
}

#stats h2 {
  color: #0a3d62;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left; /* Keep section title left aligned */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #f1c40f;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: #333;
}


/* ============================= */
/* Contact */
#contact iframe {
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
}

/* ============================= */
/* Footer */
footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ============================= */
/* Mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .header-center {
    display: none;
    width: 100%;
  }

  .header-center.active {
    display: block;
  }

  .header-center nav {
    flex-direction: column;
    gap: 1rem;
    background: #0a3d62;
    padding: 1rem;
    border-radius: 8px;
  }

  .hero {
    flex-direction: column;
    text-align: left;
  }

  #about .about-content {
    flex-direction: column;
    text-align: left;
  }

  .client-stats {
    flex-direction: column;
    gap: 20px;
  }

  section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Global Mobile Fixes (Simplified & Stable) --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Fix top overlap due to sticky header + update bar */
@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }
}

/* Make hero section text & buttons centered on mobile */
@media (max-width: 768px) {
  .hero-text h2, 
  .hero-text p {
    text-align: center !important;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 250px;
    text-align: center;
  }
}

/* Responsive grids (1-column on small screens) */
@media (max-width: 768px) {
  .services-grid,
  .features-grid,
  .partners-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .feature-column, 
  .partner-card, 
  .stat-card {
    text-align: center;
    padding: 20px;
  }

  .feature-column ul {
    padding-left: 0;
    list-style: none;
  }
}

/* Fix hidden sections (some themes had opacity animations) */
section {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Header responsive behavior */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .header-left h1 {
    font-size: 1.3rem;
  }

  .header-right {
    display: none; /* hides contact info for cleaner look */
  }

  nav {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }

  nav a {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #004aad;
  }

  .header-center {
    display: none;
  }

  .header-center.active {
    display: block;
  }
}

/* Mobile-friendly updates bar */
.update-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0056b3;
  color: #fff;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
}

.update-bar .close-btn {
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}

/* Footer tweaks */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #f5f5f5;
  word-wrap: break-word;
}



}
