@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

.rajat-img {
  height: 350px;
  width: 350px;
}

.grey-theme {
  background: #1e1e1e;
  color: #fff;
}

.social-footer i:hover {
  color: #45c4a0;
}

.font1 {
  font-family: "Playfair Display", serif !important;
}

.swiper-container .london-img {
  width: 38px;
  height: 38px;
}

.green-soft {
  background-color: #84e5ca;
}

/* .hero-rajat {
  height: 100vh;
  width: 100%;
} */

/* podcast  */
.podcast-card {
  border-radius: 14px;
  overflow: hidden;
}

.media-icon.youtube {
  background: #ff0000;
}

.media-icon.spotify {
  background: #1db954;
}

.podcast-link {
  font-weight: 500;
  text-decoration: none;
}
/* podcast  */

.our-client-bg {
  background-image: url("./our-client-bg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* testimonials  */
.play-btn {
  width: 36px;
  height: 36px;
  background: #2f6bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.play-btn {
  width: 36px;
  height: 36px;
  background: #2f6bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
}

.london-img {
  width: 22px;
}

.testimonial-img {
  max-width: 300px;
}

/* Mobile Fix */

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-img {
    max-width: 220px;
    margin-bottom: 15px;
  }
}

/* blogs page  */

.card img {
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.card {
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Inner Blogs */

.blog-hero {
  background: #13283d;
  color: white;
  padding: 90px 20px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 42px;
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
}

.blog-hero p {
  margin-top: 15px;
  opacity: 0.9;
}

/* BLOG AREA */

.blog-area {
  padding: 70px 20px;
}

.blog-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */

.blog-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* CONTENT */

.blog-content h2 {
  font-size: 26px;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #0d2b45;
}

.blog-content p {
  font-size: 17px;
  margin-bottom: 18px;
}

.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-content li {
  margin-bottom: 8px;
}

/* HIGHLIGHT BOX */

.highlight {
  background: #eef3f9;
  padding: 20px;
  border-left: 4px solid #1a73e8;
  border-radius: 6px;
  margin: 25px 0;
}

/* footer bottom */
.footer-bottom {
  background-color: #000;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-bottom-content p a {
  color: #999999;
}

.footer-bottom-content p a:hover {
  color: #45c4a0;
}

/* footer */
/* =========================
   FOOTER MAIN
========================= */

.footer-dark {
  background: #1e1e1e;
  color: #fff;
  padding: 70px 0;
}

/* =========================
   FOOTER TITLE
========================= */

.footer-title {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 22px;
  color: #d6dde5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* accent line (desktop only) */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: #45c4a0;
}

/* =========================
   FOOTER LINKS
========================= */

.footer-links a {
  position: relative;
  display: block;
  color: #999999;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  width: fit-content;
  transition: color 0.3s ease;
}

/* animated underline */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #45c4a0;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #45c4a0;
}

.footer-links a:hover::after {
  width: 100%;
}

/* =========================
   CONTACT TEXT
========================= */

.footer-links p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #999999;
}

/* =========================
   ARROW ICON
========================= */

/* hidden on desktop */
.footer-arrow {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 2px solid #d8dee6;
  border-bottom: 2px solid #d8dee6;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

/* rotate arrow when open */
.footer-title.active .footer-arrow {
  transform: rotate(-135deg);
}

/* =========================
   MOBILE ACCORDION
========================= */

@media (max-width: 991px) {
  .footer-title {
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* divider between sections */
  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
    margin-bottom: 6px;
  }

  /* accordion container */
  .footer-links {
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 5px;
  }

  /* open accordion */
  .footer-links.active {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .footer-links a {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* show arrow */
  .footer-arrow {
    display: block;
    margin-left: 10px;
  }

  /* remove desktop accent line */
  .footer-title::after {
    display: none;
  }
}

/* =========================
   SMALL MOBILE IMPROVEMENT
========================= */

@media (max-width: 576px) {
  .footer-dark {
    padding: 50px 20px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 14px;
  }
}
