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

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #f4f6f8;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 10px;
}

header .profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #333;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

nav ul li a:hover {
  background-color: #f0f0f0;
}

#menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4f8cff, #6fd6ff);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 20px 20px;
}

.hero h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

/* Section */
section {
  padding: 40px 0;
}

section h3 {
  color: #4f8cff;
  margin-bottom: 10px;
}

section p {
  margin-bottom: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #4f8cff;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-bottom: 5rem;
  margin-top: 0;
  
}

.btn:hover {
  background: #357bd8;
}

/* Read More Button (Green) */
.btn-readmore {
  background: #2e8b57;
}

.btn-readmore:hover {
  background: #256f48;
}

 .my-section{
     background: lightblue;
      border-radius: 12px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 40px;
      margin-left: 10px;
      margin-right: 10px;
      padding-left: 5rem
      text-align: center;
      overflow: hidden;
      transition: transform 0.2s ease;
     
    }
    

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

form button {
  background: #4f8cff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1em;
}

form button:hover {
  background: #357bd8;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: absolute;
    right: 10px;
    top: 70px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }

  nav.open ul {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

  header .logo img {
    height: 40px;
  }

  header .profile img {
    width: 40px;
    height: 40px;
  }

  .hero h2 {
    font-size: 2em;
  }
  .started {
    display: inline-flex;
    background: black;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background-color: #f8f9fa;
  color: #333;
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

header .logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #007bff;
}

/* Hero / Blog Post */
.blog-post h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.featured-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin: 20px 0;
  border-radius: 10px;
}

.blog-post h2 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #222;
}

.blog-post ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post blockquote {
  background-color: #eef6ff;
  padding: 15px 20px;
  border-left: 4px solid #007bff;
  margin: 20px 0;
  font-style: italic;
}

/* Buttons */
.btn-readmore {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-readmore:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}