:root {
  --main-clr: #191919;
}

body {
  background-color: var(--main-clr);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar overrides */
.headerbar {
  border-bottom: 1px solid #262626;
}

.headerbar .nav-link {
  padding: 10px 20px !important;
}

.headerbar .nav-link.active {
  padding: 10px 20px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 0.9rem;
  margin-left: 0.8rem;
  letter-spacing: 0.04em;

}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  background-color: #2b2b2b;
  border-radius: 0.2rem;
  color: #fff;
}

.btn-yellow {
  background-color: #fff700;
  color: #121212;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover,
.btn-yellow:focus {
  background-color: #e5e500;
  color: #121212;
  box-shadow: none;
}

/* Logo style */
.navbar-brand .logo-box {
  background-color: #fff700;
  color: #121212;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

/* Hero content */
.hero-section {
  padding: 6rem 2rem 4rem 2rem;
  text-align: center;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-section p.lead {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* For segment container */
.segment-container {
  background-color: #1c1c1c;
  border-radius: 0.4rem;
  padding: 24px 40px;
  margin-bottom: 2.8rem;
  font-size: 20px;
  user-select: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 0.4rem; */
  color: #fff;
}

.btnswp {
  padding: 10px 18px;
}

.segment-container>span {
  display: flex;
  align-items: center;
  color: #ddd;
}

.segment-container>span.label {
  /* margin: 0 0.2rem; */
  user-select: none;
}

.segment-container>span.tag {
  background-color: #2c2c2c;
  border-radius: 0.25rem;
  padding: 0.3rem 0.6rem;
  margin: 0 0.2rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
  user-select: text;
  color: #f0f0f0;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease;
}

.segment-container>span.tag:hover {
  background-color: #444444;
}

/* Buttons container */
.hero-buttons {
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}



@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 68px;
  }
}


/* slider section start */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes slideright {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

.logos {
  overflow: hidden;
  padding: 40px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}

/* .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
} */

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  white-space: nowrap;
}

.logos-slide.leftslide {
  animation: 15s slide infinite linear;
}

.logos-slide.rightslide {
  animation: 15s slideright infinite linear;

}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
  display: inline-block;
  vertical-align: middle;
}

.trusted-brand {
  position: relative;
}

.trusted-brand::before {
  content: 'Trusted By 100+ Brands';
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  background-color: #2c2c2c;
  z-index: 999;
  color: white;
  padding: 10px 20px;
  height: fit-content;
  border-radius: 16px;
}

/* slider section end */

/* ////////////////////// services start  */
.services-section {
  padding: 60px 0;
}

.service-card {
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  z-index: 1;
}

/* Inner content container to hide overflow */
.service-card .card-inner {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background-color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 4px;
}

.icon-box i {
  color: yellow;
  font-size: 20px;
}

.service-card h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.service-card p {
  flex-grow: 1;
  color: #cccccc;
}

.service-card .btn {
  background-color: #262626;
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.service-card .btn:hover {
  background-color: #333333;
}

.bordershadow {
  border: 1px solid #333;

}

.services-section .icon-box {
  background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%), linear-gradient(229.29deg, rgba(158, 255, 0, 0.2) -68.25%, rgba(158, 255, 0, 0) 32.16%);
}

.bordershadow:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* service end  */


/* contact us start  */
.contactus-section {
  margin-bottom: -60px;
  z-index: 9;
  position: relative;
}

.stats-box {
  background-color: #ffeb00;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  margin-top: 30px;
}

.stats-item {
  text-align: center;
}

.stats-item h2 {
  font-weight: 800;
}

.contact-section {
  /* background: url('Images/contactbg.jpg') no-repeat center center/cover; */
  background: #191919;
  position: relative;
  padding: 100px 0 0 0px;
  color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-form {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  border-radius: 30px;
  padding: 12px 20px;
}

.contact-form button {
  background: #ffeb00;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
}

.contact-info i {
  font-size: 22px;
  border-radius: 50%;
  padding: 10px;
}

.contact-img img {
  max-width: 100%;
}

.contact-img {
  margin-top: auto;
}

.contactheading {
  font-size: 35px;
  font-weight: 700;
}

/* contact us end  */

/* footer start  */
.footer-section {
  background-image:
    linear-gradient(to right, rgba(29, 29, 29, 0.9), rgba(29, 29, 29, 0.9)),
    url('Images/footerbg.png');
}

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

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: .5s;
}

.footer-links a:hover {
  padding-left: 5px;
  transition: .5s;
}

.text-warningclr {
  color: #FAF80A;
}

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

.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF80A;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
}

.social-icon:hover {
  background-color: #fff;
  color: #000;
}

/* footer end  */




/* media query  */

@media screen and (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .hero-section {
    padding: 10px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .segment-container {
    padding: 5px;
    gap: 0.4rem;
  }

  .trusted-brand::before {
    width: max-content;
  }

}


/* media query end */


/* neeraj card start */
.neerajcard {
  position: relative;
}

.bookstrategy {
  /* position: absolute;
  bottom: 10%;
  left: 5%; */
  background: #ffeb00;
  color: black;
  font-weight: bold;


}

.bookstrategy {
  background-color: #ffeb00;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  /* font-size: 20px; */
  font-weight: bold;
  padding: 10px 14px;
  text-decoration: none;
  color: black;
}

.bookstrategy:active {
  position: relative;
  top: 1px;
}

.bookstrategy:hover {
  background: #ffeb00;
  color: black;
}

.linkedingbtn {
  border: 1px solid #0077B5;

}

.neerjimg {
  position: relative;
  z-index: 999;
}



@media screen and (max-width: 425px) {
  .linkedingbtn img {
    width: 25px !important;
  }

}

/* neeraj card end */
#bgCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}



.accordion-button:not(.collapsed) {
  background-color: #ffeb00 !important;
  border-color: #ffeb00 !important;
  color: #000;
  /* make text readable */
  box-shadow: none;
  /* remove default shadow */
}

/* Optional: active accordion border */
.accordion-item {
  border: 1px solid #ffeb00 !important;
  border-radius: 0.25rem;
  /* match bootstrap */
}

/* Keep collapsed ones normal */
.accordion-button.collapsed {
  background-color: #fff;
  color: #000;
}


@media (min-width: 992px) {

  /* lg breakpoint */
  .pe-lg-45 {
    padding-right: 45px !important;
  }
}