* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}
a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 20px 0;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6600;
  letter-spacing: 2px;
  float: left;
}

/* .container li:hover{
    color: #df1010;
} */
nav {
  float: left;
  margin-left: 40px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  font-weight: 500;
  color: #222;
  padding: 8px 0;
}
.header-contact {
  float: right;
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: #222;
}

/* Clearfix */
header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #f8f9fb 60%, #ffe5d0 100%);
  padding: 60px 0 40px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text {
  flex: 1;
}
.hero-text h4 {
  color: #ff6600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-text p {
  margin-bottom: 24px;
  color: #555;
}
.hero-image {
  flex: 1;
  text-align: right;
}
.hero-image img {
  max-width: 400px;
  width: 100%;
}

/* Services Overview */
.services-overview {
  background: #fff;
  padding: 50px 0 30px 0;
  text-align: center;
}
.services-overview h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}
.services-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.service-item {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 30px 20px;
  width: 230px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s;
}
.service-item:hover {
  box-shadow: 0 4px 16px rgba(255,102,0,0.08);
}
.service-item img {
  width: 48px;
  margin-bottom: 15px;
}
.service-item h4 {
  margin-bottom: 10px;
  color: #ff6600;
  font-size: 1.1rem;
}

/* Stats Section */
.stats {
  background: linear-gradient(90deg, #ff6600 0%, #ffb380 100%);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin: 40px 0 0 0;
}
.stats .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.stat-item h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 1rem;
}

/* Team Section */
.team {
  background: #fff;
  padding: 50px 0 30px 0;
  text-align: center;
}
.team h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.team-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.team-member {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px 10px;
  width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  object-fit: cover;
}
.team-member h4 {
  margin-bottom: 5px;
  color: #222;
  font-size: 1.1rem;
}
.team-member p {
  color: #ff6600;
  font-size: 0.95rem;
}

/* Features Section */
.features {
  background: #f8f9fb;
  padding: 50px 0;
}
.features-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.features-text {
  flex: 1;
}
.features-text h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.features-text ul {
  margin-top: 15px;
  list-style: disc inside;
  color: #ff6600;
}
.features-image {
  flex: 1;
  text-align: right;
}
.features-image img {
  max-width: 320px;
  width: 100%;
}

/* Services Grid */
.services-grid {
  background: #fff;
  padding: 50px 0 30px 0;
  text-align: center;
}
.services-grid h2 {
  font-size: 1.7rem;
  margin-bottom: 30px;
}
.services-grid .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.services-grid .service-item {
  width: 220px;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 22px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.services-grid .service-item a {
  display: inline-block;
  margin-top: 10px;
  color: #ff6600;
  font-weight: 500;
}

/* Portfolio Section */
.portfolio {
  background: #f8f9fb;
  padding: 40px 0;
}
.portfolio-list {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.portfolio-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 10px;
  width: 260px;
}
.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Blog Section */
.blog {
  background: #fff;
  padding: 50px 0 30px 0;
  text-align: center;
}
.blog h2 {
  font-size: 1.7rem;
  margin-bottom: 30px;
}
.blog-list {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-post {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 22px 12px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.blog-post .date {
  color: #ff6600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}
.blog-post h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter {
  background: #ff6600;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.newsletter h2 {
  margin-bottom: 18px;
}
.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.newsletter input[type="email"] {
  padding: 10px 16px;
  border-radius: 25px;
  border: none;
  width: 250px;
  font-size: 1rem;
}
.newsletter button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter button:hover {
  background: #fff;
  color: #ff6600;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 40px 0 20px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links h4 {
  margin-bottom: 10px;
  color: #ff6600;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  font-size: 1rem;
}
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #bbb;
  width: 100%;
}

@media (max-width:768px){
  body{background-color: darkred}
}