.site-header .navbar-brand{font-size:1.5rem;}
.site-header .blognavbar-brand{font-size:1.5rem;}
.card{border-radius:12px;}
.site-footer{border-top:4px solid rgba(255,255,255,0.06);} 
.container{max-width:1150px;}
.mobile-nav{z-index:9999;}
@media(max-width:767px){ .display-5{font-size:1.6rem;} }

.hero-section {
  position: relative;
  height: 600px; /* optional: adjust as you need */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroBackground 15s infinite steps(1, end);
  color: #252424;
}

/* 👇 Animation that cycles through 3 images (instant change) */
@keyframes heroBackground {
  0% {
    background-image: url('../../images/hero1.jpg');
  }
  33% {
    background-image: url('../../images/hero2.jpg');
  }
  66% {
    background-image: url('../../images/hero3.png');
  }
  100% {
    background-image: url('../../images/hero1.jpg');
  }
}

/* Optional overlay for better text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.alert-success {
    --bs-alert-color: #000 !important;
    --bs-alert-bg: white !important;
    --bs-alert-border-color: #ffc107 !important;
    --bs-alert-link-color: var(--bs-success-text-emphasis) !important;
}

@media (max-width: 767px) {
  h2.mb-4 {
    display: block !important;
    visibility: visible !important;
    margin-top: 10px;
    text-align: center;
  }
}

.hero-section h1 span{
color:white !important;
}

@media (max-width: 767px) {
  .hero-section {
    height: auto !important;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }
}


/* ===== Writers Section ===== */
.writers-section {
  background: #111;
  color: #fff;
}

.writers-section .section-title {
  color: #9be300;
  font-weight: 700;
}

.writer-card {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.writer-card:hover {
  transform: translateY(-8px);
}

.writer-img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #9be300;
}

.writer-name {
  font-size: 1.25rem;
  color: #9be300;
  margin-bottom: 5px;
}

.writer-rating {
  font-size: 1.1rem;
  color: gold;
  margin-bottom: 5px;
}

.writer-stats,
.writer-projects {
  font-size: 0.9rem;
  color: #ccc;
}

.writer-bio {
  font-size: 0.9rem;
  color: #aaa;
  margin: 10px 0;
}

/* ✅ fixed alignment of tags */
.writer-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.writer-tags span {
  background: #9be300;
  color: #111;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
  color: #9be300;
}

/* ---Reviews Style---*/
.real-reviews {
  text-align: center;
  padding: 80px 20px;
  background: #198754;
}

.reviews-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.review-card {
  background: linear-gradient(145deg, #222, #333);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.review-text {
    text-align: center;
  flex: 1;
}
.mini_text{
  text-align: left;
}
.review-text .stars {
  color: #b8f000;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #b8f000;
  object-fit: cover;
}

.btn-review {
  background: #b8f000;
  color: #000;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 40px;
  transition: 0.3s;
}

.btn-review:hover {
  background: #a0d900;
}

/* ==== Reviews Section Responsive Fix ==== */
.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-img {
  flex-shrink: 0;
}

.review-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #b8f000;
  object-fit: cover;
}

/* Mobile view adjustment when 2 cards side-by-side */
@media (max-width: 600px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .review-card {
    width: 95%;
    padding: 20px;
    flex-direction: column;
  }

  .review-img img {
    width: 60px;
    height: 60px;
  }

  .review-text p {
    font-size: 14px;
  }
}


/* ==== Work Samples Section ==== */
/* Work Samples Section */
.work-samples-section {
  padding: 50px 10px;
  text-align: center;
}

.work-samples-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.ws-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ws-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #fff;
  border: 2px solid #b8f000;
  border-radius: 12px;
  padding: 26px;
  box-sizing: border-box;
  min-width: 260px;
  transition: transform 0.2s ease;
}


.ws-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 600;
}

.ws-card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
  color: #333;
}

.ws-card td {
  padding: 6px 8px;
}

.ws-card td:first-child {
  color: #666;
}

.ws-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.ws-btns a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #b8f000;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.ws-btns a:hover {
  background: #b8f000;
  color: #000;
}

/* Responsive */
@media (max-width: 767px) {
  .ws-container {
    flex-direction: column;
    align-items: center;
  }
  .ws-card {
    width: 92%;
    max-width: 92%;
    flex: unset;
  }
}

/* Work Samples Section Layout */


/* ============================
   WHY CHOOSE SECTION STYLES
============================ */
.why-choose-section {
  padding: 80px 20px;
  background: #fff;
  text-align: left;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.why-left {
  flex: 1 1 500px;
}

.why-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000 !important;
  line-height: 1.3;
}

.why-left h2 span {
  color: #b8f000; /* theme color */
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  background: #b8f000;
  border-radius: 30px;
  padding: 14px 20px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.why-list li:hover {
  transform: translateY(-3px);
}

.why-list .icon {
  font-size: 18px;
}

.why-right {
  flex: 1 1 400px;
  text-align: center;
}

.why-right img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .why-list li {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .hide-mobile {
    display: none !important;
  }
}
/*Review page style*/

.all-reviews-section {
  background: #000;
  color: #fff;
}

.review-card {
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
   .review-card {
    text-align: center;
  }
  .review-card img {
    width: 60px;
    height: 60px;
  }
}
/*
.review-card {
  text-align: left;
}
@media (max-width: 767px) {
  .review-card {
    text-align: center;
  }
  .review-card img {
    margin: 0 auto 10px;
    display: block;
  }
}
*/
/* FAQ Section */
.faq-section .row {
  align-items: flex-start;
}

.faq-side-img {
  max-width: 100%;
    height: auto;
}

.faq-list {
  width: 100%;
  margin: 0;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: #e6ff00;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #198754;
  color: #000 !important;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 10px 0;
}

/* Force FAQ Heading Color */
.faq-heading {
    color: #000 !important;
}

/* Mobile */
@media(max-width: 767px) {
  .faq-side-img {
    margin-top: 30px;
  }
}
@media(max-width: 767px) {
  .faq-section .col-lg-5 {
    order: 2;
  }
  .faq-section .col-lg-7 {
    order: 1;
  }
}



/* =========================================
   BLOG POST TYPOGRAPHY — GLOBAL OVERRIDES
   ========================================= */
.single .post-content h1,
.single-post .post-content h1 {
    color: #c6ff00 !important;
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 25px;
    margin-bottom: 15px;
}

.single .post-content h2,
.single-post .post-content h2 {
    color: #ccf536 !important;
    font-size: 30px !important;
    font-weight: 600;
    line-height: 1.35;
    margin-top: 25px;
    margin-bottom: 12px;
}

.single .post-content h3,
.single-post .post-content h3 {
    color: #d8fd52ff !important;
    font-size: 24px !important;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 22px;
    margin-bottom: 10px;
}

.single .post-content h4,
.single-post .post-content h4 {
    color: #e2f798ff !important;
    font-size: 20px !important;
    font-weight: 500;
    line-height: 1.45;
    margin-top: 20px;
    margin-bottom: 8px;
}

.single .post-content p,
.single-post .post-content p {
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.post-content strong {
    font-weight: bold;
}
/* =========================================
   TABLET RESPONSIVE (768px - 991px)
   ========================================= */
@media (max-width: 991px) {

    .single .post-content h1 {
        font-size: 32px !important;
    }
    .single .post-content h2 {
        font-size: 27px !important;
    }
    .single .post-content h3 {
        font-size: 22px !important;
    }
    .single .post-content h4 {
        font-size: 19px !important;
    }
    .single .post-content p {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE RESPONSIVE (0 - 767px)
   ========================================= */
@media (max-width: 767px) {

    .single .post-content h1 {
        font-size: 28px !important;
    }
    .single .post-content h2 {
        font-size: 24px !important;
    }
    .single .post-content h3 {
        font-size: 20px !important;
    }
    .single .post-content h4 {
        font-size: 18px !important;
    }
    .single .post-content p {
        font-size: 16px;
    }
}

/* =========================================
   WhatsApp and Messenger
   ========================================= */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

.floating-social img {
     width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    padding: 5px;
    object-fit: contain;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    transition: 0.3s;
      -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-drag: none;
}

.floating-social img:hover {
    transform: scale(1.15);
}

.floating-social img:focus {
    outline: none !important;
}

.floating-social a,
.floating-social a:focus,
.floating-social a:focus-visible,
.floating-social img:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
@media (max-width: 600px) {
    .floating-social img {
          width: 50px;
          height: 50px;
    }
}

