/* styles.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header / Hero Section */
.hero {
  background: linear-gradient(to bottom, #415056, #1d2326);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hdr-01{
  font-size: 2.6rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero .btn {
  padding: 10px 20px;
  background: white;
  color: #415056;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #f1f1f1;
}

/* Section Styling */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.c-bottom{
  margin-bottom: 5rem;
}
.about-section, .features-section, .contact-section {
  padding: 50px 0;
  text-align: center;
}

.about-section h2,
.features-section h2,
.contact-section h2 {
  font-size: 2rem;
  color: #415056;
  margin-bottom: 20px;
}

.about-section p,
.features-section p,
.contact-section p {
  font-size: 1.1rem;
  color: #666;
}

/* Features Section */
.features-section .feature {
  margin: 20px 0;
}

.features-section h3 {
  color: #506168;
  margin-bottom: 10px;
}

.features-section p {
  color: #555;
}

/* Buttons */
.btn-primary {
  background: #388e3c;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2e7d32;
}

.btn-secondary {
  background: #f9f9f9;
  color: #2f3a4a;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: #efefef;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.mrgn-bottom{
  margin-bottom: 3rem;
}