* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #1e1e1e;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  float: left;
  margin-left: 20px;
}

nav {
  float: right;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #333;
  border-radius: 5px;
}

header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('./images/BLOGS-04.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  position: relative;
  text-align: center;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons .btn {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buttons .btn:hover {
  background-color: #e03e00;
}

/* Blogs Section */
.blogs {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.blogs h2 {
  text-align: center;
  margin-bottom: 40px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blogs-grid article {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #ff4500;
  border-radius: 5px;
}

.blogs-grid h3 {
  margin-bottom: 10px;
}

.blogs-grid p {
  font-size: 0.95em;
}





/* Services Section */
.services {
    padding: 4rem 0;
   background-color: #f2f2f2;
}

.services h2 {
     text-align: center;
  margin-bottom: 40px;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}


.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #666;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}



/* About Section */
.about {
  padding: 60px 0;
  background-color: #eaeaea;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}
.section-title{
     text-align: center;
  margin-bottom: 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2E7D32;
    transition: transform 0.3s ease;
}

.testimonial-content p {
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2E7D32;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}


  a{
    text-decoration: none;
    color: white;
  }