body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  font-size: 0;
}

.navbar .logo img {
  width: 140px;
  margin-right: 10px;
}

.navbar .search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  padding: 5px 10px;
  width: 50%;
  max-width: 100%;
}

.navbar .search-bar input {
  border: none;
  outline: none;
  width: 100%;
  padding: 5px 10px;
}

.navbar .search-bar button {
  background: none;
  border: none;
  cursor: pointer;
}

.navbar .search-bar button img {
  width: 20px;
  height: 20px;
}

.tags-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag {
  background-color: #ff7300;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.tag:hover {
  background-color: #e56200;
  color: #fff;
}


.featured-blogs {
  background-color: #f1f1f1;
  margin-top: 30px;
}

.featured-blogs.night-mode {
  background-color: #000000;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-card .content h3 {
  font-size: 18px;
  color: #ff7300;
  margin: 0 0 10px;
  font-weight: bold;
}

.blog-card .content p.description {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
  visibility: visible;
}

.blog-card .content .meta {
  font-size: 12px;
  color: #999;
  margin: 10px 0 5px;
}

.blog-card .content .description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-card .content .read-more {
  color: #ff7300;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1px solid #ff7300;
  transition: color 0.3s, border-bottom-color 0.3s;
  margin-bottom: 15px;
  align-self: flex-start;
}

.blog-card .content .read-more:hover {
  color: #e56200;
  border-bottom-color: #e56200;
}

.button-container {
  text-align: center;
  margin: 20px 0;
}

.btn {
  background-color: #ff7300;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e56200;
}

.btn:active {
  background-color: #cc5200;
}

body.night-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.night-mode .navbar {
  background-color: #000000;
}

body.night-mode .blog-card {
  background-color: #333;
  color: #e0e0e0;
}

body.night-mode .blog-card .content h3 {
  color: #ff7300;
}

body.night-mode .tag {
  background-color: #555;
  color: white;
}

body.night-mode .tag:hover {
  background-color: #777;
}

body.night-mode .btn {
  background-color: #555;
}

body.night-mode .btn:hover {
  background-color: #777;
}

body.night-mode .read-more {
  color: #ff7300;
}

body.night-mode .read-more:hover {
  color: #e56200;
}

.night-mode-btn {
  font-size: 1.8rem;
  cursor: pointer;
}

.hidden {
  display: none;
}

.blog-container a {
  text-decoration: none;
  color: inherit;
}


.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #ff7300;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  padding: 5px 10px;
  width: 300px;
  max-width: 100%;
  position: relative;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  padding: 5px 10px;
}

#searchDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 1000;
}

.search-dropdown div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.search-dropdown div:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .search-bar {
    width: 100%;
  }

  .tags-container {
    display: none;
  }

  .featured-blogs {
    margin-top: 0px;
  }

  .featured-blogs h2 {
    margin-top: 0px;
  }

}

body.night-mode .featured-blogs h2 {
  color: white;
}

body.night-mode h2 {
  color: white;
}


h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin: 3% 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  border-bottom: 2px solid #ff6f00;
  padding-bottom: 1%;
}

h2:hover,
.featured-blogs h2:hover {
  color: #ff6f00;
  transition: color 0.3s ease-in-out;
}

.featured-blogs h2 {
  color: #333;
  font-size: 28px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ff6f00;
  padding-bottom: 1%;
  padding-top: 2%;
}

.blog-card .author {
  font-size: 14px;
  text-align: center;
  color: #888;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.blog-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


body.night-mode .blog-card {
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.night-mode .blog-card .content p.description {
  color: rgb(207, 200, 194);
}

@media (max-width: 768px) {
  /* .navbar {
    flex-direction: column;
  } */

  .night-mode-btn {
    font-size: 22px;
  }

  .navbar {
    display: flex; 
    justify-content: space-between;  
    align-items: center;  
    flex-direction: row;  
  }

  .navbar .search-bar {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 5px 10px;
    width: 100%;
    max-width: 350px;
  }

  .navbar .search-bar input {
    border: none;
    outline: none;
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
  }

  .navbar .search-bar button img {
    width: 20px;
    height: 20px;
  }

  .navbar .logo img {
    width: 60px;
  }

  body.night-mode .navbar .search-bar {
    background-color: #333;
    color: #fff;
  }

  body.night-mode .navbar .search-bar input {
    color: #fff;
    background-color: #555;
    border-radius: 10px;
  }
}



/*FOOTER STYLING STARTS FROM HERE */
footer {
  font-family: "Montserrat", sans-serif;
  background-color: #000000; 
  color: #ffffff;
  padding: 50px 0;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}
.footer-up {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-linkbox {
  flex: 1;
  margin-right: 20px;
  min-width: 200px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ff7300; 
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-list {
  list-style-type: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 15px;
}

.footer-list a {
  color: #ffffff; 
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ff7300;
  text-decoration: underline;
}

.footer-list a:active {
  color: #ff4500; 
}

.footer-linkbox h6 a {
  font-weight: 500;
}

.footer-linkbox h6 a:hover {
  color: #ff7300; 
}

.footer-last {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.footer-last span {
  font-size: 16px;
}

.footer-last a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-last a:hover {
  color: #ff7300; 
}

.footer-down {
  margin: 20px 0;
}

.footer-socials-list {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social {
  box-sizing: border-box;
  font-size: 20px; 
  border-radius: 50%; 
  text-align: center;
  padding: 10px; 
  position: relative;
  border: 1px solid #fff;
  width: 40px; 
  height: 40px; 
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s;
}

.footer-social::before {
  font-family: "FontAwesome";
  font-size: 20px; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.5s;
}

.facebook::before {
  content: "\f39e";
  color: #1877f2; 
}

.whatsapp::before {
  content: "\f232"; 
  color: #4ac959; 
}

.instagram::before {
  content: "\f16d"; 
  color: #c13584; 
}

.youtube::before {
  content: "\f167"; 
  color: #ff0000;
}

.linkedIn::before {
  content: "\f0e1"; 
  color: #0077b5; 
}

.facebook:hover {
  background-color: #1877f2;
}

.facebook:hover::before {
  color: #fff;
}

.whatsapp:hover {
  background-color: #4ac959;
}

.whatsapp:hover::before {
  color: #fff;
}

.instagram:hover {
  background-color: #c13584;
}

.instagram:hover::before {
  color: #fff;
}

.youtube:hover {
  background-color: #ff0000;
}

.youtube:hover::before {
  color: #fff;
}

.linkedIn:hover {
  background-color: #0077b5;
}

.linkedIn:hover::before {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-up {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-linkbox {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-socials-list {
    flex-wrap: wrap; 
    justify-content: center; 
    margin-top: 20px;
  }

  .footer-social {
    margin: 5px; 
  }
  .footer-last {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .copyrigh {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-last a {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* WHATSAPP BOT STYLING STARTS FROM HERE  */
.whatsapp_icon_wrapper{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
}

.whatsapp_icon_button{
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  cursor: pointer;
  outline: none;
  transition: transform .18s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: visible;
}

.whatsapp_icon_button::after{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: whatsapp_iconPulse 2.6s infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes whatsapp_iconPulse{
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0.05); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.0); transform: scale(1); }
}

.whatsapp_icon_button:active{ transform: scale(.98); }
.whatsapp_icon_icon { display:block; }
.whatsapp_icon_button img {
  height: 50%;
}

.whatsapp_icon_small_popup{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 250px;
  display: none;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.whatsapp_icon_small_img, .whatsapp_icon_agent_img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:contain;
  flex-shrink:0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  background: #000;
}

.whatsapp_icon_small_text { 
  font-size:13px; 
  color:#222; 
  line-height:1.1; 
  margin-left: 9px;
}
.whatsapp_icon_small_name { font-weight:700; margin-bottom:3px; display:flex; align-items:center; gap:8px; }
.whatsapp_icon_small_role { color:#666; font-size:12px; }

.whatsapp_icon_online_dot{
  color: #0bbd6a;
  background: rgba(11,189,106,0.06);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight:600;
  font-size:12px;
}

.whatsapp_icon_box{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
}

.whatsapp_icon_header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  background: #075E54;
  color:#fff;
}
.whatsapp_icon_agent_meta{ min-width:0; }
.whatsapp_icon_agent_name{ font-weight:700; font-size:15px; line-height:1; }
.whatsapp_icon_status{ font-size:12px; opacity:0.92; color:rgba(255,255,255,0.92); margin-top:4px; }

.whatsapp_icon_close{
  margin-left:auto;
  background:transparent;
  border:0;
  color:#fff; font-size:18px;
  cursor:pointer;
  padding:6px;
}

.whatsapp_icon_small_close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #666;
}

.whatsapp_icon_body{ padding:14px; background:#ece5dd; }
.whatsapp_icon_msg{
  background:#fff; padding:10px 12px; border-radius:10px; display:inline-block; font-size:14px; color:#222;
}

.whatsapp_icon_cta{
  display:block; text-align:center; padding:12px 0; font-weight:700; text-decoration:none;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  color:#fff; border-radius:0 0 12px 12px;
}

@media (max-width:520px){
  .whatsapp_icon_wrapper{ right:14px; bottom:14px; }
  .whatsapp_icon_box{
    width: calc(100% - 28px);
    right: 14px;
    left: 14px;
    bottom: 80px;
    position: fixed;
    border-radius: 14px;
  }
  .whatsapp_icon_small_popup{ 
    box-sizing: border-box; }
  .whatsapp_icon_small_img{ width:42px; height:42px; }
}


.whatsapp_icon_show { display:flex !important; animation: whatsapp_iconShow .28s ease both; }
@keyframes whatsapp_iconShow{ from{ opacity:0; transform: translateY(8px) scale(.98) } to { opacity:1; transform: translateY(0) scale(1) } }


.whatsapp_icon_box.whatsapp_icon_show{ display:block !important; }
/* WHATSAPP BOT STYLING ENDS HERE  */






