/* Main SCSS file */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  direction: rtl;
  font-size: 16px;
}

body {
  font-family: "Heebo", sans-serif;
  color: #1a365d;
  background-color: #f8fafc;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a365d;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #c59d5f;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #b38a4e;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background-color: #c59d5f;
  color: white;
}
.btn-primary:hover {
  background-color: #b38a4e;
  color: white;
}
.btn-secondary {
  background-color: #1a365d;
  color: white;
}
.btn-secondary:hover {
  background-color: #152a4a;
  color: white;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #c59d5f;
  color: #c59d5f;
}
.btn-outline:hover {
  background-color: #c59d5f;
  color: white;
}

.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .header__container {
    justify-content: space-between;
  }
  .header__logo {
    order: 1;
  }
  .header__mobile-toggle {
    order: 2;
  }
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c59d5f;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header__logo-img {
  max-height: 80px;
  height: auto;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo-img {
    max-height: 70px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav ul {
  display: flex;
  list-style: none;
}
.header__nav ul li {
  margin-left: 1.5rem;
}
.header__nav ul li a {
  color: #1a365d;
  font-weight: 500;
}
.header__nav ul li a:hover, .header__nav ul li a.active {
  color: #c59d5f;
}
.header__cta {
  margin-right: 2rem;
}
.header__mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a365d;
  padding: 10px;
  background: none;
  border: none;
}
@media (max-width: 768px) {
  .header__mobile-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .header__nav.active {
    left: 0;
  }
  .header__nav ul {
    flex-direction: column;
    width: 100%;
  }
  .header__nav ul li {
    margin: 0 0 1rem 0;
  }
  .header__nav ul li a {
    display: block;
    padding: 0.5rem 0;
  }
  .header__cta {
    margin: 1rem 0 0 0;
  }
}

/* Mobile menu overlay */
.header__nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
@media (max-width: 768px) {
  .header__nav-overlay.active {
    display: block;
  }
}

.hero {
  padding: 8rem 0 5rem;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
  }
}
.hero__content {
  flex: 1;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .hero__content {
    padding-left: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.hero__content h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #1a365d;
}
@media (max-width: 576px) {
  .hero__content h1 {
    font-size: 2.2rem;
  }
}
.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a5568;
}
.hero__image {
  flex: 0.9;
}
.hero__image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
  padding: 5rem 0;
  background-color: white;
}
.features__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a365d;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__item {
  text-align: center;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.features__item:hover {
  transform: translateY(-5px);
}
.features__item i {
  font-size: 2.5rem;
  color: #c59d5f;
  margin-bottom: 1rem;
}
.features__item h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}
.features__item p {
  color: #4a5568;
}

.services {
  padding: 5rem 0;
  background-color: #f8fafc;
}
.services__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a365d;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.services__item:hover {
  transform: translateY(-5px);
}
.services__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.services__item-content {
  padding: 2rem;
}
.services__item-content h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}
.services__item-content p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.testimonials {
  padding: 5rem 0;
  background-color: white;
}
.testimonials__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a365d;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__item {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
}
.testimonials__item::before {
  content: '"';
  font-size: 4rem;
  color: #c59d5f;
  position: absolute;
  top: -10px;
  right: 20px;
  opacity: 0.2;
}
.testimonials__item p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonials__item-author {
  display: flex;
  align-items: center;
}
.testimonials__item-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 1rem;
}
.testimonials__item-author-info h4 {
  color: #1a365d;
  margin-bottom: 0.25rem;
}
.testimonials__item-author-info p {
  color: #4a5568;
  font-size: 0.9rem;
  font-style: normal;
}

.cta {
  padding: 5rem 0;
  background-color: #1a365d;
  color: white;
  text-align: center;
}
.cta h2 {
  color: white;
  margin-bottom: 1rem;
}
.cta p {
  color: #e2e8f0;
  margin-bottom: 2rem;
}
.cta__form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.cta__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: inherit;
}
.cta__form button {
  background-color: #c59d5f;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta__form button:hover {
  background-color: #b38a4e;
}

.footer {
  background-color: #1a365d;
  color: white;
  padding: 3rem 0 1rem;
}

.footer__about-image {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer__profile-container {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid #c59d5f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.footer__profile-container .footer__profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__about {
  max-width: 400px;
}

.footer__about p {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer__about-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer__about-social a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer__about-social a:hover {
  color: #c59d5f;
}

.footer__links h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer__links ul {
  list-style: none;
}

.footer__links ul li {
  margin-bottom: 0.5rem;
}

.footer__links ul li a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links ul li a:hover {
  color: #c59d5f;
}

.footer__contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer__contact p {
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__contact p i {
  color: #c59d5f;
  font-size: 1rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  color: #e2e8f0;
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__links,
  .footer__contact {
    text-align: center;
  }
  
  .footer__contact p {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header__mobile-toggle {
    display: block;
  }
  
  .header__nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s ease;
  }
  
  .header__nav.active {
    right: 0;
  }
  
  .header__nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  .header__nav ul li {
    margin: 0 0 1rem 0;
  }
  
  .header__nav ul li a {
    display: block;
    padding: 0.5rem 0;
  }
  
  .header__cta {
    margin: 1rem 0 0 0;
  }
  
  .hero__container {
    flex-direction: column;
  }
  
  .hero__content {
    padding-left: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero__content h1 {
    font-size: 2.2rem;
  }
  
  .cta__form {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .features__grid,
  .services__grid,
  .testimonials__grid,
  .footer__container,
  .blog__grid,
  .portfolio-grid__items {
    grid-template-columns: 1fr;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
  }
  
  .hero__content h1 {
    font-size: 2rem;
  }
}

.d-none {
  display: none !important;
}

@media (max-width: 576px) {
  .d-mobile-none {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .d-tablet-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-tablet-block {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .d-desktop-block {
    display: block !important;
  }
}
.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Additional responsive styles */
/* Mobile styles (up to 576px) */
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  .hero {
    padding: 6rem 0 3rem;
  }
  .hero__content h1 {
    font-size: 2rem;
  }
  .hero__content p {
    font-size: 1rem;
  }
  .features__grid,
  .services__grid,
  .testimonials__grid,
  .footer__container,
  .blog__grid,
  .portfolio-grid__items {
    grid-template-columns: 1fr;
  }
  .contact__grid,
  .about__grid,
  .service-detail__grid,
  .blog-single__grid,
  .portfolio-single__grid {
    grid-template-columns: 1fr;
  }
  .header__logo img {
    max-height: 40px;
  }
  .cta__form input,
  .contact__form-group input,
  .contact__form-group textarea {
    padding: 0.6rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
  }
}
/* Tablet styles (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .hero__content h1 {
    font-size: 2.2rem;
  }
  .features__grid,
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid,
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
  .blog__grid,
  .portfolio-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Ensure RTL support works well on all devices */
@media (max-width: 768px) {
  .header__nav ul li {
    margin-right: 1.5rem;
    margin-left: 0;
  }
  .header__mobile-toggle {
    margin-left: 0;
    margin-right: auto;
  }
  .testimonials__item-author img {
    margin-right: 0;
    margin-left: 1rem;
  }
  .footer__social a {
    margin-right: 0;
    margin-left: 0.75rem;
  }
  .contact__info-item i {
    margin-right: 0;
    margin-left: 0.75rem;
  }
}
/* Fix for WhatsApp float button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
}

/* Lead popup styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.popup.show {
  display: flex;
}

.popup__content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup__form {
  margin-top: 1.5rem;
}

.popup__form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Thank you page styles */
.thank-you {
  padding: 4rem 0;
  background-color: white;
}

.thank-you__content i {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
}

.thank-you__links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter__form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter__form button {
  border-radius: 0 4px 4px 0;
}

@media (max-width: 576px) {
  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__form input {
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  .newsletter__form button {
    border-radius: 4px;
  }
  .thank-you__links {
    flex-direction: column;
  }
}
/* Portfolio filter styles */
.portfolio-filter {
  padding: 2rem 0;
  text-align: center;
}

.portfolio-filter__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.portfolio-filter__buttons button {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filter__buttons button.active,
.portfolio-filter__buttons button:hover {
  background-color: #c59d5f;
  color: white;
  border-color: #c59d5f;
}

@media (max-width: 576px) {
  .portfolio-filter__buttons {
    flex-direction: column;
    width: 100%;
  }
  .portfolio-filter__buttons button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
/* Blog Styles - Updated */
.blog {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog__item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.blog__item-image {
  position: relative;
  overflow: hidden;
}

.blog__item-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog__item:hover .blog__item-image img {
  transform: scale(1.05);
}

.blog__item-content {
  padding: 1.5rem;
}

.blog__item-meta {
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #718096;
}

.blog__item-meta span {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.blog__item-meta span i {
  margin-left: 0.5rem;
  color: #c59d5f;
}

.blog__item-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog__item-content p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog__pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog__pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 0.25rem;
  padding: 0 0.75rem;
  border-radius: 4px;
  background-color: white;
  color: #1a365d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog__pagination a.active,
.blog__pagination a:hover {
  background-color: #c59d5f;
  color: white;
}

/* Blog Sidebar Styles */
.blog-sidebar {
  background-color: white;
  padding: 3rem 0;
}

.blog-sidebar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.blog-sidebar__widget {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.blog-sidebar__widget h3 {
  margin-bottom: 1.5rem;
  color: #1a365d;
  font-size: 1.3rem;
  text-align: center;
}

.blog-sidebar__newsletter {
  display: flex;
  gap: 0.5rem;
}

.blog-sidebar__newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-sidebar__newsletter input:focus {
  border-color: #c59d5f;
  outline: none;
}

.blog-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar__post {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-sidebar__post img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.blog-sidebar__post-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-sidebar__post-content span {
  font-size: 0.8rem;
  color: #718096;
}

.blog-sidebar__categories {
  list-style: none;
  padding: 0;
}

.blog-sidebar__categories li {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
}

.blog-sidebar__categories li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-sidebar__categories li a {
  display: flex;
  justify-content: space-between;
  color: #1a365d;
  transition: all 0.3s ease;
}

.blog-sidebar__categories li a:hover {
  color: #c59d5f;
}

.blog-sidebar__categories li a span {
  color: #718096;
  font-size: 0.9rem;
}

.blog-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-sidebar__tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  border-radius: 4px;
  color: #1a365d;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-sidebar__tags a:hover {
  background-color: #c59d5f;
  color: white;
}

/* Blog tag filter active state */
.blog-sidebar__tags a.active {
  background-color: #c59d5f;
  color: white;
}

.blog__active-tag {
  display: inline-block;
  background-color: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  color: #1a365d;
  margin-bottom: 0.5rem;
}

/* Additional button styles */
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #c59d5f;
  color: #c59d5f;
}

.btn-outline:hover {
  background-color: #c59d5f;
  color: white;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

/* Blog Single Page Styles */
.blog-single {
  padding: 5rem 0;
  background-color: white;
}

.blog-single__meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  color: #718096;
}

.blog-single__meta span {
  display: flex;
  align-items: center;
}

.blog-single__meta span i {
  margin-left: 0.5rem;
  color: #c59d5f;
}

.blog-single__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.blog-single__content {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.blog-single__image {
  margin-bottom: 2rem;
}

.blog-single__image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-single__text {
  line-height: 1.8;
  color: #4a5568;
}

.blog-single__text h3 {
  color: #1a365d;
  margin: 2rem 0 1rem;
  font-size: 1.6rem;
}

.blog-single__text h4 {
  color: #1a365d;
  margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
}

.blog-single__text p {
  margin-bottom: 1.5rem;
}

.blog-single__text ul,
.blog-single__text ol {
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}

.blog-single__text ul li,
.blog-single__text ol li {
  margin-bottom: 0.5rem;
}

.blog-single__share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.blog-single__share h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.blog-single__share-buttons {
  display: flex;
  gap: 0.75rem;
}

.blog-single__share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f7fafc;
  border-radius: 50%;
  color: #1a365d;
  transition: all 0.3s ease;
}

.blog-single__share-buttons a:hover {
  transform: translateY(-3px);
}

.blog-single__share-buttons a.facebook:hover {
  background-color: #3b5998;
  color: white;
}

.blog-single__share-buttons a.twitter:hover {
  background-color: #1da1f2;
  color: white;
}

.blog-single__share-buttons a.linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.blog-single__share-buttons a.whatsapp:hover {
  background-color: #25d366;
  color: white;
}

.blog-single__author {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 8px;
}

.blog-single__author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-single__author-content h3 {
  color: #1a365d;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.blog-single__author-content p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-single__author-social {
  display: flex;
  gap: 0.75rem;
}

.blog-single__author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  color: #1a365d;
  transition: all 0.3s ease;
}

.blog-single__author-social a:hover {
  background-color: #c59d5f;
  color: white;
}

.blog-single__related {
  margin-top: 3rem;
}

.blog-single__related h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #1a365d;
}

.blog-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-single__related-item {
  background-color: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-single__related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-single__related-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-single__related-item h4 {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.blog-single__comments {
  margin-top: 3rem;
}

.blog-single__comments h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #1a365d;
}

.blog-single__comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-single__comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-single__comment-reply {
  margin-right: 3rem;
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.blog-single__comment-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-single__comment-content {
  flex: 1;
}

.blog-single__comment-content h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.blog-single__comment-content h4 span {
  font-size: 0.8rem;
  color: #718096;
  font-weight: 400;
}

.blog-single__comment-content p {
  color: #4a5568;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.blog-single__comment-content .reply {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: #f7fafc;
  border-radius: 4px;
  color: #1a365d;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-single__comment-content .reply:hover {
  background-color: #c59d5f;
  color: white;
}

.blog-single__comment-form {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.blog-single__comment-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #1a365d;
}

.blog-single__comment-form .form-group {
  margin-bottom: 1.5rem;
}

.blog-single__comment-form input,
.blog-single__comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-single__comment-form input:focus,
.blog-single__comment-form textarea:focus {
  border-color: #c59d5f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.1);
}

.blog-single__comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.blog-single__sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar__widget {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.blog-sidebar__author {
  text-align: center;
}

.blog-sidebar__author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
}

.blog-sidebar__author h3 {
  color: #1a365d;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.blog-sidebar__author p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-sidebar__author-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.blog-sidebar__author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
  color: #1a365d;
  transition: all 0.3s ease;
}

.blog-sidebar__author-social a:hover {
  background-color: #c59d5f;
  color: white;
}

@media (max-width: 1200px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-single__grid {
    grid-template-columns: 1fr;
  }
  
  .blog-single__sidebar {
    position: static;
    margin-top: 3rem;
  }
  
  .blog-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .blog-single__author {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .blog-single__author-social {
    justify-content: center;
  }
  
  .blog-single__comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .blog-single__comment-content h4 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .blog-single__related-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-single__meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .blog-single__comment-reply {
    margin-right: 0;
  }
  
  .blog-sidebar__newsletter {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */

.about {
  padding: 5rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__content h2 {
  margin-bottom: 1.5rem;
  color: #1a365d;
}

.about__content p {
  margin-bottom: 1.5rem;
  color: #4a5568;
}

.about__image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about__values {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.about__values-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a365d;
}

.about__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about__values-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about__values-item:hover {
  transform: translateY(-5px);
}

.about__values-item i {
  font-size: 2.5rem;
  color: #c59d5f;
  margin-bottom: 1rem;
}

.about__values-item h3 {
  color: #1a365d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.about__values-item p {
  color: #4a5568;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .about__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about__content {
    text-align: center;
  }
  
  .about__image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about__values-grid {
    grid-template-columns: 1fr;
  }
  
  .about {
    padding: 3rem 0;
  }
  
  .about__values {
    padding: 3rem 0;
  }
}

/* Services Page Styles */
.services-overview {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.services-overview__content {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail {
  padding: 5rem 0;
}

.service-detail.bg-light {
  background-color: #f8fafc;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.service-detail__content {
  padding-left: 2rem;
}

.service-detail__content img {
  width: 100%;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-detail__content ul {
  list-style: none;
  padding: 0;
}

.service-detail__content ul li {
  margin-bottom: 1rem;
  padding-right: 1.5rem;
  position: relative;
}

.service-detail__content ul li::before {
  content: "✓";
  color: #c59d5f;
  position: absolute;
  right: 0;
  top: 0;
}

.service-detail__sidebar {
  position: sticky;
  top: 100px;
}

.service-detail__sidebar-services {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.service-detail__sidebar-services ul {
  list-style: none;
  padding: 0;
}

.service-detail__sidebar-services ul li {
  margin-bottom: 1rem;
}

.service-detail__sidebar-services ul li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a365d;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-detail__sidebar-services ul li a:hover,
.service-detail__sidebar-services ul li a.active {
  background-color: #c59d5f;
  color: white;
}

.service-detail__sidebar-cta {
  background-color: #1a365d;
  padding: 2rem;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.service-detail__sidebar-cta h4 {
  color: white;
  margin-bottom: 1rem;
}

.service-detail__sidebar-cta p {
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

@media (max-width: 992px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail__content {
    padding-left: 0;
  }
  
  .service-detail__sidebar {
    position: static;
  }
}

@media (max-width: 576px) {
  .service-detail {
    padding: 3rem 0;
  }
  
  .services-overview {
    padding: 2rem 0;
  }
  
  .service-detail__content img {
    margin: 1rem 0;
  }
}

/* Portfolio Page Styles */
.portfolio {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.portfolio__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a365d;
}

.portfolio__filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.portfolio__filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #c59d5f;
  background: transparent;
  color: #c59d5f;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.portfolio__filter-btn:hover,
.portfolio__filter-btn.active {
  background-color: #c59d5f;
  color: white;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

.portfolio__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.portfolio__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio__item:hover img {
  transform: scale(1.05);
}

.portfolio__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 54, 93, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
  text-align: center;
}

.portfolio__item:hover .portfolio__item-overlay {
  opacity: 1;
}

.portfolio__item-overlay h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.portfolio__item-overlay p {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.portfolio__item-overlay .btn {
  background-color: #c59d5f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.portfolio__item-overlay .btn:hover {
  background-color: #b38a4e;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio {
    padding: 3rem 0;
  }
  
  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .portfolio__filter {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .portfolio__filter-btn {
    width: 100%;
  }
  
  .portfolio__item {
    aspect-ratio: 4/3;
  }
}

/* Contact Page Styles */
.contact {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact__info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact__info h2 {
  margin-bottom: 2rem;
  color: #1a365d;
  text-align: center;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact__info-item i {
  font-size: 1.5rem;
  color: #c59d5f;
  margin-left: 1rem;
  width: 24px;
  text-align: center;
}

.contact__info-item-content h4 {
  margin-bottom: 0.5rem;
  color: #1a365d;
}

.contact__info-item-content p {
  margin: 0;
  color: #4a5568;
}

.contact__info-social h4 {
  margin-bottom: 1rem;
  color: #1a365d;
}

.contact__info-social a {
  display: inline-block;
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f3f4f6;
  color: #1a365d;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact__info-social a:hover {
  background-color: #c59d5f;
  color: white;
  transform: translateY(-3px);
}

.contact__form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact__form h2 {
  margin-bottom: 2rem;
  color: #1a365d;
  text-align: center;
}

.contact__form-group {
  margin-bottom: 1.5rem;
}

.contact__form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a365d;
  font-weight: 500;
}

.contact__form-group input,
.contact__form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-color: #c59d5f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
}

.contact__form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form button {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #c59d5f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact__form button:hover {
  background-color: #b38a4e;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Styles */
.faq {
  padding: 5rem 0;
  background-color: white;
}

.faq h2 {
  color: #1a365d;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq__item {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq__item h3 {
  margin-bottom: 1rem;
  color: #1a365d;
  font-size: 1.25rem;
}

.faq__item p {
  color: #4a5568;
  margin: 0;
}

/* Alert Styles */
.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.alert-success {
  background-color: #c6f6d5;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.alert-danger {
  background-color: #fed7d7;
  color: #822727;
  border: 1px solid #feb2b2;
}

.alert-danger ul {
  padding-right: 1.5rem;
  margin: 0;
}

@media (max-width: 992px) {
  .contact__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__grid {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .contact,
  .faq {
    padding: 3rem 0;
  }
  
  .contact__form,
  .contact__info {
    padding: 1.5rem;
  }
}

.about__profile-container {
  width: 450px !important;
  height: 450px !important;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #c59d5f;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.about__profile-container:hover {
  transform: scale(1.03);
}
.about__profile-container .about__profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
  display: block;
}

/* Client Logos Carousel Styles */
.client-logos {
  padding: 4rem 0;
  background-color: #f8fafc; /* Match existing background or adjust */
}

.client-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px; /* Space for pagination */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #fff; Optional: background for each slide */
  /* border-radius: 8px; Optional */
  /* padding: 1rem; Optional */
}

.swiper-slide img {
  display: block;
  max-width: 200px; /* Increased max width */
  height: auto;
  max-height: 120px; /* Increased max height */
  object-fit: contain;
  filter: grayscale(100%); /* Make logos grayscale */
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  cursor: pointer; /* Add pointer cursor */
}

.swiper-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Swiper Pagination and Navigation */
.swiper-pagination-bullet {
  background: #b38a4e; /* Match theme color */
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #c59d5f; /* Match theme color */
}

.swiper-button-next, 
.swiper-button-prev {
  color: #c59d5f; /* Match theme color */
  transition: color 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
  color: #b38a4e; /* Darker theme color on hover */
}

.swiper-button-next::after, 
.swiper-button-prev::after {
  font-size: 2rem; /* Adjust arrow size */
}


/* End of Client Logos Carousel Styles */

/* Simple Image Modal Styles */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.image-modal__content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Add Animation */
.image-modal__content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.image-modal__close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.image-modal__close:hover,
.image-modal__close:focus {
  color: #bbb;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 700px){
  .image-modal__content {
    width: 95%;
  }
}
/* End of Simple Image Modal Styles */

/* Darken specific service image */
.service-consulting-item img {
  filter: brightness(70%); /* Adjust value as needed (lower is darker) */
}

/* Adjust object position for sales image */
.service-sales-item img {
  object-position: 60% 40%; /* Focus higher up */
}

/* Chatbot Styles */
.chat-toggle-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #c59d5f; /* Theme color */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.chat-toggle-button:hover {
  background-color: #b38a4e; /* Darker theme color */
  transform: scale(1.1);
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-width: 90%;
  height: 450px;
  max-height: 80vh;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none; /* Hidden by default */
  flex-direction: column;
  overflow: hidden;
}

.chat-widget.open {
  display: flex;
}

.chat-widget__header {
  background-color: #1a365d; 
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.chat-header__whatsapp {
    color: #25D366; /* WhatsApp green */
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.chat-header__whatsapp:hover {
    color: #128C7E; /* Darker WhatsApp green */
}

.chat-widget__close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat-widget__messages {
  flex-grow: 1;
  padding: 10px; /* Reduced padding */
  overflow-y: auto;
  background-color: white;
}

.chat-message {
  margin-bottom: 10px;
  padding: 6px 10px; /* Reduced padding */
  border-radius: 15px;
  max-width: 85%; /* Allow slightly wider messages */
  line-height: 1.4;
  font-size: 0.9rem; /* Slightly smaller font */
}

.chat-message.user {
  background-color: #c59d5f; /* Theme color */
  color: white;
  border-bottom-right-radius: 3px;
  margin-right: auto;
}

.chat-message.bot {
  background-color: #e2e8f0; /* Light grey */
  color: #1a365d;
  border-bottom-left-radius: 3px;
  margin-left: auto;
}

.chat-widget__input-area {
  display: flex;
  border-top: 1px solid #e2e8f0;
  padding: 10px;
}

.chat-widget__input-area input {
  flex-grow: 1;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 12px; /* Adjust input padding */
  margin-left: 10px;
}

.chat-widget__input-area input:focus {
  outline: none;
  border-color: #c59d5f;
}

.chat-widget__input-area button {
  background-color: #c59d5f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px; /* Slightly smaller send button */
  height: 36px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.chat-widget__input-area button:hover {
  background-color: #b38a4e;
}

.chat-widget__quick-replies {
  padding: 8px 10px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  overflow-x: auto; 
  white-space: nowrap; 
  display: flex; 
  gap: 6px; /* Slightly reduced gap */
  flex-shrink: 0; 
}

.quick-reply-button {
  padding: 5px 10px; /* Smaller buttons */
  border: 1px solid #c59d5f;
  background-color: white;
  color: #c59d5f;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0; 
}

.quick-reply-button:hover {
  background-color: #c59d5f;
  color: white;
}

/* Responsive adjustments for chat */
@media (max-width: 576px) { 
  .chat-widget {
    /* Increase size again, but not full screen */
    width: calc(100% - 30px); /* Almost full width with padding */
    max-width: 350px; /* Keep a max width */
    height: auto; 
    max-height: calc(100vh - 100px); /* Significant height, leaves room */
    bottom: 85px; /* Above toggle button */
    right: 15px; 
    left: 15px; /* Center horizontally */
    margin: 0 auto; /* Helper for centering if left/right are set */
    border-radius: 8px; 
    /* Keep other properties like position:fixed, z-index etc. */
     position: fixed;
     z-index: 2000;
     display: none; /* Still hidden by default */
     flex-direction: column;
  }

  .chat-widget.open {
    display: flex; 
  }
  
  .chat-widget.open + .chat-toggle-button {
      /* Keep toggle visible */ 
  }

  /* Keep other mobile styles adjusted previously for inner elements */
  .chat-widget__header {
    padding: 8px 12px; 
    font-size: 0.9rem; 
    flex-shrink: 0;
  }
  
  .chat-header__whatsapp {
     font-size: 18px; 
  }

  .chat-widget__messages {
     flex-grow: 1; 
     padding: 10px; 
     overflow-y: auto;
     background-color: white;
  }
  
  .chat-message {
    padding: 6px 10px; 
    font-size: 0.9rem; 
    max-width: 85%; 
  }
  
  .chat-widget__quick-replies {
     position: static;
     padding: 8px 10px;
     background-color: #f8fafc;
     border-top: 1px solid #e2e8f0;
     overflow-x: auto; 
     white-space: nowrap; 
     display: flex; 
     gap: 6px; 
     flex-shrink: 0; 
     /* Ensure it's initially empty */
     min-height: 0; 
  }
  
  .quick-reply-button {
      padding: 5px 10px; 
      font-size: 0.8rem;
      flex-shrink: 0; 
  }

  .chat-widget__input-area {
    position: static;
    box-shadow: none; 
    border-top: 1px solid #e2e8f0; 
    padding: 8px 10px; 
    flex-shrink: 0; 
  }
  
  .chat-widget__input-area input {
      padding: 6px 12px; 
      font-size: 0.95rem;
  }
  
  .chat-widget__input-area button {
      width: 36px; 
      height: 36px;
      font-size: 15px;
  }

  .chat-toggle-button {
     bottom: 15px; 
     right: 15px;
     width: 55px; 
     height: 55px;
     font-size: 22px;
     z-index: 1001; 
  }
}
/* End Chatbot Styles */