/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  padding: 30px 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  background-color: #000;
}

.header h1 {
  font-size: 32px;
  color: #ec1313;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
  color: #fcfafa;
  z-index: 0;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card styling */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  border-left: 5px solid #c61313;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #d11111;
}

.service-card p {
  font-size: 15px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Buttons */
.card-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.learn-more {
  background-color: #e01313;
  color: #fff;
}

.learn-more:hover {
  background-color: #910c0c;
}

.contact {
  background-color: #e0e0e0;
  color: #333;
}

.contact:hover {
  background-color: #c7c7c7;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
}

header {
  text-align: center;
  padding: 30px 20px;
  background-color: #111; /* Darker black */
  color: white;
  animation: fadeIn 1s ease-in-out;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1rem;
  opacity: 0.8;
}

.accordion {
  max-width: 800px;
  margin: 30px auto;
  background: #111; /* Dark background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  animation: slideUp 0.8s ease-in-out;
}

.accordion-item {
  border-bottom: 1px solid #333; /* Light grey border */
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #222; /* Slightly lighter black */
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.accordion-header:hover {
  background: #333;
  transform: scale(1.02); /* Slight zoom effect */
}

.plus {
  font-size: 1.4rem;
  color: #fff; /* White plus sign */
  transition: transform 0.3s;
}

.accordion-header.active .plus {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #111;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #ccc; /* Light grey text */
  transition: max-height 0.4s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.accordion-content.open {
  padding: 15px 20px;
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }
  .accordion {
    margin: 15px;
  }
  .accordion-header {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}

/* ---------------------------------------
navbar
--------------------------------------- */


#navbar{
  display: flex;
  position: sticky;
  padding-bottom: 20px;
  z-index: 1000;
  
}


