/* General Reset and Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #000;
  padding: 1rem 2rem;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar nav a:hover {
  color: #f26522;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.btn-primary {
  background: #f26522;
  color: white;
  padding: 12px 30px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #ea580c;
}

/* Section General */
.section {
  padding: 60px 20px;
  text-align: center;
}
.section.alt {
  background: #f7f9fc;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Features Cards */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 250px;
  font-weight: 600;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

/* Benefits List */
.list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.list li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 1.2rem;
  position: relative;
}
.list li::before {
  content: "✔";
  color: #f26522;
  position: absolute;
  left: 0;
  top: 0;
}

/* Testimonials with Photos */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonial-card h4 {
  margin: 10px 0 4px;
  font-weight: 600;
}
.testimonial-card small {
  color: #777;
  font-size: 0.85rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

/* Technologies */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8cm;
  max-width: 1000px;
  margin: 60px auto;
  justify-items: center;
  align-items: center;
}

.tech-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 180px;
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.tech-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.tech-item span {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  text-transform: uppercase;
}
/* General Reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f4f8;
  display: flex;
  flex-direction: column;
}

body > footer {
  margin-top: auto;
}

/* Navbar */
.navbar {
  background: #1c1c1c;
  padding: 15px 0;
  color: white;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.navbar nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

/* Main Section */
.main-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
  flex: 1;
}

.contact-form {
  flex: 1 1 500px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0,0,0,0.1);
}

.contact-form h1 {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 14px 30px;
  background-color: #f26522;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  flex: 1 1 500px;
}

.info-box {
  background: white;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0,0,0,0.1);
}

.info-box h3 {
  margin-top: 0;
}

.info-box p {
  margin: 10px 0;
  line-height: 1.6;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  border: 0;
}

/* Footer */
footer {
  background: #1c1c1c;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .map-container iframe {
    height: 220px;
  }
}
.success {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.error {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}