
/* General Reset & Typography */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  text-align: justify;
  background-image: url(../img/texture-repeat.jpg);
}

hr {
  border: 1px solid #5F696A;
}

h2 span {
  color: #f76f01;
  font-weight: 900;
}
h6 span, h4 span{
  color: #f76f01;
  font-weight: 900;
}
/* Header */
header {
  background: #483d37;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.navbar-brand .logo {
  height: 50px;
}

.navbar .navbar-nav .nav-item a {
  color: #fff;
  transition: 300ms ease-in-out all;
  border-bottom: 2px solid #483d37;
}

.navbar .navbar-nav .nav-item a:hover {
  color: #f76f01;
  border-bottom: 2px solid #f76f01;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-carousel img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.carousel-indicators li {
  background-color: #f76f01;
}

/* Section Spacing */
.section {
  padding: 60px 0;
}
.ourapproach .container p a{
  position: relative;
  transform: translateY(50%);
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
  margin-bottom: 15px;
  font-size: 14px;
  display: inline-block;
  color: #FFF;
  text-decoration: none;
}
.ourapproach .container p a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #FFF;
  transition: width 0.5s ease;
}
.ourapproach .container p a:hover::after {
  width: 100%;
}

.terms-and-conditions .privacy{
  color: #f97101;
  text-decoration: none;
  transition: color 0.3s ease;
}
.terms-and-conditions .privacy:hover{
  text-decoration: underline;
  color: #f97101;
}
/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  justify-items: center;
}

.service-item-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 90%;
}

.service-item-container:hover {
  transform: scale(1.03);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin: auto;
}

/* Content Container */
.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(72, 61, 55, 0.85);
  color: #fff;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-item-container:hover .service-content {
  opacity: 1;
}

/* Heading Animation */
.service-content h2 {
  transform: translate(100%, -100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  margin-bottom: 15px;
  font-size: 18px;
}

.service-item-container:hover .service-content h2 {
  transform: translate(0, 0);
  opacity: 1;
}

/* Paragraph Animation */
.service-content p {
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.service-content a {
  position: relative;
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
  margin-bottom: 15px;
  font-size: 14px;
  /* display: inline-block; */
  color: #FFF;
  text-decoration: none;
  width: 35%;
}

.service-content a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #FFF;
  transition: width 0.5s ease;
}

.service-content a:hover::after {
  width: 100%;
}

.service-content a img {
  width: 5%;
  display: inline-block;
}
.service-item-container:hover .service-content a{
  transform: translateY(0);
  opacity: 1;
}

.service-item-container:hover .service-content p {
  transform: translateY(0);
  opacity: 1;
}


/* Clients Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.clients-grid img {
  width: 100%;
  max-width: 120px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: hsl(27, 99%, 49%, .15);
  padding: 10px;
}

.clients-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: hsl(27, 99%, 49%, 0.5);
}
/* Sticky sidebar & image – desktop only */
.sticky-sidebar .related-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.sticky-sidebar .related-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  opacity: 1;
  font-size: 14px;
  color: #f76f01;
  text-decoration: none;
  padding: 8px 0;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-sidebar .related-services a:hover{
  color: #FFF;
  transition: all 0.5s ease 0.2s;
}

.sticky-sidebar .related-services a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #FFF;
  transition: width 0.5s ease;
}

.sticky-sidebar .related-services a:hover::after {
  width: 100%;
}

.sticky-sidebar .related-services a img {
  width: 14px;
  height: 14px;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .sticky-sidebar {
    position: sticky;
    top: 126px;
    height: fit-content;
  }

  .sticky-image {
    position: sticky;
    top: 150px;
    height: fit-content;
  }
}

/* Remove stickiness on mobile */
@media (max-width: 991.98px) {
  .sticky-sidebar,
  .sticky-image {
    position: static;
  }

  .px-60 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .qoute {
    font-size: 0.95rem;
    padding: 15px 0;
    margin: 30px auto;
  }
}

/* Quote styling */
.qoute {
  border-top: 2px dashed #333;
  border-bottom: 2px dashed #333;
  padding: 20px 0;
  display: block;
  margin: 40px auto;
  font-style: italic;
}
.qoute span {
  color: #f76f01;
}
/* Contact Section */
.contact-section {
  background-image: url(../img/texture-repeat.jpg);
  color: #fff;
  border-top: 1px solid #333;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Text */
.contact-text {
  flex: 0 0 58%;
  max-width: 58%;
}

.contact-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ddd;
}

.contact-text a.btn, .wealth-management .btn {
  display: inline-block;
  background-color: #fff;
  color: #222;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-text a.btn:hover, .wealth-management .btn:hover {
  background-color: #444;
  color: #fff;
}

/* Contact Form */
.contact-form {
  flex: 0 0 35%;
  max-width: 35%;
  background-color: #262626;
  padding: 20px;
  border-radius: 8px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
  background: #303030;
  border: 1px solid #444;
  color: #fff;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #aaa;
}

.contact-form .checkbox-group {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-form .checkbox-group input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #f76f01;
  width: 5%;
}

.contact-form button.btn {
  background-color: #f76f01;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #444;
  color: #fff;
}

/* Footer */
footer {
  background-image: url(../img/texture-repeat.jpg);
  color: white;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}

footer p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-text,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .contact-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-form button.btn {
    padding: 10px 15px;
    font-size: 13px;
  }

  .contact-text a.btn {
    padding: 10px 15px;
    font-size: 13px;
  }
}


.btn-fixed-wrapper {
  position: fixed;
  bottom: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}

.btn-fixed-wrapper button {
  position: relative;
  right: -65%;  /* Hidden by default */
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f76f01;
  border: none;
  border-radius: 50px 0 0 50px;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: right 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.btn-fixed-wrapper button:hover {
  right: 0;
  background-color: #333;
}

.btn-fixed-wrapper button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);  /* Ensure icons stay white */
}

.newsletter-modal .modal-content {
  background-color: #1d1d1d;
  border-radius: 8px;
  border: none;
  color: #fff;
  padding: 20px;
}

.newsletter-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.newsletter-modal .modal-title {
  font-weight: bold;
  font-size: 20px;
}

.newsletter-modal .close span {
  color: #fff;
  font-size: 28px;
}

.newsletter-form {
  margin-top: 10px;
}

.newsletter-form .form-group label {
  font-size: 12px;
  color: #aaa;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: transparent;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-form .form-row select,
.newsletter-form .form-row input {
  flex: 1;
}

.newsletter-form .checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #ccc;
  gap: 5px;
  flex: 2;
}

.newsletter-form .privacy-text {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.newsletter-form .privacy-text a {
  color: #f76f01;
  text-decoration: underline;
}

.newsletter-btn-submit {
  background-color: #f76f01;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

.newsletter-btn-submit:hover {
  background-color: #333;
}

.share-modal .modal-content {
  background-color: #1d1d1d;
  border-radius: 8px;
  border: none;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.share-modal .modal-header {
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.share-modal .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: lowercase;
}

.share-modal .modal-title span {
  color: #f76f01; /* Brand Orange */
}

.share-modal .close span {
  font-size: 24px;
  color: #fff;
}

.share-modal .share-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.share-modal .share-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #333;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.share-modal .share-icons a.linkedin {
  background-color: #0077b5; /* LinkedIn Blue */
}

.share-modal .share-icons a.x-twitter {
  background-color: #000; /* Twitter (X) Black */
}

.share-modal .share-icons a.email {
  background-color: #468189; /* Teal/Email */
}

.share-modal .share-icons a img {
  width: 24px;
  height: 24px;
  filter: invert(1); /* Keep icons white */
}

.share-modal .share-icons a:hover {
  transform: scale(1.1);
}


.talk-modal .modal-content {
  background-color: #1d1d1d;
  border-radius: 8px;
  border: none;
  color: #fff;
  padding: 20px;
}

.talk-modal .modal-header {
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
}

.talk-modal .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: lowercase;
}

.talk-modal .modal-title span {
  color: #f76f01;
}

.talk-modal .close span {
  color: #fff;
  font-size: 22px;
}

.talk-modal .modal-body {
  margin-top: 10px;
}

.talk-modal .form-control {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.talk-modal .form-control::placeholder {
  color: #aaa;
}

.talk-modal .form-row {
  display: flex;
  gap: 10px;
}

.talk-modal .form-group {
  flex: 1;
}

.talk-modal .checkbox-group {
  margin-top: 10px;
  font-size: 13px;
}

.talk-modal .checkbox-group input {
  margin-right: 8px;
}

.talk-modal .privacy-text {
  font-size: 12px;
  margin-top: 15px;
  color: #ccc;
}

.talk-modal .privacy-text a {
  color: #f76f01;
  text-decoration: none;
}

.talk-modal .submit-btn {
  background-color: #468189;
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.talk-modal .submit-btn:hover {
  background-color: #f76f01;
}

.social-icons{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #222;
  padding: 10px 0px;
}
.social-icons a{
  background-color: hsl(27, 99%, 49%, .15);
  border-radius: 5px;
  transition: 300ms ease-in-out all;
}
.social-icons a:hover{
  background-color: hsl(27, 99%, 49%);
}
.social-icons a img{
  width: 40px;
  height: 40px;
  padding: 5px;
}

.contact-info {
  font-size: 16px;
  line-height: 1.8;
}

.contact-link {
  display: inline-block;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #f97101; /* Bootstrap primary */
  text-decoration: underline;
}

.contact-link i {
  color: #777;
}

.terms-and-conditions h3{
  color: #f97101;
}
.footer-link {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  text-decoration: underline;
  color: #f97101;
}

footer {
  font-size: 14px;
  color: #555;
}


/* Optional: Responsive - hide on very small screens if needed */
@media (max-width: 480px) {
  .btn-fixed-wrapper {
    bottom: 0;
    right: 0;
    left: 0;
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
    padding: 0px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    gap: 0px;
  }
  .btn-fixed-wrapper button {
    flex: 1;
    margin: 0px;
    font-size: 12px;
    padding: 5px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 0;
    border-radius: 5px 5px 0px 0px;
    gap: 0px;
    width: 100%;
  }

  .btn-fixed-wrapper img {
    width: 20px;
    margin-bottom: 5px;
  }
  body{
    margin-bottom: 60px !important;
  }
}



/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    flex-direction: column;
  }
}

.page-banner{
  width: 100%;
}
.px-60{
  padding-top: 60px;
  padding-bottom: 60px;
}
/* Zapier Popup Styling */