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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 32px;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #0c2444;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 0;
}

/* Features & Integration */
.features, .integration, .contact {
  text-align: center;
  padding: 60px 20px;
  color: #0c2444;
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.contact-list li {
  margin: 10px 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  background: #ffffff;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background-color: #007acc;
  background-color: #ffffff;
  color: #0c2444;
  padding: 20px;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffffff;
  color: #007acc;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #f9f9f9;
}

/* Features Section */
.features {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
  color: #0c2444;
}

.features h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.features p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Integration Section */
.integration {
  background-color: #ffffff;
  padding: 60px 0;
  color: #0c2444;
  text-align: center;
}

.integration h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.integration p {
  font-size: 18px;
  margin-bottom: 20px;
}


/* Video Wrapper */
.video-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.video-wrapper iframe {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Footer Contact Info */
.footer-contact {
  list-style: none;
  padding: 10px 0 0 0;
  font-size: 14px;
  color: #444;
}
.footer-contact li {
  margin: 5px 0;
}

/* Background Pattern */
body {
  background-image: radial-gradient(circle at 1px 1px, #ddd 1px, transparent 0);
  background-size: 30px 30px;
}

/* Scroll Trigger Appear Animation */
.appear {
  opacity: 1 !important;
  transform: none !important;
}

a, .footer-contact a {
  text-decoration: none;
}

.footer {
  background-color: #ffffff;
}

.integration ul {
  list-style: none;
  padding-left: 0;
}

.integration ul li::before {
  content: "🔹";
  display: inline-block;
  margin-right: 10px;
  color: #007acc;
}

/* Cards */
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
}

.card h4 {
  color: #007acc;
  margin-bottom: 10px;
}

a:hover, .footer-contact a:hover {
  text-decoration: none;
}

/* Integration Cards */
.integration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.integration-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  transition: background-color 0.3s ease;
}

.card:hover, .integration-card:hover {
  background-color: #f2f2f2;
}

.integration-card h4 {
  color: #007acc;
  margin-bottom: 10px;
}

.contact {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.contact h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0c2444;;
}

.contact-details {
  list-style: none;
  font-size: 16px;
  padding-left: 0;
}

.contact-details li {
  margin: 10px 0;
}

.contact {
  background-color: #f9f9f9;
}

.footer {
  background-color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.footer {
  padding: 40px 0;
}