/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Flex Layout for Inner Sections */
.top-header-inner,
.main-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 10px;
}

/* Top Header */
.top-header {
  background-color: #0099FF;
  color: white;
  font-size: 14px;
  padding: 10px 0;
}

nav#mainNav ul li a:hover {
  color: #669900;
}

.top-left a,
.top-right a {
  margin-right: 20px;
  color: white;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  padding: 5px 10px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.top-left a i,
.top-right a i {
  margin-right: 5px;
}

.top-right a {
  border: 1px solid #fff;
  margin: 0px;
  padding: 5px 20px;
}

.top-right a:hover {
  background-color: #fff;
  color: #0099FF;
}

/* Main Header */
.main-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 99;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}

.logo img {
  max-height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #000;
  font-weight: 500;
  padding: 10px 0px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Hover underline animation */
.main-nav a::before,
.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #669900;
  bottom: 0;
  transition: all 0.4s ease-in-out;
}

.main-nav a::before {
  left: 50%;
}

.main-nav a::after {
  right: 50%;
}

.main-nav a:hover::before,
.main-nav a:hover::after {
  width: 50%;
}

/* Sticky Header Animation */
.main-header.sticky {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease forwards;
  z-index: 999;
}

@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #0099FF;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= Banner Section ================= */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 400px;
  background: #000;
}

.slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slider img {
  width: 100vw;
  height: 400px;
  /* full screen crop */
  flex-shrink: 0;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  cursor: pointer;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}


/* banner css end here */

/*  Winning Rural Markets css Start here */
/* Section Base */
.right-div.margin {
  margin-right: 20px;
  margin-left: 0;
}

.left-div.margin img {
  height: auto;
}

.left-div.margin {
  margin-left: 20px;
  margin-right: 0;
}

.main-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 50px;
  margin-top: 50px;
  border-radius: 10px;
}

.left-div {
  width: 50%;
  margin-right: 20px;
}

.right-div {
  width: 50%;
  margin-left: 20px;
}

.left-div img {
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.right-div h3 {
  font-size: 22px;
  color: #549A1B;
}

.inner-box .display-none {
  display: none;
}

.inner-box.margin-bottom.img-height.display-none {
  display: none;
}

.inner-box.display-none {
  display: none;
}

/*  */


.highlight-section {
  padding: 40px 0px 60px;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2::before,
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 40%;
  background-color: #0099ff;
}

.section-header h2::before {
  left: 0;
}

.section-header h2::after {
  right: 0;
}

.section-header p {
  color: #555;
  margin-top: 10px;
  font-size: 18px;
}

/* Only 2 Boxes per row */
.boxes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .boxes-container {
    grid-template-columns: 1fr;
  }

  .left-div {
    width: 100%;
    margin: 0;
  }

  .main-div {
    display: block;
    padding: 20px;
  }

  .right-div {
    margin: 0;
    width: 100%;
    margin-top: 20px;
  }

  .right-div.margin {
    margin: 0px;
  }

  .left-div.margin {
    margin: 0;
    margin-top: 20px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  section.section.our__team__mean__section .section-header h2 {
    font-size: 20px;
  }

  section.our-team {
    padding: 80px 0px !important;
  }

  .our-team .hero-overlay h1 {
    font-size: 22px;
  }
}

/* Box styling */
.inner-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.inner-box:hover {
  transform: translateY(-5px);
}

.inner-box a {
  display: inline-block;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

/* Removed background color on hover */
.inner-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all 0.3s ease;
}

/* Optional glowing border effect */
.inner-box::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #00ccff;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.inner-box:hover::before {
  opacity: 1;
}

/* Inner content */
.inner-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.inner-box h3 {
  font-size: 22px;
  color: #549A1B;
  margin-bottom: 10px;
}

img {
  width: 100%;
}

.inner-box p {
  font-size: 16px;
  color: #000;
}

/* Button */
.box-btn {
  display: inline-block;
  padding: 10px 22px;
  margin-top: 1rem;
  background-color: #0099FF;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
  cursor: pointer;
}

.box-btn::before,
.box-btn::after {
  content: '';
  position: absolute;
  transition: all 0.4s ease;
  pointer-events: none;
}

.box-btn::before {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #00CCFF;
  border-radius: 6px;
  opacity: 0;
}

.box-btn::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.box-btn:hover {
  transform: scale(1.02);
  background-color: #006bb3;
  color: #fff;
}

.box-btn:hover::before,
.box-btn:hover::after {
  opacity: 1;
}

.inner-box.img-height img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/*  Winning Rural Markets css end here */

/* counter section css start here */
.counter-section {
  /* background-color: #e9f9f2; */
  padding: 40px 0px 60px;
  text-align: center;
}

.counter-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.counter-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

.counter-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  /* max-width: 1000px; */
  margin: 0 auto;
}

/* .counter-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    } */

/* .counter-box:hover {
      transform: translateY(-6px);
    } */

.counter-number {
  font-size: 38px;
  font-weight: 700;
  color: #0099FF;
}

.counter-label {
  margin-top: 10px;
  font-size: 22px;
  color: #000;
  font-weight: bold;
}


/* counter section css end here */

/* our services section start here */
strong.font-size {
  font-size: 28px;
  color: #2c95d1;
}

.box.display-none {
  display: none;
}

.box a {
  background-color: #0099FF;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.section {
  padding: 40px 30px 60px;
  /* max-width: 1300px;
      margin: auto; */
  background-color: #f1f3f5;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 20px 0px;
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: #549A1B;
  transition: all 0.3s ease;
}

.box::before {
  top: 0;
  left: 0;
}

.box::after {
  bottom: 0;
  right: 0;
}

.box:hover::before,
.box:hover::after {
  width: 100%;
}

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

.box-content {
  padding: 20px;
  text-align: center;
}

.box-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.box-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #0099FF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.box:hover .read-more-btn {
  background-color: #549A1B;
}

.box:hover .box-title {
  color: #549A1B;
}

section.section .box img {
  width: 100px;
  text-align: center;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 768px) {
  .box img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .box img {
    height: 120px;
  }
}

/* our services section end here */

/* logo slider css start here */
.logo-slider-section {
  /* background-color: #f1f3f5; */
  padding: 40px 20px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.logo-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  overflow: hidden;
}

.slide {
  min-width: 180px;
  margin-right: 40px;
  flex: 0 0 auto;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #549A1B;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  opacity: 0.7;
}

.slider-btn:hover {
  opacity: 1;
}

.slider-btn.prev {
  left: -10px;
}

.slider-btn.next {
  right: -10px;
}


.slide img {
  width: 110px;
  height: 80px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .slide {
    min-width: 140px;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .slide {
    min-width: 120px;
    margin-right: 15px;
  }
}

/* logo slider css end here */

/* testimonial section css start here  */
.testimonial-section {
  background: linear-gradient(135deg, #f1f3f5, #e6f0ec);
  padding: 40px 20px;
  width: 100%;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-card::before,
.testimonial-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  background: #0099FF;
  transition: 0.3s ease;
}

.testimonial-card::before {
  top: 0;
}

.testimonial-card::after {
  bottom: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  text-align: center;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0099FF;
}

.client-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #669900;
}

.client-title {
  font-size: 16px;
  color: #0099FF;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* testimonial section css end here */

/* footer css start here */
.footer {
  background: #fff;
  padding: 60px 20px;
}

footer.footer p {
  color: #000;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  color: #669900;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 0;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2e7d32;
  text-decoration: none;
}

.footer-logo img {
  width: 75%;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #000;
  /* black icons */
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #2e7d32;
  text-decoration: none;
}

.footer-col p {
  margin: 5px 0;
  color: #555;
}

.footer-col a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #2e7d32;
  text-decoration: none;
}

/* .newsletter-form {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
} */

.newsletter-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex-grow: 1;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #669900;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #256429;
}

.footer-col i {
  margin-right: 8px;
  color: #000;
  /* black icon color */
  transition: 0.3s;
}

.footer-col a:hover i {
  color: #2e7d32;
  /* icon color on hover */
}

.newsletter-form {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 0;
  /* gap 0 kar diya */
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 2px;
  background-color: #669900;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 100px;
}

.whatsapp-float:hover {
  background-color: #0099FF;
  color: white;
  text-decoration: none;
}

.phone-float {
  position: fixed;
  bottom: 84px;
  right: 2px;
  background-color: #669900;
  color: white;
  font-size: 28px;
  padding: 20px;
  border-radius: 50%;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-float:hover {
  background-color: #0099FF;
  color: white;
  text-decoration: none;
}


.mail-float {
  position: fixed;
  bottom: 148px;
  right: 2px;
  background-color: #669900;
  color: white;
  font-size: 26px;
  padding: 20px;
  border-radius: 50%;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mail-float:hover {
  background-color: #0099FF;
  color: white;
  text-decoration: none;
}

p.copy-write-footer {
  text-align: center;
  margin-top: 20px;
}

/* footer css end here */


/* latest blog section css start here */
.blog-section {
  padding: 40px 20px 60px;
  background: #f6fff0;
}

.section-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.section-heading a {
  color: #549A1B;
  text-decoration: none;
  position: relative;
}

.section-heading a:hover {
  text-decoration: underline;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.blog-card::before,
.blog-card::after {
  content: '';
  position: absolute;
  background: #549A1B;
  transition: all 0.4s ease;
}

.blog-card::before {
  height: 0%;
  width: 2px;
  left: 0;
  top: 0;
}

.blog-card::after {
  width: 0%;
  height: 2px;
  left: 0;
  top: 0;
}

.blog-card:hover::before {
  height: 100%;
}

.blog-card:hover::after {
  width: 100%;
}

/* Additional pseudo-elements for bottom and right sides */
.blog-card::part(bottom-line),
.blog-card::part(right-line) {
  content: "";
  position: absolute;
  background-color: #549A1B;
  transition: all 0.4s ease;
}

.blog-card:hover::part(bottom-line) {
  width: 100%;
}

.blog-card:hover::part(right-line) {
  height: 100%;
}

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

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
  /* margin: 10px; */
}

.blog-content {
  padding: 20px;
}

.blog-content h3 a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: #549A1B;
}

.blog-content p {
  font-size: 15px;
  color: #000;
  margin: 12px 0 20px;
  line-height: 1.6;
}

.blog-btn {
  display: inline-block;
  background-color: #0099FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-btn:hover {
  background-color: #007acc;
}

/* Responsive for mobile */
@media (max-width: 992px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    max-width: 100%;
  }
}

/* latest blog section css end here */

/* call-center services start here*/
.callcenter-hero {
  background-image: url('../images/call-center-fateh-rural.jpg');
  /* Replace with your real image */
  background-size: cover;
  background-position: center;
  padding: 130px 0px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

section.callcenter-hero:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  /* padding: 100px; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.hero-overlay {
  z-index: 9999;
  position: relative;
}

/* .hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 8px;
  display: inline-block;
  max-width: 90%;
} */

.hero-overlay h1 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-overlay p {
  font-size: 18px;
  color: #ddd;
}

.callcenter-section {
  background-color: #f5f5f5;
  padding: 40px 0px 60px;
}

.container-boxes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.call-box {
  background: #fff;
  width: 100%;
  /* max-width: 1000px; */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.call-box h2 {
  color: #549A1B;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.call-box p,
.call-box li {
  font-size: 16px;
  /* font-weight: 600; */
  color: #000;
  line-height: 1.6;
}

.call-box li {
  font-weight: 600;
  color: #000;
}

.call-box ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 25px;
  }

  .slide-content {
    left: 0;
  }
}

/* call-center services end here */


/* why choose us section css start here */
.why-choose-us {
  background-image: url('../images/why-choose-us.jpg');
  /* Replace with your real image */
  background-size: cover;
  /* background-position: center; */
  padding: 130px 0px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

section.why-choose-us:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  /* padding: 100px; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.hero-overlay {
  z-index: 9999;
  position: relative;
}

a.why-choose-icon {
  font-size: 30px;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  align-items: center;
  display: inline-grid;
}

.box:hover a {
  background: #549A1B;
}

/* why choose us section css end here */

/* our team section css start here */

section.our-team {
  background-image: url('../images/our-team-fateh.jpg');
  /* Replace with your real image */
  background-size: cover;
  background-position: center;
  padding: 130px 0px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

section.our-team:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  /* padding: 100px; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

section.section.our__team__mean__section img {
  width: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* section.section.our__team__mean__section .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
} */

section.section.our__team__mean__section b {
  margin-bottom: 20px;
  display: block;
  color: #669900;
}

section.section.our__team__mean__section .box-title {
  color: #0099FF;
}


section.section.our__team__mean__section .box:hover .box-title {
  color: #549A1B;
}

section.section.our__team__mean__section .section-header h2 {
  font-size: 20px;
}

/* our team section css end here */

/* contact us page css start here */
.contact-person-color {
  color: #2c95d1;
}

/* Link hover par color change (text part only, not <strong>) */
.inner-box a:hover {
  color: #2c95d1;
}

/* .inner-box a {
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
} */

/* .inner-box {
    cursor: none;
} */
.call-box .read-more-btn {
  display: inline-block;
  margin-top: 20px;
}

.call-box .read-more-btn:hover {
  background: #549A1B;
}

/* contact us page css end here */

/* upcoming melas css start here */

section.blog-section.effect-none .blog-card:hover::before {
  display: none;
}

section.blog-section.effect-none .blog-card:hover::after {
  display: none;
}

section.blog-section.effect-none .blog-grid {
  justify-content: left;
}

p.mail-no a {
  color: #0099ff;
}

/* upcoming melas css end here */
/* gift item css start here */
.blog-grid.img-height img {
  /* height: auto; */
  object-fit: contain;
}

/* gift item css end here */

/* term and condition start here */
.call-box.list-style li {
  font-weight: 500;
}

/* term and condition end here */

/* blog page css start here */
.main-div-blog-page {
  background: #f1f3f5;
  padding: 60px 0px;
}

.blog-container {
  max-width: 1170px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

h1 {
  text-align: center;
  color: #549A1B;
  margin-bottom: 30px;
}

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

ul.blog-list li {
  display: none;
  /* Hidden by default, shown by JS */
}

ul.blog-list li a {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s ease;
}

ul.blog-list li a:hover {
  background-color: #2c95d1;
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.pagination button {
  background-color: #549A1B;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.pagination button:hover {
  background-color: #2c95d1;
}

.pagination button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* blog page css end here */

/* inner blog pages css start here */

.inner-box-blog {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 25px;
}

.blog-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #669900;
}

.blog-title a {
  text-decoration: none;
  color: #669900;
}

.blog-title a:hover {
  text-decoration: underline;
}

.blog-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.blog-text h3 {
  margin-top: 30px;
  color: #669900;
}

.blog-text ul {
  padding-left: 20px;
  margin: 10px 0 20px;
}

.blog-text ul li {
  margin-bottom: 8px;
}

.contact-box {
  padding: 10px;
  border-radius: 5px;
}

.hashtags {
  margin-top: 30px;
}

.blog-wrapper {

  background: #f8f9fa;
  padding: 60px 0px;
}

.contact-box a {
  color: #2c95d1;
}

.contact-box a:hover {
  color: #669900;
}


@media (max-width: 768px) {
  .blog-title {
    font-size: 24px;
  }

  .blog-text {
    font-size: 15px;
  }

  .inner-box-blog {
    padding: 25px;
  }

  .slider-container {
    height: 270px;
  }

  .slider img {
    height: 270px;
    ;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 20px;
  }

  .blog-text {
    font-size: 14px;
  }

  .inner-box-blog {
    padding: 20px;
  }
}

/* inner blog pages css end here */

/* fateh news css start here */
.pagination.fateh-news-page {
  display: none;
}

/* fateh news css end here */