@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

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

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --old-brown: #200305;
  --brown: #352613;
  --light-brown: #f3d172;
  --black: #000;
  --white: #fff;
  --red: #ba0001;
  --green: #70a430;
  --pink: #ee19c0;
  --blue: #072066;
}

/* body background css */

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: #0a0b0c;
  /* Your blue */

  position: relative;
}

/* Keep all sections transparent */

.banner,
main,
section,
footer,
nav {
  background: transparent;

  position: relative;

  z-index: 2;
}

/* body background css */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head .heading {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  color: var(--blue);

  position: relative;
}

.section-head .heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  height: 3px;
  width: 10%;
  background-color: var(--light-brown);
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head .heading {
    font-size: 28px;
  }

  .section-head .heading::after {
    left: 40%;
    height: 2px;
    width: 20%;
    bottom: -10px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 20px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 100px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0px;
  }
}

/* footer css */

/* custom css start --------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px;
  background: var(--white);
  box-shadow: rgba(243, 242, 242, 0.35) 0px 5px 15px;

  background: #000000;
}

.navbar .logo {
  width: 180px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
  font-size: 20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--light-brown);
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--light-brown);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--light-brown);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: var(--light-brown);
}

.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--light-brown);
  box-shadow: none;
}

/* navbar login btn css */

.nav-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  background: #3c3b3b;
  transition: all 0.35s ease;
}

/* Animated Border */
.nav-btn a::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: conic-gradient(#ff0000,
      #ff7300,
      #ffd700,
      #00ff00,
      #00e5ff,
      #004cff,
      #7a00ff,
      #ff008c,
      #ffffff,
      #ff0000);
  animation: rotateBorder 3s linear infinite;
  z-index: -2;
}

/* Inner Background */
.nav-btn a::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #111;
  border-radius: 46px;
  z-index: -1;
}

/* Hover */
.nav-btn a:hover {
  color: #ffd700;
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(255, 215, 0, 0.4);
}

.nav-btn a:hover::before {
  animation-duration: 1s;
}

/* Border Rotation */
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* navbar login btn css ends */

/* responsive navbar */

@media screen and (max-width: 1400px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
}

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

  .navbar .logo {
    width: 120px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }


  .nav-btn {
    text-align: center;
  }
}

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

  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
  }
}

/* .dropdown .dropdown-menu {
    display: block;
    position: absolute;
    border: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */

/* Dropdown width */
/* .dropdown-menu {
    min-width: 100px;
    width: 180px;
} */

/* Dropdown items */
/* .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: wrap;

}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .dropdown-menu li {
    font-size: 14px;
    padding: 10px 5px;
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li a {
    color: var(--black);
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
    background: var(--pink);
}

.dropdown .dropdown-menu li:hover a {
    color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
    background: none;
}




@media screen and (max-width: 1400px) {
    .dropdown .dropdown-menu li {
        font-size: 14px;
        padding: 5px 2px;
    }

    .dropdown .dropdown-menu .dropdown-item {
        padding: 5px 10px;
    }


}

@media screen and (max-width: 991px) {
    .dropdown .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        min-width: 100px;
        width: 160px;
    }


    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown .dropdown-menu li {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
        transition: 0.2s ease-in-out;
    }
} */

/* --------------- end of navbar css here ------------- */

/* ---------------- banner css start here -------------- */

.banner {
  position: relative;

  overflow: hidden;

  min-height: 100vh;
  background: #000000;
  color: var(--white);
}

.banner .container {
  height: 100vh;
}

.banner .banner-content {
  position: relative;
  z-index: 5;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;
  /* Vertical Center */
  align-items: center;
  /* Horizontal Center */

  text-align: center;
}

.banner .banner-heading h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 60px;
}

.banner .banner-text p {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.social-icons a {
  font-size: 40px;
  color: var(--white);
}

.banner .banner-btn {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.banner .banner-btn a {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--white);
  padding: 10px 30px;
  border-radius: 10px;
  color: var(--brown);
  font-size: 22px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.banner .banner-btn a:hover {
  background: none;
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .banner .banner-heading h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .banner .banner-text p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icons a {
    font-size: 26px;
  }

  .banner .banner-btn {
    margin-top: 25px;
  }

  .banner .banner-btn a {
    padding: 5px 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .banner .banner-heading h2 {
    font-size: 22px;

    margin-bottom: 20px;
  }

  .banner .banner-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    font-size: 20px;
  }

  .banner .banner-btn {
    margin-top: 20px;
  }

  .banner .banner-btn a {
    padding: 5px 20px;
    font-size: 18px;
  }
}

/* ---------------- end of banner css here ------------- */

/* ---------------- about us css start here ---------------- */

.about-us .about-img img {
  border-radius: 20px;
}

.about-section {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.section-tag {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #d8d8d8;
  text-transform: uppercase;
  background: #101010;
}

.about-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.about-title span {
  color: #fff;
}

.about-subtitle {
  max-width: 900px;
  margin: auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #e6e6e6;
}


.about-card {
  max-width: 1120px;
  margin: auto;
  background: linear-gradient(180deg, #131414, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 55px;
}

.about-card p {
  margin: 0;
  text-align: center;
  color: #ededed;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 500;
}

.info-card {
  background: linear-gradient(180deg, #111111, #161616);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 40px;
  transition: 0.35s;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff33;
}

.info-card h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 28px;
}

.info-card p {
  font-size: 23px;
  color: #e4e4e4;
  line-height: 1.8;
  margin: 0;
}

.about-card h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Tablet */

@media (max-width: 991px) {
  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-card {
    padding: 25px;
  }

  .about-card p {
    font-size: 16px;
  }

  .info-card h3 {
    font-size: 28px;
  }

  .info-card p {
    font-size: 16px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 14px;
    font-weight: 500;
  }

  .about-card {
    padding: 10px 5px;
    border-radius: 25px;
  }

  .about-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .info-card {
    padding: 10px;
    border-radius: 25px;
  }

  .info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .info-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}



/* counter css start */

.counter-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  max-width: 950px;
  margin: auto;
  line-height: 1.5;
  color: #fff;
}

.counter-box {
  text-align: center;
  padding: 30px 15px;
}

.counter-box h3 {
  font-size: 90px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.counter-box p {
  text-align: center;
  font-size: 34px;
  color: #c5c3c3;
  margin: 0;
}



@media (max-width: 991px) {
  .counter-heading {
    font-size: 24px;
    font-weight: 600;
  }

  .counter-box h3 {
    font-size: 42px;
  }

  .counter-box p {
    font-size: 22px;
  }
}


@media (max-width: 767px) {

  .counter-heading {
    font-size: 20px;

    line-height: 1.6;
  }

  .counter-box {
    padding: 10px 5px;
  }

  .counter-box h3 {
    font-size: 40px;
  }

  .counter-box p {
    font-size: 16px;
  }
}

/* counter css end */

/* ------------------ end of about us css here ------------------ */

/* ------------------ why us css start here ------------------ */

.why-us {
  background: #2f2e2e74;
  border-radius: 20px;
  padding: 50px 20px;
  margin: 0px 50px;
}

.section-tag {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #ddd;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #111;
}

.why-title {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.25;
}

.why-card {
  background: linear-gradient(180deg, #1a1a1a, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px 35px;
  height: 100%;
  transition: 0.4s ease;
}

.why-card:hover {
  background: #050505;
  border-color: #ffffff30;
  transform: translateY(-8px);
}

.icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.icon i {
  color: #fff;
  font-size: 34px;
}

.why-card h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-card p {
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

/* Tablet */

@media (max-width: 991px) {

  .why-title {
    font-size: 32px;
    font-weight: 600;
  }

  .why-card {
    padding: 20px 15px;
  }

  .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .icon i {
    font-size: 26px;
  }

  .why-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 16px;
  }


}

/* Mobile */

@media (max-width: 767px) {
  .why-us {
    padding: 70px 0;
    margin: 10px;
  }

  .why-title {
    font-size: 22px;
  }

  .why-card {
    padding: 15px;
    border-radius: 22px;
  }

  .icon {
    width: 50px;
    height: 50px;
  }

  .icon i {
    font-size: 22px;
  }

}

/* ------------------ end of why us css here ------------------ */

/* ------------------ our services css start here ------------------ */

.service-tag {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #ddd;
  font-size: 14px;
  letter-spacing: 2px;
}

.service-title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
}

.service-desc {
  max-width: 850px;
  margin: 25px auto 0;
  color: #ddd;
  font-size: 22px;
  line-height: 1.7;
}

.service-card {
  padding: 20px 15px;
  height: 100%;
  transition: 0.4s;
}

.service-card.active {
  background: linear-gradient(180deg, #121313, #0d0d0d);
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.icon-box i {
  font-size: 22px;
  color: #111;
}

.service-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.service-card p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 55px;
}

.service-card a {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #a8a8a8;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

.circle {
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.circle i {
  color: #fff;
  font-size: 22px;
}

.service-card:hover .circle {
  background: #fff;
}

.service-card:hover .circle i {
  color: #000;
}

@media (max-width: 992px) {
  .service-title {
    font-size: 32px;
  }

  .service-desc {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .service-card {
    padding: 20px 10px;
  }


  .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .icon-box {
    margin-bottom: 20px;
  }

  .icon-box i {
    font-size: 16px;
  }

  .circle {
    width: 40px;
    height: 40px;
  }

  .circle i {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card span {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-card a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {


  .service-title {
    font-size: 24px;
  }

  .service-desc {
    font-size: 14px;

  }

  .service-card {
    padding: 10px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card span {
    font-size: 14px;
  }

  .service-card a {
    font-size: 14px;
  }
}

/* ----------------- end of our services css here ----------------- */

/* ----------------- testimonial css start here ----------------- */

.testimonial-section {
  background: #2f2e2e74;
  border-radius: 20px;
  padding: 50px 20px;
  margin: 0px 50px;
}

.section-tag {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #d9d9d9;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 70px;
}

.testimonial-card {
  background: #282828;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: #222423;
}

.review-text {
  color: #fff;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100px;
  margin-bottom: 50px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.stars {
  color: #ffc928;
  font-size: 18px;
}

.stars i {
  margin-left: 2px;
}



@media (max-width: 992px) {
  .testimonial-section {
    padding: 20px 5px;
    margin: 0px 0px;
    border-radius: 0px;
  }

  .testimonial-title {
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 40px;
  }


  .testimonial-card {
    padding: 20px 10px;
  }

  .client-info {
    gap: 10px;
  }

  .client-info img {
    width: 50px;
    height: 50px;
  }


  .review-text {
    font-size: 18px;
    min-height: auto;
  }

  .client-info h4 {
    font-size: 20px;
    font-weight: 500;
  }

  .stars {
    font-size: 16px;
  }
}



@media (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px 10px;
  }

  .review-text {
    font-size: 14px;
    margin-bottom: 35px;
  }



  .client-info h4 {
    font-size: 18px;
  }

  .stars {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --------------- end of testimonial css here --------------- */

.faq-section {
  background: #090909;
  padding: 100px 0;
}

/* .faq-badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #d9d9d9;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
} */

.faq-title {
  color: #fff;
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 60px;
}

.faq-accordion {
  max-width: 1050px;
  margin: auto;
}

.accordion-item {
  background: #171818;
  border: none;
  border-radius: 24px !important;
  overflow: hidden;
  margin-bottom: 18px;
}

.accordion-button {
  background: #171818;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  padding: 32px 40px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #171818;
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  position: absolute;
  right: 35px;
  width: 34px;
  height: 34px;
  background: #3b3b3b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
}

.accordion-button:not(.collapsed)::before {
  content: "×";
}

.accordion-body {
  background: #171818;
  color: #d9d9d9;
  font-size: 22px;
  line-height: 1.8;
  padding: 0 40px 35px;
}

/* Remove Bootstrap focus */

.accordion-button:focus {
  box-shadow: none;
}


@media (max-width: 992px) {
  .faq-title {
    font-size: 36px;
  }

  .accordion-button {
    font-size: 24px;
  }

  .accordion-body {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-title {
    font-size: 24px;
    font-weight: 500;
  }

  .accordion-button {
    padding: 20px;
    font-size: 18px;
  }

  .accordion-body {
    padding: 0 25px 25px;
    font-size: 14px;
  }

  .accordion-button::before {
    right: 15px;
    width: 20px;
    height: 20px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .accordion-body {
    padding: 0 15px 15px;
    font-size: 12px;
  }

  .accordion-button::before {
    right: 10px;
    width: 15px;
    height: 15px;
    font-size: 14px;
  }
}


/* ---------------- end of faq section css here ---------------- */


/* footer css start here */

.footer-section {
  background: #2f2e2e74;

  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 50px 20px;
  margin: 0px 50px;

}

.footer-top-border,
.footer-bottom-border {

  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .10);

}

.footer-content {

  padding: 90px 0;

}

.footer-logo img {
  width: 250px;
}


.footer-links li {

  margin-bottom: 22px;

}

.footer-links li:last-child {

  margin-bottom: 0;

}

.footer-links a {

  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  transition: .3s;

}

.footer-links a:hover {

  color: #bcbcbc;

}

.copyright {

  text-align: center;
  margin-top: 35px;

}

.copyright p {

  color: #cfcfcf;
  font-size: 22px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

}

.copyright img {

  width: 34px;
  height: auto;

}

/* Tablet */

@media(max-width:991px) {

  .footer-content {

    padding: 70px 0;

  }

  .footer-logo {

    text-align: center;
    margin-bottom: 50px;

  }


  .footer-links a {

    font-size: 20px;

  }

  .copyright p {

    font-size: 18px;

  }

}


@media(max-width:767px) {
  .footer-section {
    margin: 0px 10px;
  }

  .footer-content {
    padding: 50px 0;
  }

  .footer-logo img {

    width: 180px;

  }

    .footer-links {

    text-align: center;

  }

  .footer-links li {

    margin-bottom: 16px;

  }

  .footer-links a {

    font-size: 18px;

  }

  .copyright {

    margin-top: 25px;

  }

  .copyright p {

    font-size: 15px;
    line-height: 1.8;

  }

  .copyright img {

    width: 28px;

  }

}

/* ---------------- end of footer css here ---------------- */



/* ---------------- excellence section css start ---------------- */



.fiduciary-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.fiduciary-content {
  padding-left: 50px;
}

.fiduciary-content .icon-box {

  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;

}

.fiduciary-content .icon-box i {

  color: #111;
  font-size: 20px;

}

.fiduciary-content h2 {

  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;

}

.fiduciary-content p {

  color: #d8d8d8;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;

}

/* Hover Effect */

.fiduciary-image {
  overflow: hidden;
  border-radius: 30px;

}

.fiduciary-image img {

  transition: .5s;

}

.fiduciary-image:hover img {

  transform: scale(1.05);

}

/* Tablet */

@media(max-width:991px) {

  .fiduciary-section {

    padding: 50px 0;

  }

  .fiduciary-content {

    padding-left: 0;
    margin-top: 20px;

  }

  .fiduciary-content h2 {

    font-size: 32px;

  }

  .fiduciary-content p {

    font-size: 18px;

  }

}

/* Mobile */

@media(max-width:767px) {

  .fiduciary-section {

    padding: 60px 0;

  }

  .fiduciary-image img {

    border-radius: 20px;

  }

  .fiduciary-content .icon-box {

    width: 55px;
    height: 55px;
    border-radius: 15px;

  }

  .fiduciary-content .icon-box i {

    font-size: 22px;

  }

  .fiduciary-content h2 {

    font-size: 22px;

  }

  .fiduciary-content p {

    font-size: 14px;
    line-height: 1.7;

  }

}

/* end of excellence css here */