* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Logo Styling */
.logo-img {
  height: 70px;
  width: auto;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}


/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #e0f7fa;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #00796b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
.services,
.packages,
.portfolio,
.contact {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.services h2,
.packages h2,
.portfolio h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service,
.package {
  margin-bottom: 2rem;
}

.service h3,
.package h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service p,
.package p {
  font-size: 1rem;
  line-height: 1.6;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.package ul li {
  margin-bottom: 0.5rem;
}

/* Package Grid */
.package-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.package {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

form input,
form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 0.75rem;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 1rem 0;
  }
}
/* Blog Section Background */
.blog {
  background: #e0f7fa; /* soft blue like your hero section */
  border-top: 4px solid #00796b; /* teal accent */
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: left;
  border-radius: 0 0 8px 8px;
}

/* Blog Header */
.blog h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #00796b;
}

.blog p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Archive Sidebar */
.blog-archive {
  background: #ffffff;
  border: 1px solid #ccc;
  border-left: 4px solid #00796b;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.blog-archive h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #00796b;
}

.blog-archive ul li a {
  color: #00796b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-archive ul li a:hover {
  color: #004d40;
  text-decoration: underline;
}

/* Blog Posts */
.post {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid #00796b;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.post h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00796b;
}

.post h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #004d40;
}

.post a {
  color: #00796b;
  text-decoration: underline;
}

.post a:hover {
  color: #004d40;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-archive,
  .blog-posts {
    width: 100%;
  }

  .blog-archive {
    margin-bottom: 2rem;
  }
}
.samples {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.samples h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00796b;
}

.sample-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sample-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
}

.sample-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.sample-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00796b;
}

.sample-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.sample-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.demo-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #00796b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.demo-btn:hover {
  background: #004d40;
}
.sample-card img {
  width: 100%;
  height: 180px; /* fixed height for consistency */
  object-fit: cover; /* crops excess while preserving aspect ratio */
  border-radius: 6px;
  margin-bottom: 1rem;
}
.services {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00796b;
}

.service-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00796b;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
