/********** Template CSS **********/

:root {
  --primary: #1A73E8;
  --primary-dark: #1557B0;
  --secondary: #0B3C7D;
  --light-green: #F4B400;
  --gray: #77867f;
  --light: #F9FAFB;
  --dark: #1F2937;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 500;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--light-green);
  border-color: var(--light-green);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
  position: relative;
  padding: 0 0 10px 10px;
  z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
  font-size: 60px;
  line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  left: 0;
  bottom: 0;
  border-radius: 35px;
  transition: 0.5s;
  z-index: -1;
}

.icon-box-primary::before {
  background: var(--secondary);
}

.icon-box-light::before {
  background: var(--light);
}

/*** Navbar ***/
.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .sticky-top {
    margin-top: -34px;
  }

  .navbar {
    height: 68px;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (min-width: 992px) {
  .header-carousel,
  .page-header {
    margin-top: -34px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(26, 115, 232, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
}

@media (max-width: 767.98px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(rgba(26, 115, 232, 0.7), rgba(26, 115, 232, 0.7)),
    url(../img/testimonial.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: #ffffff;
}

/*** Features ***/
.feature {
  background: linear-gradient(rgba(26, 115, 232, 0.7), rgba(26, 115, 232, 0.7)),
    url(../img/feature.jpg) left center no-repeat;
  background-size: cover;
}

.feature-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature-item {
  border-color: var(--gray);
}

.experience .progress {
  height: 5px;
}

.experience .progress .progress-bar {
  width: 0px;
  transition: 3s;
}

.experience .nav-pills .nav-link {
  color: var(--dark);
}

.experience .nav-pills .nav-link.active {
  color: #ffffff;
}

.experience .tab-content hr {
  width: 30px;
}

/*** About ***/
.about-fact {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .about-fact.mt-n130 {
    margin-top: -130px;
  }
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 36px;
  height: 46px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 3px;
  border-left: 30px solid #ffffff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.container-service {
  position: relative;
  z-index: 1;
}

.container-service::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  z-index: -1;
  background: linear-gradient(rgba(26, 115, 232, 0.85), rgba(26, 115, 232, 0.85)),
    url(../img/carousel-1.jpg) top center no-repeat;
  background-size: cover;
  border-bottom: 20px solid var(--primary);
}

.service-item {
  position: relative;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  z-index: 1;
  transition: 0.5s;
  height: 100%;
}

.service-item:hover {
  background: var(--primary);
  box-shadow: 0 0 45px rgba(76, 44, 114, 0.45);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

.service-item:hover .icon-box-primary::before {
  background: #ffffff;
}

.service-item:hover .icon-box-primary i {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

/*** Team ***/
.container-team {
  position: relative;
}

.container-team::before {
  position: absolute;
  content: "";
  background: var(--light);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
  z-index: -1;
}

.team-item {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.5s;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-item:hover .team-social {
  width: 100%;
  left: 0;
}

.team-item .team-social .btn {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-item .team-social .btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
  background: linear-gradient(rgba(26, 115, 232, 0.7), rgba(26, 115, 232, 0.7)),
    url(../img/testimonial.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-item img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-left: 15px;
  color: var(--secondary);
  font-size: 30px;
  line-height: 0;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-dark);
}

/*** Contact ***/
@media (min-width: 992px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 50%;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 991.98px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0px;
    top: 50%;
    left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

/*** Enhanced Footer ***/
.footer {
  position: relative;
  padding: 80px 0 40px;
}

.footer .container {
  padding: 50px 0;
}

.footer h1.logo-text {
  font-size: 1.8rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer p i {
  color: var(--light-green);
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer .row.g-5 {
  padding: 30px 0;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-green);
  display: inline-block;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 12px;
  padding: 8px 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "→";
  color: var(--light-green);
  margin-right: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer .btn.btn-link:hover {
  color: var(--light-green);
  letter-spacing: 1px;
  box-shadow: none;
  padding-left: 10px;
}

.footer .btn.btn-link:hover::before {
  margin-right: 15px;
}

.footer::after {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer .container {
    padding: 30px 0;
  }
  
  .footer .row.g-5 {
    padding: 20px 0;
  }
  
  .footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(244, 180, 0, 0.3);
  padding: 30px 0;
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.copyright a {
  color: var(--bs-white);
}

.copyright a:hover {
  color: var(--bs-primary);
}

/* Logo styling */
.logo-text {
  font-family: "Red Rose", sans-serif;
  font-weight: 700;
  color: var(--light-green);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text span {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer .logo-text {
  color: var(--light-green);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer .logo-text span {
  color: white;
}

/* Home section styling */
.hero-banner {
  padding: 100px 0;
  background: linear-gradient(rgba(26, 115, 232, 0.7), rgba(26, 115, 232, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
  color: #ffffff;
  position: relative;
}

.hero-banner h1,
.hero-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-banner h2 {
  font-size: 24px;
  font-weight: 500;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.2);
}

.faq-item h5 {
  cursor: pointer;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 5px solid var(--primary);
  margin-bottom: 0;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-item h5:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: var(--primary);
}

.faq-item h5::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.faq-item h5.active::after {
  transform: rotate(-180deg);
}

.faq-answer {
  padding: 20px;
  background-color: #ffffff;
  border-left: 5px solid var(--primary);
  color: var(--dark);
  line-height: 1.8;
  border-top: 1px solid #e9ecef;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Area Section */
.service-area ul {
  columns: 3;
  column-gap: 30px;
}

@media (max-width: 768px) {
  .service-area ul {
    columns: 2;
  }
}

@media (max-width: 576px) {
  .service-area ul {
    columns: 1;
  }
}

/* About section image styling */
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s;
}

.about-image:hover {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  padding: 20px;
  border-top-right-radius: 50px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

/*** Detailed Services Section Enhancements ***/
.feature {
  padding: 60px 0;
}

.feature .row.g-0 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.feature .col-lg-6 {
  display: flex;
  align-items: center;
  padding: 25px;
  min-height: 380px;
}

.feature .bg-white {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px !important;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary);
}

.feature .bg-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.2);
}

.feature .bg-white h1 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 25px;
  font-weight: 700;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.feature .bg-white:hover h1 {
  color: var(--primary);
}

.feature .bg-white p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.feature .col-12.mt-4 {
  width: 100%;
  padding: 0 25px;
}

.feature .bg-primary {
  padding: 50px !important;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

.feature .bg-primary h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.feature .bg-primary p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature .bg-primary .row.mt-5 {
  gap: 25px;
  margin-top: 35px !important;
}

.feature .bg-primary .col-md-4 {
  padding: 25px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature .bg-primary .col-md-4:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature .bg-primary .col-md-4 .d-flex {
  gap: 15px;
}

.feature .bg-primary .col-md-4 h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.feature .bg-primary .icon-box-primary::before {
  background: var(--light-green) !important;
}

.feature .bg-primary .icon-box-primary i {
  color: var(--primary) !important;
}

@media (max-width: 1199.98px) {
  .feature .col-lg-6 {
    min-height: 350px;
    padding: 20px;
  }
  
  .feature .bg-white {
    padding: 35px !important;
  }
}

@media (max-width: 991.98px) {
  .feature .col-lg-6 {
    min-height: auto;
    padding: 15px;
  }
  
  .feature .bg-white {
    padding: 30px !important;
  }
  
  .feature .col-12.mt-4 {
    padding: 0 15px;
  }
  
  .feature .bg-primary {
    padding: 35px !important;
  }
  
  .feature .bg-primary h2 {
    font-size: 1.6rem;
  }
  
  .feature .bg-primary .row.mt-5 {
    gap: 15px;
    margin-top: 25px !important;
  }
  
  .feature .bg-primary .col-md-4 {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .feature .col-lg-6 {
    padding: 10px;
  }
  
  .feature .bg-white {
    padding: 25px !important;
  }
  
  .feature .bg-white h1 {
    font-size: 1.5rem;
  }
  
  .feature .bg-primary {
    padding: 25px !important;
  }
  
  .feature .bg-primary h2 {
    font-size: 1.3rem;
  }
}

/*** Enhanced Footer ***/
.footer {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
}

.footer .container.py-5 {
  padding: 50px 0 !important;
}

.footer h1.logo-text {
  font-size: 1.8rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: var(--light-green);
}

.footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer p i {
  color: var(--light-green);
  margin-right: 10px;
  font-size: 1.1rem;
  width: 20px;
}

.footer .row.g-5 {
  padding: 30px 0;
}

.footer h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-green);
  display: inline-block;
  letter-spacing: 0.5px;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 12px;
  padding: 8px 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "→";
  color: var(--light-green);
  margin-right: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer .btn.btn-link:hover {
  color: var(--light-green);
  letter-spacing: 0.5px;
  box-shadow: none;
  padding-left: 8px;
}

.footer .btn.btn-link:hover::before {
  margin-right: 15px;
}

.footer::after {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(244, 180, 0, 0.3);
  padding: 30px 0;
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.copyright a {
  color: var(--light-green);
  transition: color 0.3s ease;
  text-decoration: none;
}

.copyright a:hover {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer .container.py-5 {
    padding: 30px 0 !important;
  }
  
  .footer .row.g-5 {
    padding: 20px 0;
  }
  
  .footer h1.logo-text {
    font-size: 1.5rem;
  }
  
  .footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer h1.logo-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .footer h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .copyright {
    padding: 20px 0;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
}
