body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a; /* navy blue */
  color: #ffffff; /* default text color */
}

/* Header container */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0f172a;
  margin: 0;
  padding: 0;
}

/* Logo block flush left */
.logo-block {
  flex: 0 0 300px;
  background: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  border: 3px solid #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.logo-block img {
  height: 70px;
}

.logo-block h1 {
  margin: 0;
  font-size: 16px;
  margin-left: 30px;
  color: #0f172a;
}

/* Nav links centered */
nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #22c55e;
}

/* Buttons aligned right */
.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin-left: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.demo-btn {
  background-color: #22c55e;
  color: #fff;
}

.demo-btn:hover {
  background-color: #1a9e4a;
}

.quote-btn {
  background-color: #7a0505; /* orange for contrast */
  color: #fff;
}

.quote-btn:hover {
  background-color: #c2410c;
}

/* Shrink effect on scroll */
header.shrunk .logo-block {
  flex: 0 0 150px;
}

header.shrunk .logo-block img {
  height: 40px;
}

header.shrunk .logo-block h1 {
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 80px 20px 40px;
  /*background: linear-gradient(rgba(15,23,42,0.7), rgba(6, 53, 40, 0.4)),
              url("images/Slide2.jpg") no-repeat center center; 
              background-size: cover;*/
              
background: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  max-width: 100%;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #22c55e;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e5e7eb; /* lighter gray for readability */
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.feature-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #1e293b; /* lighter navy strip */
  color: #fbfdfc;      /* bright green text/icons */
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  flex-wrap: wrap; /* responsive for smaller screens */
}

.feature-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-strip span:hover {
  transform: scale(1.1);
  color: #38bdf8; /* sky blue hover */
}

.feature-strip i {
  font-size: 18px;
}

/* Value Proposition */
.value-prop {
  text-align: center;
  padding: 40px 20px;
  margin-top: 0; /* ensure no extra margin */
  max-width: 100%;
  background-color: #0f172a;
}

.value-prop h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #22c55e; /* green heading for contrast */
}

.value-prop p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #e5e7eb;
}

.tiles {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tile {
  flex: 1;
  max-width: 300px;
  background: #1e293b; /* lighter navy tile */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
}

.tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.tile h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #38bdf8; /* sky blue headings */
}

.tile p {
  font-size: 15px;
  color: #e5e7eb;
}

/* Why Choose Section */
/* Why Choose Section */
.why-choose {
  background: #0f172a; /* navy background */
  padding: 60px 20px;
  text-align: center;
  max-width: 100%;
}

.why-choose h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #22c55e; /* bright green heading */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: #01040a;;
  box-shadow: 0 4px 12px rgba(154, 172, 52, 0.3);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(34,197,94,0.4); /* green glow */
 box-shadow: #f9fafb;
}

.why-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #e47717; /* sky blue subheading */
}

.why-card p {
  font-size: 15px;
  color: #e5e7eb; /* light gray text */
  line-height: 1.5;
}


/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #1e293b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.feature-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.feature-card h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #38bdf8;
}

.feature-card p {
  font-size: 15px;
  color: #e5e7eb;
  line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 80px 40px;
  background: #0f172a;
  max-width: 100%;
}

.pricing-section h1 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #22c55e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #1e293b;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e5e7eb;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #22c55e;
}

.pricing-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #38bdf8;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 14px;
  color: #e5e7eb;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  color: #22c55e;
}

.pricing-card.pro {
  border: 2px solid #22c55e;
  box-shadow: 0 0 20px rgba(34,197,94,0.4);
}
#mainFooter {
  background: #010807;   /* dark navy for contrast */
  padding: 6px 10px;     /* minimal padding */
  text-align: center;
  border-top: 1px solid #ccc;
}

#mainFooter h3 {
  font-size: 15px;       /* smaller heading */
  margin: 2px 0;
  color: #00bfff;
}

#mainFooter p {
  font-size: 13px;       /* smaller text */
  margin: 1px 0;         /* very tight spacing */
  color: #f0f0f0;
}

.footer-logo {
  width: 100px;           /* slightly smaller logo */
  margin-bottom: 2px;    /* reduced gap */
}
.green-text {
  color: #22c55e;        /* vivid green */
}

.blue-text {
  color: #00bfff;        /* bright sky blue */
}

section {
  max-width: 400px;
  margin: 20px auto;
  padding: 100px;
  background: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #004080;
}

input, textarea {
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #00bfff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  background: #0e0a41;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background:  #011b0a;
}

.contact-section h2 {
  text-align: center;
  font-size: 26px;
  color: #004080;
  margin-bottom: 15px;  /* space between title and form */
}
