.hero {
  width: 100%;
  background: black;
  padding: 60px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(/images/cri2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

/* LEFT CONTENT */
.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-size: 45px;
  font-family: system-ui;
  font-weight: 700;
  color: white;
}

.hero-content h1 span {
  color: #ebcf74;
}

.hero-content h2 {
  margin: 15px 0;
  font-size: 18px;
  color: white;
}

.hero-content p {
  margin-top: 15px;
  text-align: left;
  font-size: 19px;
  line-height: 1.7;
  color: white;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline {
  padding: 10px 18px;
  border: 1px solid #ebcf74;
  color: #ebcf74;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ebcf74;
  color: #fff;
}

/* RIGHT SLIDER */
.hero-slider {
  width: 50%;
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content,
  .hero-slider {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-slider {
    height: 300px;
  }

  .hero-content p {
    margin-top: 20px;
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
    color: white;
  }
}

/* RIGHT SLIDER */
.hero-slider {
  width: 50%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  margin-top: 46%;
  transition: transform 0.6s ease-in-out;
}

.slide-box {
  min-width: 33.33%;
  padding: 8px;
}

.slide-box img {
  width: 98%;
  height: 117px;
  /* object-fit: cover; */
  border-radius: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content,
  .hero-slider {
    width: 100%;
  }

  .slide-box {
    min-width: 50%;
  }
}

.slider-btn {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.6);
  border: none;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev {
  left: 47%;
}

.slider-btn.next {
  right: 5px;
}

.slider-btn:hover {
  background: #ebcf74;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content,
  .hero-slider {
    width: 100%;
  }

  .slide-box {
    min-width: 50%;
  }
}

/* blog ----------------------------------------------------------------------------------------------------------------*/

.trending {
  padding: 28px 0;
  background: black;
}

.trending-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ebcf74;
}

.color {
  color: #ebcf74;
  font-weight: 500;
  font-family: system-ui;
}

.section-title {
  margin: 10px 0 40px;
  font-size: 42px;
  font-family: system-ui;
  font-weight: 700;
  color: white;
}

.trending-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-big .blog-img {
  position: relative;
}

.blog-big img {
  width: 81%;
  border-radius: 6px;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1a1a1a;
  color: white;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}

.blog-content {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.date {
  text-align: center;
  font-weight: 700;
}

.date .day {
  font-size: 28px;
  color: white;
  display: block;
}

.date .month {
  font-size: 12px;
  color: white;
}

.blog-content h3 {
  font-size: 22px;
  color: white;
  font-family: system-ui;
  margin-bottom: 10px;
}

.blog-content p {
  color: white;
  width: 80%;
  text-align: left;
  font-size: 16.5px;
  font-family: system-ui;
}

.blog-content small {
  display: block;
  margin-top: 10px;
  color: #ebcf74;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: -161px;
}

.blog-small {
  display: flex;
  gap: 15px;
  align-items: center;
}

.blog-small img {
  width: 36%;
  height: 157px;
  border-radius: 6px;
}

.blog-small .meta {
  font-size: 14px;
  font-family: system-ui;
  color: #ebcf74;
}

.blog-small h4 {
  font-size: 18px;
  font-family: system-ui;
  font-weight: 600;
  color: white;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .trending-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .blog-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-left: 0px;
  }
  .blog-small img {
    width: 35%;
    height: 106px;
    border-radius: 6px;
  }
}
/* blogshow-------------------------------------------------------------------------------------- */

.blog-showcase {
  background: black;
  padding: 50px 0;
  color: #fff;
}

.blog-showcase-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.blog-left {
  width: 27%;
}

.section-tag {
  font-size: 15px;
  letter-spacing: 2px;
  font-family: system-ui;
  color: #ebcf74;
}

.blog-left h2 {
  margin: 10px 0 40px;
  font-size: 42px;
  font-family: system-ui;
  font-weight: 700;
  color: white;
}

.blog-left p {
  color: #bbb;
  line-height: 1.7;
  font-size: 18px;
}

/* ACTIONS */
.blog-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-primary {
  padding: 10px 18px;
  border: 1px solid #ebcf74;
  color: #ebcf74;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.video-btn .play {
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT BLOGS */
.blog-right {
  width: 70%;
  display: flex;
  gap: 30px;
}

.blog-card {
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-info h3 {
  font-size: 19px;
  margin-bottom: 5px;
}

.blog-info p {
  color: #ebcf74;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-showcase-container {
    flex-direction: column;
  }

  .blog-left,
  .blog-right {
    width: 100%;
  }

  .blog-left h2 {
    font-size: 32px;
  }

  .blog-right {
    flex-direction: column;
  }
}

/*  home about ------------------------------------------------------------------------------------------------ */

.whatwedo {
  padding: 48px 0;

  background: black;
}

.whatwedo-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
}

.whatwedo-left {
  width: 45%;
}

.whatwedo-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 20px 0;
}

.whatwedo-left .intro {
  font-size: 19px;
  color: white;
  max-width: 420px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  color: white;
}

.author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author h3 {
  font-size: 16px;
  margin-bottom: 3px;
  color: white;
}

.author span {
  font-size: 14px;
  color: white;
}

/* RIGHT */
.whatwedo-right {
  width: 55%;
}

.quote {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.quote-icon {
  font-size: 64px;
  font-weight: 700;
  color: white;

  line-height: 1;
}

.quote p {
  font-size: 18px;
  color: white;
  line-height: 1.6;
}

.text-columns {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.text-columns p {
  font-size: 19px;
  color: white;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .whatwedo-container {
    flex-direction: column;
  }

  .whatwedo-left,
  .whatwedo-right {
    width: 100%;
  }

  .whatwedo-left h2 {
    font-size: 34px;
  }

  .text-columns {
    grid-template-columns: 1fr;
  }

  .quote p {
    font-size: 18px;
    color: white;
    text-align: end;
    line-height: 1.6;
  }

  .text-columns p {
    font-size: 15px;
    color: white;
    text-align: justify;
    line-height: 1.7;
  }

  .support-content p {
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
    color: #ffffff;
    margin-bottom: 35px;
  }
}

@media (max-width: 500px) {
  .quote p {
    text-align: start;
    font-size: 17px;
  }
  .quote-icon {
    display: none;
  }
}

.color {
  font-family: system-ui;
  color: #ebcf74;
  font-weight: 600;
}

.reddy-support {
  background: #000;
  padding: 60px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 500px) {
  .reddy-support {
    padding: 20px 0px;
  }
}

.support-content {
  max-width: 90%;
}

.support-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ebcf74;
  margin-bottom: 20px;
}

.support-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 35px;
}

.reliable-section {
  background: #000;
  padding: 30px 20px;
  margin-top: -100px;
  padding-bottom: 80px;
}

.reliable-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.reliable-text {
  flex: 1;
}

.reliable-text h2 {
  font-size: 39px;

  color: #ebcf74;
  font-weight: 700;
  margin-bottom: 20px;
}

.reliable-text p {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.reliable-text h4 {
  color: #ebcf74;
  font-size: 20px;
  margin-bottom: 15px;
}

.reliable-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.reliable-text ul li {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.reliable-text ul li::before {
  content: "•";
  color: #ebcf74;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.highlight {
  color: #ebcf74;
  font-weight: 600;
}

.bottom-text {
  margin-top: 10px;
}

.reliable-image {
  flex: 1;
  text-align: right;
}

.reliable-image img {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .reliable-container {
    flex-direction: column;
    text-align: center;
  }

  .reliable-text p {
    color: #ffffff;
    font-size: 17px;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .reliable-image {
    text-align: center;
    margin-top: 30px;
  }

  .reliable-text h2 {
    font-size: 30px;
  }

  .reliable-text ul li {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    text-align: justify;
    padding-left: 20px;
  }

  .reliable-text h4 {
    color: #ebcf74;
    font-size: 20px;
    text-align: left;
    margin-bottom: 15px;
  }
}

.funds-section {
  background: black;
  padding: 3px 20px;
}

.funds-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.funds-bottom {
  margin-left: -103px;
  text-align: left;
}

.funds-bottom h3 {
  font-family: system-ui;
  color: #ebcf74;
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 500;
}

.funds-bottom p {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.funds-bottom h4 {
  color: #ebcf74;
  font-size: 20px;
  margin-bottom: 15px;
}

.funds-bottom ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.funds-bottom ul li {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.funds-bottom ul li::before {
  content: "•";
  color: #ebcf74;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.highlight {
  color: #ebcf74;
  font-weight: 600;
}

.bottom-note {
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .funds-top h2 {
    font-size: 28px;
  }

  .funds-bottom {
    text-align: left;
    margin-left: 2px;
  }

  .funds-bottom h3 {
    font-size: 28px;
  }

  .funds-container {
    text-align: center;
  }

  .funds-top ol,
  .funds-bottom {
    text-align: left;
  }
  .support-content h2 {
    font-size: 34px;
  }
  .reliable-section {
    padding: 30px 20px 50px;
  }
}
