:root {
    --secondary-color:#E91D24 ;
    --primary-color: #C43131;
    --dim-color: #122553;
    --inactive-color: #65668A;
    --bg-grey: #e9ecef;
    --gold-color: #DCCF29;
    --background-light: #edf2f9;
}

body {
    margin: 0%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}
.top-bar {
  background-color: var(--primary-color) ;
  color: #fff; 
  font-size: 14px;
  padding: 10px 0;
  display: none; 
}
@media (min-width: 768px) {
  .top-bar {
    display: block; 
  }
}
.top-bar-content {
  text-align: right; 
}
.navbar-brand img {
  max-width: 100%;
}
.nav-link {
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--secondary-color) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.nav-link:hover {
    color: #e66064 !important;
}
.btn-custom {
    border-radius: 10px;
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  /* background-image: url('/assets/images/7413_55f9e12d78129_1024x800-1.jpg'); */
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.hero-text {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.hero-section .card {
  padding: 90px 50px 150px 50px;
  background-color: var(--secondary-color);
  border-radius: 50px;
}
.hero-section .card-body { 
  background-color: var(--secondary-color);
}
.hero-section .card-body .card-title{
  font-weight: 600;
  font-size: 29px;
  color: #ffffff !important;
  line-height: 1.3em;
  text-align: center;
}
.submit-button {
  right: 64px;
  background-color: var(--gold-color);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #fff;
}
.submit-button:hover{
  background-color: var(--gold-color);
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 20px 0;
  }
  .hero-text, .card {
    padding: 15px;
  }
}

@media (max-width: 575.98px) {
  .hero-text p {
    font-size: 14px;
  }
  .card-body {
    padding: 10px;
  }
}

/* services */

.services-section  {
  text-align: center;
  margin-bottom: 20px;
  background-color: var(--secondary-color);
  color : #fff
}
.services-section h2 {
  font-size: 30px;
  font-weight: bold;
}
.service-icon {
  font-size: 5rem;
  border: 2px solid var(--gold-color); 
  background-color: var(--gold-color); 
  border-radius: 50%;
  padding: 20px;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
  color: #fff; 
}
.service-heading {
  margin-top: 15px;
  transition: color 0.3s;
  color: var(--gold-color);
  font-weight: bold;
}

/* How its work  */
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-middle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-left {
  animation: slide-in-left 1s ease-out forwards;
}

.animate-middle {
  animation: slide-in-middle 1s 0.5s ease-out forwards;
}

.animate-right {
  animation: slide-in-right 1s 1s ease-out forwards;
}

.ready {
  background-image: radial-gradient(circle at top right, #e91d24 30%, #ffffff 100%);
  background-color: #e3e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  height: 37vh;
}

.ready .pr {
  margin-top: -65px;
  color: #fff;
}
.ready-btn {
margin-top: 3rem;
background-color: var(--gold-color);
color: #fff;
font-size: 18px;
font-weight: bold;
padding: 10px 20px;
border: 1px solid #fff;
}

.ready-btn:hover {
background-color: var(--gold-color);
color: #fff;
border: 1px solid #fff;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ready .pr {
   margin-top: 0;
    color: #fff;
  }
  .ready {
    height: auto;
  }
  .ready-btn {
    display: none;
  }
}
#how-work img{
  width: 100%;
}
/* How its work  */

/* Testimonials  */
.testimonials {
  background-color: var(--secondary-color)
}

.testimonial-card {
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: relative;
}

.testimonial-card img {
  object-fit: cover;
  align-self: flex-start;
  width: 80px !important;
  height: 80px !important;
}

.border-circle {
  border: 2px solid var(--secondary-color);
}

.testimonial-card .card-body {
  align-items: flex-start;
  position: relative;
}
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -45px;
  left: 32%;
  background-color: #fff !important;
}

.inverted-commas {
  font-size: 4rem; 
  color: var(--gold-color);
  position: absolute;
  top: -15px;
}

.testimonial-card .card-text {
  margin-bottom: 0.5rem;
  color: #333;
  margin-left: 3rem; 
}

.testimonial-card .card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-left: 3rem;
}


/* Responsive Design */
@media (max-width: 767.98px) {
  .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/* Testimonials End */

/* makes us different? */
.icon-circle {
  width: 50px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: var(--gold-color);
}



.text-white {
  color: white;
}

.list-unstyled {
  padding-left: 0;
}

.list-unstyled li {
  display: flex;
  align-items: start;
}

.list-unstyled li p {
  margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  section {
    flex-direction: column;
  }
  .col-lg-6 {
    width: 100%;
    text-align: center;
  }
}

/* footer */

footer{
  background-color: var(--secondary-color);
}
footer .centered-image {
  width: 160px;
  margin: 0 auto;
}
