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

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

a {
  text-decoration: none;
  color: #ff6600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
}

/* Hero */
.hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f2f2f7);
  box-shadow: inset 0 0 50px rgba(255, 165, 0, 0.05);
}

.hero h1 {
  font-size: 2.75rem;
  color: #222;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}

.cta:hover {
  background: #e55b00;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
}

/* Sections */
.page-section {
  padding: 4rem 0;
}

.page-section h1 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.page-section p {
  font-size: 1rem;
  color: #333;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

footer a {
  color: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
  }

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

  .hero h1 {
    font-size: 2rem;
  }
}

/* Centered logo in hero section */
.center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-large {
  max-width: 300px;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem;
}

/* Responsive background image sections */
.responsive-img {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center center;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .responsive-img {
    height: 200px;
    background-position: center top;
  }
}
/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 0.75rem;
  background-color: #14b8a6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #0e9489;
}
ul {
  list-style-position: inside;
}
li{
  margin-left:50px;
}
p.workwithus{
  font-size: 20px;
}