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

body {
  font-family: 'Roboto', 'Signika', sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #000000;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 0px 0px;
}

/* getintouchpage.css */
.hero {
  position: relative;
  background: url("../images/plain-white1.jpg") no-repeat center center/cover;
  min-height: 100vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 7px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  color: #fff;

  display: flex;
  align-items: flex-start;     /* push content from top */
  justify-content: center;     /* center horizontally */
  padding: 120px 60px 60px;    /* top padding pushes content down */
  box-sizing: border-box;
}


.navbar {
  background: transparent;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  flex-wrap: nowrap;
}

.logo img {
  max-height: 100px;
  height: auto;
  width: auto;
  margin-right: 15px;
  margin-left: -25px;
}

/* Navigation links */
.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-bottom: 50px;
  margin-left: 25px;
}

.main-nav ul li {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  color: #000000;
}

.main-nav ul li::before {
  content: "•";
  color: #0096ff;
  margin-right: 12px;
  font-size: 12px;
}

.main-nav ul li:first-child::before {
  content: "•";
  margin-right: 12px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a.active {
  font-weight: bold;
  color: #0096ff;
}

.navbar ul li a:hover {
  color: #0096ff;
}

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -30px 20px 10px 150px;
}

/* Call us */
.call-us {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #000000;
  gap: 10px;
}

.call-us img {
  width: 30px;
  height: 30px;
  
}

/* Search container */
.search-container {
  position: relative;
  display: inline-block;
  margin: 0 10px -5px 10px;
}

.search-icon {
  width: 40px;
  height: 40px;
  background: #0096ff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Search box hidden initially */
.search-box {
  position: absolute;
  top: 60px;                     /* vertical gap below icon */
  left: 50%;                     /* center align with icon */
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  border: 1px solid #0096ff;     /* blue border */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.25); /* bluish shadow */
  z-index: 1000;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Arrow pointing to icon */
.search-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
}

.search-box::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid #0096ff; /* blue border for arrow */
  z-index: -1;
}

/* Active search box (expand with animation) */
.search-box.active {
  max-height: 200px;
  opacity: 1;
  overflow: visible; /* allow arrow to show */
}

/* Form inside search box */
.search-box form {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Input field */
.search-box input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #0096ff;   /* blue input border */
  border-radius: 4px;
  font-size: 14px;
}

/* Search button */
.search-box button {
  padding: 6px 14px;
  background: #0096ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #007bff;
}

/* White pill-shaped background container */
.get-in-touch-wrapper {
  position: absolute;
  top: 10px;   /* inside the cut */
  right: 25px;
  z-index: 3;  /* above the white cut */
}

.get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0382fa;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.get-in-touch img {
  margin-left: 8px;
  font-size: 14px;
  filter: brightness(0) invert(1);
}

.get-in-touch:hover {
  background: #272727;
}


/* Hero Section Wrapper */
.hero-content {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;              /* take full width */
  top: 100px;
  position: relative;
  z-index: 3;
  text-align: left;
  min-height: 500px;        /* ensures equal height left & right */
  max-width: 1300px;
  margin: 0 auto;   /* keeps it centered horizontally */
}

/* Left Blue Section */
.hero-left {
  flex: 1;
  background: #0072ce url('images/pattern-bg.png') repeat;
  color: #fff;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: bottom;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push tagline to left and logo to right */
  width: 80%;
  margin-bottom: 20px;
}

.hero-left .badge img {
  max-width: 100px;
  height: auto;
  margin: 0;
}

.hero-left .tagline {
  display: inline-block;
  width: fit-content;
  max-width: max-content;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #fff;                  /* white text */
  border: 2px solid #fff;       /* white border */
  background: transparent;      /* no fill */
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero-left h1 span {
  color: #ffde59;
  font-weight: 700;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: #0072ce;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  width: fit-content;
}

.btn-cta:hover {
  background: #ffde59;
  color: #000;
}

/* Right Image Section */
.hero-right {
  flex: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}






/* Features Cards Section */
.features {
  background: #f9f9f9;
  padding: 20px 80px;
  margin-top: 150px
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 50px;       /* icon size */
  height: 50px;
  flex-shrink: 0;    /* prevent shrinking */
}

.feature-text h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #000;
}

.feature-text p {
  font-size: 10px;
  color: #555;
  margin: 0;
}


/* Who We Are Section*/
.about-badge {
  background: #1f8afc;
}

.badge-number {
  color: #ffffff;
}

.about-badge p {
  color: #ffffff;
}

.about-right .highlight {
  color: #007bff;
}

.feature-box img {
  width: 100px;
  height: 100px;
  margin-left: -25px;
  margin-bottom: -15px;
}












/* Features Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: auto auto;
  padding: 0px 40px;
  background: #fdfdf6;  /* light beige background */
  border-radius: 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left Image */
.about-left {
  flex: 0 0 55%;
}

.about-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Right Content */
.about-right {
  flex: 0 0 45%;     /* Text side fixed at 55% */
}

.about-right .tag {
  display: inline-block;
  background: #f4f7f9;
  color: #333;
  font-size: 14px;
  font-weight: 550;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.tag .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -3px;
  margin-right: 6px;
}

.about-right h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}


/* Features list */
.about-features {
  display: flex;
  gap: 90px;
}

.about-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-features li {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about-features li img {
  width: 20px;
  height: 20px;
}

/* CTA button */
.about-right .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0072ff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-right .btn:hover {
  background: #0056cc;
}

.about-right .btn img {
  filter: brightness(0) invert(1);
}





.products {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
 
.products-header {
  display: flex;
  align-items: left;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
 
.products-header .tag {
  background: #f5f5f5;
  font-size: 13px;
  color: #666;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}
 
.products-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  flex: 1 1 100%;
}
 
 
.nav-arrows {
  display: flex;
  gap: 8px;
 
}
 
.nav-arrows .arrow {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s;
}
 
.nav-arrows .arrow:hover {
  background: #0072ce;
  color: #fff;
  border-color: #0072ce;
}
 
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
 
.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}
 
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
 
.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}
 
.rating {
  color: #ffcc00;
  font-size: 14px;
  margin-bottom: 10px;

}
 
.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
 
.price {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
 
.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}
 
.cart-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  border: none;
  background: #0072ce;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
 
.cart-btn:hover {
  background: #005bb5;
}















/* Section container */
.product-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 120px auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 60px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Left side image */
.product-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-left img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right side content */
.product-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-right .tag {
  display: inline-block;   /* ✅ prevents stretching */
  background: #f4f7f9;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 0px;
  width: auto;        /* ✅ prevent stretching */
  max-width: fit-content; /* ✅ shrink to text */
}

.product-right .tag .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -5px;   /* negative = move upward */
  right: 7px;
}

.product-right h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  color: #222;
  margin-bottom: 10px;
}

.product-right p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 450px;
}

.product-right .btn {
  display: inline-flex;    /* ✅ keeps text & icon aligned */
  align-items: center;
  justify-content: center;
  gap: 8px;                /* ✅ space between text & arrow */
  background: #0072ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  width: auto;             /* ✅ shrink */
  max-width: fit-content;  /* ✅ shrink */
}

.product-right .btn:hover {
  background: #0056cc;
}

/* Make arrow white */
.product-right .btn img {
  filter: brightness(0) invert(1);
  font-size: 14px;
}





.products-section {
  text-align: center;
  padding: 60px 60px;
  background: #f9f9f9; /* optional, remove if not needed */
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.products-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077cc;      /* blue background */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 25px;      /* pill shape */
}

.products-tag img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -7px;
  filter: brightness(0) invert(1);
}

.products-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.product-filters {
  margin-bottom: 40px;
  text-align: left;
}
 
.filter-btn {
  background: transparent;
  border: 0.5px solid #ddd;
  padding: 8px 22px;
  margin: 0 6px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
 
.filter-btn:hover,
.filter-btn.active {
  background: #3a3a3a;
  color: #fff;
  border-color: #0077ff;
}
 
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
 
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}
 
.product-card:hover {
  transform: translateY(-8px);
}
 
.product-card img {
  max-width: 140px;
  margin-bottom: 15px;
}
 
.product-info h3 {
  font-size: 18px;
  color: #222;
  margin: 8px 0;
}
 
.product-info .stars {
  color: #ffc107;
  font-size: 14px;
}
 
.price {
  font-size: 16px;
  color: #0077ff;
  font-weight: 600;
}
 
.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

 
/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
 
.page-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}
 
.page-btn:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
}
















.testimonials-section {
  padding: 60px 10%;
  background: #fafaf5;
  justify-content: left;
}
 
.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: left;
}
 
/* Left side */
.testimonial-left .testimonial-tag {
  display: inline-block;
  background: #f5f5f0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-tag .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -5px;   /* negative = move upward */
  right: 7px;
}
 
.testimonial-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}
 
.testimonial-nav {
  display: flex;
  gap: 10px;
  padding-left: 10px;
  padding-bottom: 20px;
}
 
.nav-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 5%;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: #4CAF50;
  color: #fff;
}
 
/* Right side */
.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
 
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}
 
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-photo {
  position: relative;   /* parent for absolute positioning */
  display: inline-block;
}

.author-photo img {
  width: 60px;          /* adjust as per your design */
  height: 60px;
  border-radius: 50%;   /* makes it circular */
  object-fit: cover;
}

.quote-icon {
  position: absolute;
  top: -2px;    /* moves it slightly above */
  right: -2px;  /* moves it slightly to the right */
  width: 20px;
  height: 20px;
}

.quote-icon img {
  width: 100%;
  height: 100%;
  background: gold;
}


 
.testimonial-author h4 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
 
.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
}
 

.carousel-dots {
  display: flex;
  justify-content: right;
  align-items: center; /* ensures vertical middle alignment */
  gap: 8px;
  margin-top: 30px;
}

.carousel-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: gray;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active (first) dot */
.carousel-dots span.active {
  width: 12px;
  height: 12px;
  background: #f7c948; /* yellow */
}


















/* Blogs Section */

/* Blogs Section */

.latest-blogs {
  padding: 5px 50px;
  margin: auto;
  max-width: 1450px;
}

/* Latest Blog pill */
.blog-section-label {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 3px;
  margin-left: 80px;
  margin-top: 10px;
}

.blog-section-label .img {
  width: 16px;
  height: 16px;
  position: relative;
  top: -7px;   /* negative = move upward */
  right: 7px;
}

.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 80px;
}

.blogs-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.arrows {
  display: flex;
  gap: 10px;
  padding: 0 20px;
}

.arrow {
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.arrow:hover {
  background: #fcc102;
  transform: translateY(-2px);
}

.blog-carousel-container {
  overflow: hidden;
  width: calc(320px * 3 + 20px * 2);
  margin: 0 auto;
}

.blog-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Cards now have natural height, not square */
.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  flex: 0 0 320px;   /* do not shrink below 320 */
  width: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-image {
  position: relative;   /* important: anchors button inside */
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.blog-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffffff;
  color: #559e11;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 550;
  border-radius: 50px;
  z-index: 999;          /* make sure it's on top */
  display: inline-block;
}

.blog-link-btn {
  position: absolute;
  bottom: 0px;     /* small spacing from bottom */
  right: 0px;      /* small spacing from right */
  background: #0978f7;
  width: 40px;      /* button size */
  height: 40px;
  border-radius: 50%;  /* circle */
  display: flex;       /* center icon */
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.blog-link-btn:hover {
  background: #065ac1;
}

.blog-link-btn img {
  width: 18px;   /* adjust to fit inside circle */
  height: 18px;
  filter: brightness(0) invert(1);
}

.blog-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 3.0rem;
  color: #555;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;              /* make each span a flex container */
  align-items: center;        /* vertically center icon + text */
  gap: 6px;                   /* spacing between icon and text */
  font-weight: 600;      /* makes text bold */
}

.blog-meta img {
  width: 18px;
  height: 18px;
  display: block;
  font-weight: bold;
}



















