/* base level css styles */
html {
  font-size: 100%; /* 16px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
a {
	text-decoration: none;
}
p {
  font-size: 1rem;     /* 16px */
  margin: 0 0 1rem;
  line-height: 1.6;
}
.header-section {
    width: auto;
}
.logo-section {
    width: 100%;
}
.phone-login-nav{
	a {
		margin-top: 15px;
		color: #000;
	}
}
.nav-section {
    margin-top: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
}
.nav-item {
    margin-left: 35px;
    font-weight: bold;
}
.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-family: sans-serif;
    font-size: 1rem;
}
.navbar-nav .nav-item .nav-link:hover{
    color: #ff0000;
    font-family: sans-serif;
}
.footer-section {
	background: #1b1918;
	padding-top: 30px;
	padding-bottom: 0;
	margin-top: 10px;
}
.footer-section .footer-widget {
	margin-bottom: 40px;
}

.footer-section .footer-widget h4 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 30px;
}
.footer-section .footer-widget ul {
	padding-left: 0.25rem;
}
.footer-section .footer-widget ul li {
	list-style: none;
	color: #8e8e8e;
	font-size: 0.750rem;
	line-height: 36px;
}
.footer-section .footer-widget .single-blog {
	margin-bottom: 15px;
	overflow: hidden;
}
.footer-section .footer-widget .single-blog .blog-pic {
	width: 69px;
	height: 69px;
	float: left;
	margin-right: 21px;
}
.footer-section .footer-widget .single-blog .blog-text {
	overflow: hidden;
}
.footer-section .footer-widget .single-blog .blog-text h5 {
	color: #fff;
	font-size: 0.750rem;
	/* line-height: 28px; */
	margin-top: 2px;
	margin-bottom: 2px;
}
.footer-section .footer-widget .single-blog .blog-text span {
	color: #FF0000;
	font-size: 0.750rem;
	display: inline-block;
}
.footer-bottom {
	padding-top: 20px;
}
.copyright {
	color: #414141;
	font-size: 14px;
	margin-bottom: 10px;
}
.copyright a {
	color: #414141;
}
.copyright a:hover {
	color: #FF0000;
}
.footer-menu {
	padding-bottom: 8px;
}
.footer-menu a {
	color: #7d7d7d;
	font-size: 0.750rem;
	margin-left: 48px;
	display: inline-block;
	margin-bottom: 10px;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.footer-menu a:first-child {
	margin-left: 0;
}
.footer-menu a:hover {
	color: #FF0000;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.social-icons a {
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}
.social-icons a .fa-facebook-f { color: #1877F2; }
.social-icons a .fa-instagram { color: #E1306C; }
.social-icons a .fa-linkedin-in { color: #0A66C2; }
.social-icons a .fa-x-twitter { color: #1DA1F2; }

.social-icons a:hover {
  transform: scale(1.2);
}
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  transition: opacity 0.2s;
  font-size: 14px;
  white-space: nowrap;
  z-index: 10;
}
.whatsapp-float,
.call-float {
    position: fixed;
	width: 40px;
	height: 40px;
	left: 20px;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #fff;
    text-decoration: none;
    animation: none; 
}

.whatsapp-float {
	bottom: 15px;
    background-color: #25D366;
    font-size: 28px;
}
.whatsapp-float:hover { background-color: #20b358; transform: scale(1.1); }

.call-float {
    bottom: 70px; 
    background-color: #007bff;
}
.call-float:hover { background-color: #0056b3; transform: scale(1.1); }

.whatsapp-float:hover .tooltip-text,
.call-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.whatsapp-float,
.call-float {
    display: inline;
}
@media (hover: none) {
  .tooltip-text {
    display: none !important;
  }
}

/* css for blog page */
/* css for blog page */
.blog-shadow-box {
  max-width: 860px;          /* Ideal blog reading width */
  margin: 3rem auto;
  padding: 2.5rem 3rem;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04);
}
.blog-shadow-box {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2933;
  line-height: 1.75;
}
body {
  background-color: #f5f7fa;
}
.blog-detail-content {
  font-size: 1rem;
}

.blog-detail-content p {
  margin-bottom: 1rem;
}

.blog-detail-content h2 {
  /* font-size: 1.6rem; */
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.blog-detail-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 0.8rem;
}

.blog-detail-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog-main-image {
    text-align: center;
    margin: 2rem 0;
}
.blog-detail-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.blog-detail-meta {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.blog-hero-image,
.blog-footer-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
/* for images inside the blog content */
.blog-detail-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}



/* .blog-section {
	padding-top: 10px;
	padding-bottom: 10px;
}
.blog-section h1 {
	font-size: 1.5rem;
}
.blog-section h2 {
	font-size: 1rem;
} */
.blog-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
	transition: transform 0.3s ease-in-out;
}
.blog-card img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}
.blog-card:hover img {
	transform: scale(1.1);
}
.blog-overlay {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	width: 100%;
	padding: 8px;
	transition: background 0.3s;
    line-height: 1.1rem;
}
.blog-overlay .blog-title {
	font-size: 0.95rem;
}
.blog-overlay .blog-meta {
	font-size: 0.75rem;
}
.blog-thumbnail-image {
    width: 420px;        
    height: 280px;       
}
.blog-thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: fit;   
    display: block;
}
.blog-category {
	font-size: 0.9rem;
	background-color: #007bff;
	padding: 5px 10px;
	display: inline-block;
	border-radius: 5px;
	margin-bottom: 10px;
}
.blog-title {
	font-size: 1.25rem;
	font-weight: bold;
}
/* .blog-meta {
	font-size: 0.85rem;
	margin-top: 10px;
}
.blog-meta span {
	margin-right: 15px;
} */
/* .blog-detail-title {
	font-size: 2.5rem;
	font-weight: bold;
}
.blog-detail-meta {
	font-size: 0.95rem;
	color: #777;
	margin-top: 10px;
} */
.comment-section {
	margin-top: 60px;
}
.comment {
	margin-bottom: 25px;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.comment-form textarea {
	resize: vertical;
}
.related-articles {
	margin-top: 70px;
}
.related-articles h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
}
.blog-detail-card {
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.3s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.blog-detail-card:hover {
	transform: translateY(-5px);
}
/* .blog-detail-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
} */
.blog-detail-card a:hover{
	color: #ff0000;
}
.blog-card-body {
	padding: 15px;
}
.blog-card-title {
	font-size: 1.1rem;
	font-weight: bold;
}
.blog-card-meta {
	font-size: 0.85rem;
	color: #666;
	margin-top: 8px;
}
.blog-detail-content a:hover {
	color: #000;
}


@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.2rem;
    }
    .blog-detail-meta {
        font-size: 0.55rem;
    }
    .blog-detail-content {
        font-size: 0.65rem;
    }
    .blog-detail-content p {
        font-size: 0.65rem;
    }
    .blog-detail-content h2 {
        font-size: 1rem;
    }

    .blog-detail-content h3 {
        font-size: 0.8rem;
    }
}