@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins' !important;
}

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

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 1000;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  width: 64 !important;
  height: 64 !important;
  position: fixed;
  bottom: 55px;
  right: 14px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background 0.3s ease;
}

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

/* Topbar styles */
.topbar {
  background-color: rgba(6, 6, 6, 0.75);
  color: white;
  font-size: 14px;
}

.topbar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: #ff7e00;
}



.navbar .nav-link {
  color: #000;
  transition: color 0.3s ease;
  font-size: 20px;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #ff7e00;
}

.navbar-brand{
    background-color: #ffffff ;
    width: 160px;
    height: 120px;
}
.navbar-brand img{
    width: 180px;
    padding: 15px 20px;
}
.nav-item{
    padding: 0px 10px;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 165, 0, 0.1);
  color: #ff7e00;
}

/* Dropdown open on hover for large screens */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 15px;
  background-color: #ac4507;
}

.hero-text {
  max-width: 50%;
  padding-left: 40px;
}

.hero-video-wrapper {
position: relative;
width: 669px;
height: 488px;
overflow: hidden;
border-radius: 50% 0 0 50%;
right: 0;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-video-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
}


/* Main Section Styling */
.why-choose-us {
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
}

/* Card Styling */
.choose-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* Circle Stats Box */
.circle-stats {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7f0e 0%, #ffa040 100%);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 127, 14, 0.3);
  font-size: 14px;
  font-weight: 500;
}

.circle-value {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0;
}

/* Bullet Points */
.custom-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 300px;
  text-align: left;
}

.custom-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.custom-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7f0e;
  font-size: 18px;
  line-height: 1;
}
.circle-stats {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ac4507 0%, #ffa040 100%);
  color: white;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 127, 14, 0.3);
  font-family: 'Poppins', sans-serif;
  transition: all 0.4s ease;
  text-align: center;
}

/* Hover effect */
.circle-stats:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 127, 14, 0.5);
  background: linear-gradient(135deg, #ac4507 0%, #ff7f0e 100%);
  cursor: pointer;
}

/* Text inside circle */
.circle-line-top {
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.circle-value {
  font-size: 26px;
  font-weight: 700;
  margin: 5px 0;
}

.circle-line-bottom {
  font-size: 12px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .circle-stats {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }

  .circle-value {
    font-size: 22px;
  }
}


.our-services{
  background-color: #F6F1E9 !important;
}
.our-services .service-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  
}

.our-services .service-card:hover {
  transform: translateY(-5px);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
}

.service-img-wrapper img {
  opacity: 1;
  transition: opacity 0.3s;
}

.service-img-wrapper:hover img {
  opacity: 1;
}

.icon-circle {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.read-more {
  font-size: 14px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid #000;
  transition: 0.3s;
}

.read-more:hover {
  background: #ff7e00;
  color: #fff;
  border-color: #ff7e00;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ===================Testimoanl Video ======================= */


.video-thumbnail {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.video-thumbnail:hover {
  transform: scale(1.02);
}
.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;               /* <-- Center with flex */
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

/* On smaller screens, pull arrows closer */




.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}



/* ===================Testimoanl Video ======================= */


/* ===================Testimoanl Logo ======================= */
.section-heading {
  font-weight: 600;
  font-size: 2rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.logo-img {
  max-height: 100px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  padding: 10px;
}

/* Grid spacing */
.testimonial-logos .row > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel arrows */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: black;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  opacity: 0.8;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.carousel-control-prev.custom-arrow {
  left: 0;
}

.carousel-control-next.custom-arrow {
  right: 0;
}

.carousel-arrow-icon {
  font-size: 20px;
  color: white;
}
.testimonial-videos_web{
  display:block;
}
.testimonial-videos_mob{
  display: none;
}
.carousel-control-next{
  display: block;
}

@media (max-width: 992px) {
  .logo-img {
    max-height: 70px;
  }
}

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

  .custom-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .logo-img {
    max-height: 50px;
    padding: 8px;
  }

  .custom-arrow {
    top: 90%;
    transform: translateY(-50%);
  }
}



/* ===================Testimoanl Logo ======================= */

/* Footer */

.footer {
  background-color: #222;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff7e00;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: orange;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .footer-text, .footer-links a, .social-icons a, .footer p {
    text-align: center !important;
  }

  .social-icons {
    justify-content: center;
    display: flex;
  }
}



/* ========================Training Page=========================== */

.service-inner {
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e1e1e;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 220px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ff7e00;
  margin-bottom: 10px;
}

.card-content p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.formats-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.formats{
  background-color: #222222;
}
.formats h4{
  padding: 50px;
  line-height: 36px;
}

.format-pill {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f0f0f0;
  color: #1a1a1a;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.format-pill:hover {
  background-color: #ff7e00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 115, 232, 0.2);
}

.icon-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #ff7e00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .icon-card {
    padding: 20px;
  }
}

/* ========================Training Page=========================== */
.service-inner {
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.service-card.icon-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 40px;
  color: #ff7e00;
  margin-bottom: 15px;
}

.card-content h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #b16c29;
  margin-bottom: 10px;
}

.card-content p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.icon-card ul li{
  color: #cf6600;
}

@media (max-width: 767px) {
  .service-card.icon-card {
    padding: 20px 15px;
  }
  .card-content h5 {
    font-size: 1rem;
  }
  .service-card .icon {
    font-size: 32px;
  }
}

/* ====================Fundraising========================= */



/* ====================Blogs=========================== */
.blog-section {
  background: #fff;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

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

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

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  font-size: 1.1rem;
  color: #b16c29;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
  font-size: 0.95rem;
}

.read-more:hover {
  text-decoration: underline;
}




/* ====================Blogs=========================== */

/* ======================Contact================================ */

.contact-section {
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px;
  background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b16c29;
}

.contact-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 15px;
  color: #0d6efd;
}

.contact-form input,
.contact-form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  background-color: #0d6efd;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #084298;
}
.mapouter{
  width: 700px !important;
  height: 450px;
}

/* =========================Contact========================== */

/* ===================CSR Fundraising========================== */
.csr-section h2 {
  color: #0d6efd;
}

.csr-intro h4 {
  color: #b16c29;
}

.csr-highlight-box {
  background-color: #f9f9f9;
  border-left: 5px solid #0d6efd;
}

.csr-documents ul li {
  background-color: #fff;
  border: none;
  font-size: 16px;
}

.csr-readiness ul {
  margin-top: 10px;
}

.csr-readiness ul li {
  margin: 5px 10px;
  display: inline-block;
  font-weight: 500;
}
.list-group li{
  padding: 5px 0px;
}
.list-group{
  padding-left: 10px;
}
.btn-primary {
  background-color: #0d6efd;
  border: none;
}
/* ===================CSR Fundraising========================== */


/* ===================Digital Marketing========================= */
.digital-marketing-section h2 {
  color: #0d6efd;
}

.why-choose-box {
  border-left: 5px solid #b16c29;
}

.services-box {
  background-color: #fff;
  border-left: 5px solid #0d6efd;
}

.services-box .list-group-item {
  border: none;
  font-size: 16px;
}

.note-box {
  font-size: 15px;
  color: #8a6d3b;
  border-left: 5px solid #ffc107;
}
/* ===================Digital Marketing========================= */

/* =======================About US============================ */


.about-company p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.vision-mission .box {
  background-color: #f8f9fa;
}

.vision-mission h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.vision-mission p {
  font-size: 1rem;
  color: #444;
}

.team-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.team-member_ {
  text-align: center;
  padding: 30px 10px;
}

.team-member {
  text-align: center;
  padding: 35px 10px;
}

.team-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}

.team-img:hover {
  transform: scale(1.05);
}

.team-member h5 {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
}


.team-member_ p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
  background-color: #f1d5a4;
  height: 125px;
  padding: 10px 20px;
}
.team-member_ ul {
  margin-top: -15px;
  background-color: #ac4507;
  height: 265px;
  border-radius: 0px 0px 50% 50%;
  padding-top: 5px;
}



.team-member_ li{
  font-size: 13px;
  text-align: start;
  margin: 15px 0px;
  padding: 5px 0px 0px 0px;
}

.team-member p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
  background-color: #ac4507;
  height: 125px;
  padding: 10px 20px;
}
.team-member ul {
  margin-top: -15px;
  background-color: #f1d5a4;
  height: 265px;
  border-radius: 0px 0px 50% 50%;
  padding-top: 5px;
}

.team-member li{
  font-size: 13px;
  text-align: start;
  margin: 15px 0px;
  padding: 5px 0px 0px 0px;
}

/* =======================About US============================ */


/* =======================Gallery============================ */

.filter-btns {
  text-align: center;
  margin-bottom: 20px;
}
.filter-btns button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  border-radius: 5px;
}
.filter-btns button.active {
  background-color: #007BFF;
  color: #fff;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.gallery-item {
  width: calc(33.333% - 10px);
}
.gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
.bookafreeconsultation{
  display: none !important;
}

.bookafreeconsultation{
  position: fixed;
  bottom: 0;
  align-items: center;
  display: flex;
  left: 10%;
}

.bookafreeconsultation button a{
  font-size: 16px;
  width: auto;
  text-decoration: none;
}

@media (max-width: 768px) {
  .gallery-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .gallery-item {
    width: 100%;
  }
}
.lb-image {
  max-width: 800px !important;
  max-height: 600px !important;
}
/* =======================Gallery============================ */

.nav-link.active {
  color: #ff7e00 !important;
  font-weight: 600;

}
.nav-link.active:hover {
  color: #222222 !important;

}

.testimonial-logos h2{
  background-color: #ac4507;
  padding: 20px;
  color: #ffffff;
}
.marquee_web{
  display: block;
}
.marquee_mob{
  display: none;
}

/* =================Media Queries less than 1392============================== */
@media (max-width: 1392px){
  .hero-text {
    max-width: 40%;
    padding-left: 40px;
}
.display-5 {
  font-size: 2rem;
}
h1 {
  font-size: 1.8rem;
}
.team-member_ p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
  background-color: #f1d5a4;
  height: 140px;
  padding: 10px 20px;
}
}



@media (max-width: 500px){
.topbar{
  display: none;
}.navbar-brand img {
  width: 150px;
  padding: 15px 20px;
}
.display-5 {
  font-size: 18px;
}
.hero-text {
  max-width: 100%;
  padding-left: 10px;
  margin-top: 20px;
}
.hero-video-wrapper {
  width: 300px;
  height: 220px;
  border-radius: 50%;
  margin-top: -20px;
  align-items: center;
  justify-content: center;
}
.hero-text {
  max-width: 100%;
  margin-bottom: 0px;
}
h1 {
  font-size: 1rem;
}
.lead {
  font-size: 1rem ;
  font-weight: 300;
  font-weight: 600 !important;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 14px;
}
.footer-divider {
  border-top: 3px solid #ffffff;
  margin-top: -35px;
}
.team-member {
  text-align: center;
  padding: 10px 10px;
}
.team-member ul{
  margin-top: 12px;
}
.team-member li{
  font-size: 12px;
}
.team-img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}
.about-company p {
  font-size: 14px;
  line-height: 24px;
}
.testimonial-logos h2 {
  background-color: #ac4507;
  padding: 20px;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
}
.contact-grid {
  display: block;
  gap: 30px;
  justify-content: center;
}
.contact-info{
  font-size: 12px;
  line-height: 18px;
}
.mapouter{
  width: 260px !important;
  height: 500px !important;
}
.contact-section {
  font-family: 'Poppins', sans-serif;
  padding: 10px 5px;
  background: #f8f9fa;
}
.contact-info, .contact-form {
  flex: 1 1 300px;
  padding: 10px;
}
.contact-info, .contact-form {
  flex: 1 1 300px;
  padding: 10px;
  box-shadow: none;
}
.team-member_ p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
  background-color: #f1d5a4;
  height: auto;
  padding: 10px 20px;
  font-size: 10px;
}
.team-member p {
  margin-bottom: 0;
  font-size: 12px;
  color: #666;
  background-color: #ac4507;
  height: auto;
  padding: 10px 20px;
  font-size: 10px;
}

.team-member_ li {
  font-size: 12px;
  text-align: start;
  margin: 2px 4px 0px 24px;
  padding: 5px 0px 0px 11px;
}
.team-member li {
  font-size: 12px;
  text-align: start;
  margin: 2px 4px 0px 24px;
  padding: 5px 0px 0px 11px;
}
.team-member_ ul {
  margin-top: 0px;
  background-color: #ac4507;
  height: 215px;
  border-radius: 0px 0px 50% 50%;
  padding-top: 5px;
}
.team-member ul {
  margin-top: 0px;
  background-color: #f1d5a4;
  height: 215px;
  border-radius: 0px 0px 50% 50%;
  padding-top: 5px;
}
ol, ul {
  padding-left: 1rem !important;
}
.team-member_ {
  text-align: center;
  padding: 0px 10px;
}

.team-member {
  text-align: center;
  padding: 0px 10px;
}
.testimonial-videos_web{
  display: none;
}
.testimonial-videos_mob{
  display: block;
}
.carousel-control-next{
  display: none;
}
.marquee_web{
  display: none;
}
.marquee_mob{
  display: block;
}

}
/* =================Media Queries less than 1392============================== */


.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social a{
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.social {
  background: #ac4507;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 30px 0 0 30px;
  cursor: pointer;
  width: 40px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.social a{
  color: #ffffff;
  display: flex;
}

.social i a {
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

.social span {
  margin-left: 10px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.social.active {
  width: 160px;
  background: #f4c400;
}

.social.active span {
  opacity: 1;
}

.social:hover {
  background-color: #e67122;
  color: #000;
  font-size: 18px;
  min-width: 20px;
  transition: 0.2s ease-in;
  text-align: center;
  color: #000000;

}


/* Hide on mobile */
@media (max-width: 768px) {
  .social-bar {
    display: none;
  }
  .bookafreeconsultation{
    display: block !important;
  }
  
  .bookafreeconsultation {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; /* Adjust width to fit the content properly */
    max-width: 400px; /* Set a max-width to keep it readable */
    padding:5px 10px;
}

/* Ensure the button and link stay in one line */
.bookafreeconsultation button {
    white-space: nowrap; /* Prevents wrapping */
    width: 100%; /* Makes sure the button expands properly */
}

  
  .bookafreeconsultation button a{
    font-size: 13px;
    text-decoration: none;
  }
}









