/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  -webkit-tap-highlight-color: transparent;
}
 a {
  text-decoration: none;
} 

:root {
  --header-bg: black;
  --text-color: white;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Prevent auto ads from breaking responsiveness */
ins.adsbygoogle {
  max-width: 100% !important;
  display: block !important;
  height: auto !important;
}

ins.adsbygoogle iframe {
  max-width: 100% !important;
}

.page-wrapper {
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  color: var(--text-color);
  transition: all 0.3s ease;
  padding: 15px 20px;
}

.header.scrolled {
  background-color: white;
  color: black;
}

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

.logo {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  flex: 1;
  color: inherit;
  transition: color 0.3s ease;
  margin-left: 40px;
}

.hamburger {
  font-size: 27px;
  cursor: pointer;
  color: inherit;
}

.subscribe-btn {
  background-color: blue;
  color: white;
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Main content */
.main-content {
  padding: 16px;
}

.category-tag {
  font-size: 15px;
  color: #777;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  padding: 0px;
}

.post-title {
  font-size: 34px;
  font-weight: bold;
  font-family: Georgia, serif;
  color: #222;
  margin: 10px 0;
  padding: 0px 0;
}

.author-line,
.publish-date {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.post-body {
  font-size: 18px;
  line-height: 1.5;
  margin: 20px 0;
  font-family: Georgia, serif;
  color: #111;
}

/* Footer */
.footer {
  background-color: #f9f9f9;
  text-align: center;
  padding: 0 20px;
  margin-top: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-links li {
  margin: 20px 0;
}

.footer-links a {
  color: blue;
  text-decoration: none;
}

.divider {
  width: 100%;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 2000;
  text-align: center;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  padding: 20px;
  font-size: 18px;
}

.side-menu a {
  color: white;
  text-decoration: none;
}

.side-menu a:hover {
  color: whitesmoke;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

.social-icons {
  margin-top: 7px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 30px;
  color: white;
 
}

.social-links {
  text-align: center;
  padding: 20px 0;
  
}

.social-links a {
  display: inline-block;
  margin: -20px 8px;
  font-size: 24px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

/* Brand colors */
.social-links a.fa-facebook-f   { background-color: #3b5998; color: white; }
.social-links a.fa-whatsapp     { background-color: #25D366; color: white; }
.social-links a.fa-telegram     { background-color: #0088cc; color: white; }
.social-links a.fa-instagram    { background-color: #C13584; color: white; }
.social-links a.fa-tiktok       { background-color: #010101; color: white; 
}

.social-links a:hover {
  filter: brightness(1.1);
}
.menu{
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: -50px;
}
.heading {
  color: #000;
  font-size: 30px;
  font-weight: 495;
  font-family: Georgia, serif;
  margin: 10px 0;
}
/*para is to give space between article both up and down*/
.para{
  margin: 8px 0;
}
.blog-banner {
  margin: 10px 0;
  text-align: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.blog-banner .imageContainer {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0 0 0 0;
	overflow: hidden;
	border-radius: 8px;
}
.blog-banner img {
	position: absolute;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.blog-banner img:nth-child(1) {
	left: -100%;
}
.blog-banner img:nth-child(2) {
	left: 0;
}
.blog-banner img:nth-child(3) {
	left: 100%;
}
.blog-banner img:nth-child(n + 4) {
	left: 100%;
}

.blog-banner .buttons {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 90%;
	margin: 0 5% 0 5%;
	display: flex;
	justify-content: space-between;
	z-index: 100;
}

.blog-banner .buttons button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: black;
	backdrop-filter: blur(20px);
	border: 2px solid black;
	color: #FFF;
	font-size: 2em;
}

.blog-video {
  width: 100%;
  max-width: 560px;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-video iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
}
/* 🟦 Google Link */
.google-link {
  text-align: center;
  margin-top: 20px;
}
.google-link a {
  font-size: 18px;
  color: #4285f4;
  text-decoration: none;
}
.google-link a i {
  margin-right: 6px;
  font-size: 20px;
}

/* 🟨 People Also Search */
.search-heading {
  font-size: 22px;
  text-align: center;
  margin-top: 20px;
  color: #333;
  font-family: Georgia, serif;
}

/* 🟩 Search Tags Row */
.search-tags {
  text-align: center;
  margin: 10px 0;
}
.search-tags span {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 5px 12px;
  margin: 5px;
  border-radius: 16px;
  font-size: 14px;
}

/* 🟥 Related Content Blocks */
.related-blocks {
  margin: 30px auto;
  max-width: 600px;
  text-decoration: none;
}
.related-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 2px solid grey;
  border-radius: 6px;
  text-decoration: none;
}
.related-item img {
  width: 100px;
  height: 80px;
  border-radius: 6px;
  margin-right: 15px;
  object-fit: cover;
  text-decoration: none;
}
.related-item p {
  font-size: 19px;
  color: #222;
  margin: 0;
  font-family: Georgia, serif;
  text-decoration: none;
}
.related-blocks a{
  text-decoration: none;
}
.bluetext{
  color: blue;
}
.service-link {
  color: #007BFF;
  font-weight: 500;
  font-size: 19px;
}

.service-link:hover {
  text-decoration: underline;
}
/* 📱 Universal Responsive Styling */

/* Large screens (default desktop view) – your current styles remain as is */
@media(min-width: 900px) and (max-width: 1920px) {
header, footer{
    padding: 15px;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .related-blocks {
    display: grid;
    column-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }

  .search-tags {
    flex-wrap: wrap;
    justify-content: center;
  }
  .subscribe-btn {
  text-decoration: none;
  }
  .footer-links {
     display: flex; 
    flex-direction: row;
    justify-content: center;
    gap: 20px;
 }
}
@media(min-width: 160px) and (max-width: 349px) {
  .hamburger {
    font-size: 15px;
  }
  .subscribe-btn {
    text-decoration: none;
    padding: 0px 0px;
    font-size: 8px;
    float: none;
    position: relative;

  }
  .header {
    width: 100%;
   padding: 5px 20px;
  }

  .logo {
font-size: 8px;
font-weight: none;

}

.related-item {
  flex-direction: column;
  align-items: flex-start;
}
  .related-item img {
    width: 100%;
  }
  .related-item p {
    text-align: left;
    font-size: 10px;
  }

}

#cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  height: 250px;
  width: 100%;
  background: #f0f0f0;
  color: #111;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  transition: bottom 0.5s ease;
  z-index: 9999;
  line-height: 1.4;
}
#cookie-banner p{
  text-align: justify;
}
#cookie-banner button:hover{
  background: pink;
}

#cookie-banner.show {
  bottom: 0;
}

#cookie-banner button {
padding: 15px 70px;
  background: blue;
  color: white;
  border: none;
  margin-top: 20px;
  cursor: pointer;
    }   
#head1 {
  color: black;
  font-size: 18px;
  margin-bottom: 8px;
}
