/*
Theme Name: Oraxis
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Architecture & Interior Html Template
Version: 1.1.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */

/* Enhanced Process Timeline Styles */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}
.process-step {
  background: #232323;
  border-radius: 12px;
  padding: 32px 18px 24px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.process-step:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  transform: translateY(-8px) scale(1.04);
}

@media (min-width: 992px) {
.order-1 {
  order: 1 !important;
  margin-left: -39px;
}
}

.process-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.process-number {
  background: #f0bc62;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(240,188,98,0.15);
}
.process-icon-bg {
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0bc62;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(240,188,98,0.10);
  transition: background 0.2s, color 0.2s;
}
.process-step:hover .process-icon-bg {
  background: #f0bc62;
  color: #fff;
}
.process-connector {
  position: absolute;
  left: 100%;
  top: 50%;
  height: 4px;
  width: 0;
  background: repeating-linear-gradient(
    to right,
    #f0bc62,
    #f0bc62 10px,
    transparent 10px,
    transparent 20px
  );
  border-radius: 2px;
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.7s cubic-bezier(.4,0,.2,1);
  display: block;
  pointer-events: none;
}
.process-step.active .process-circle {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(240,188,98,0.2);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
}
.process-circle {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
}
.process-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  width: 80px;
  height: 2px;
  background: #f0bc62;
  transform: translateX(0);
  animation: connectorRight 0.6s 0.5s cubic-bezier(0.4,0,0.2,1) both;
}
.process-step:last-child .process-connector {
  display: none;
}
@keyframes connectorDown {
  0% { height: 0; }
  100% { height: 40px; }
}
@keyframes connectorRight {
  0% { width: 0; }
  100% { width: 80px; }
}
@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }
  .process-timeline::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }
  .process-step {
    margin-bottom: 32px;
    width: 100%;
    max-width: 340px;
  }
}

/* How it works section styles */
.how-it-works-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
  gap: 40px;
}
.how-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(80,80,120,0.10);
  position: relative;
}
.icon-box.purple { background: #8f6be6; }
.icon-box.blue { background: #3ec6f2; }
.icon-box.pink { background: #f7b0e0; color: #fff; }
.how-step h5 {
  margin: 18px 0 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.how-step p { color: #e0e0e0; font-size: 1rem; line-height: 1.6; }
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  border-top: 2px dashed #bdbdbd;
  z-index: 1;
}
.gold-bg { background: #f0bc62 !important; }
.dark-bg { background: #232323 !important; border: 2px solid #f0bc62; }
.background-black { background: #232323 !important; }
.how-line {
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #f0bc62 0%, #f0bc62 100%);
  border-radius: 2px;
  z-index: 0;
  width: 0;
  animation: lineFill 1.2s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes lineFill {
  from { width: 0; }
  to { width: 80%; }
}
.icon-box {
  opacity: 0;
  transform: scale(0.7);
  animation: iconPop 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
.how-step:nth-child(2) .icon-box { animation-delay: 0.3s; }
.how-step:nth-child(3) .icon-box { animation-delay: 0.6s; }
.how-step:nth-child(4) .icon-box { animation-delay: 0.9s; }
.how-step:nth-child(5) .icon-box { animation-delay: 1.2s; }
@keyframes iconPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .how-it-works-row {
    flex-direction: column;
    gap: 60px;
  }
  .how-step:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    width: 2px;
    height: 40px;
    border-left: 2px dashed #bdbdbd;
    border-top: none;
    right: auto;
    z-index: 2;
  }
  .icon-box {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .how-line {
    top: 90px;
    left: 50%;
    right: auto;
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, #f0bc62 0%, #f0bc62 100%);
    transform: translateX(-50%);
    animation: lineFillVertical 1.2s cubic-bezier(.77,0,.18,1) forwards;
  }
  @keyframes lineFillVertical {
    from { height: 0; }
    to { height: 80%; }
  }
  .how-step h5 {
    margin-top: 61px;
  }
}

.dots-animated {
  display: inline-block;
  letter-spacing: 6px;
  color: #f0bc62;
  font-size: 1.5em;
  vertical-align: middle;
  margin-left: 8px;
}
.dots-animated span {
  opacity: 0.4;
  animation: dotBlink 1.2s infinite alternate;
}
.dots-animated span:nth-child(2) { animation-delay: 0.2s; }
.dots-animated span:nth-child(3) { animation-delay: 0.4s; }
.dots-animated span:nth-child(4) { animation-delay: 0.6s; }

@keyframes dotBlink {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

.mission-vision-section {
  background: #232323;
}
.mv-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 40px 32px 32px 32px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #f0bc6222;
  position: relative;
  z-index: 1;
}
.mv-card:hover {
  box-shadow: 0 8px 32px rgba(240,188,98,0.18);
  transform: translateY(-8px) scale(1.04);
  border-color: #f0bc62;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 118%;
}

.mv-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f0bc62;
  color: #232323;
  font-size: 2.2rem;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(240,188,98,0.10);
  transition: background 0.3s, color 0.3s;
}
/* Fix: Mission & Vision icon hover - no background, no shadow */
.mv-card:hover .mv-icon,
.mv-card:hover .mv-icon i {
  background: transparent !important;
  color: #f0bc62 !important;
  box-shadow: none !important;
  transition: background 0.3s, color 0.3s, border 0.3s;
}
.mv-icon i {
  color: inherit !important;
  background: transparent !important;
  transition: color 0.3s;
}
.mv-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}
.mv-card p {
  color: #e0e0e0;
  font-size: 1.08rem;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .mv-card {
    margin-bottom: 32px;
    padding: 32px 18px 24px 18px;
  }
}

.mission-vision-section .row {
  display: flex;
  align-items: stretch;
}

.mv-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .mission-vision-section .row {
    flex-direction: column;
    align-items: stretch;
  }
  .mv-card {
    margin-bottom: 24px;
    height: auto;
  }
}

.faq-section.background-white {
  background: #fff !important;
}
.faq-dark .accordion-item {
  background: #232323;
  border-radius: 12px;
  margin-bottom: 18px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.faq-dark .accordion-button {
  background: #232323;
  color: #fff;
  font-weight: 600;
  border-radius: 12px 12px 0 0;
  border: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.faq-dark .accordion-button:not(.collapsed) {
  background: #f0bc62;
  color: #232323;
}
.faq-dark .accordion-button:focus {
  box-shadow: 0 0 0 2px #f0bc6244;
}
.faq-dark .accordion-body {
  background: #232323;
  color: #e0e0e0;
  border-radius: 0 0 12px 12px;
  font-size: 1.08rem;
  line-height: 1.7;
}
.faq-dark .accordion-item .accordion-button::after {
  filter: invert(1) brightness(0.7);
}
.faq-section .row.pt-5.align-items-center > .col-md-12 {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 991px) {
  .faq-section .row.pt-5.align-items-center > .col-md-12 {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* FAQ icon white */
.faq-dark .accordion-button i {
  color: #fff !important;
}

/* Testimonials slider responsive fix */
@media (max-width: 991px) {
  .testimonials-slider .testimonial-card {
    min-width: 90vw;
    max-width: 98vw;
  }
}
@media (max-width: 575px) {
  .testimonials-slider .testimonial-card {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.98rem;
  }
}

/* Testimonial avatar (canvas with initials) */
.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: #f0bc62;
  color: #232323;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(240,188,98,0.10);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Alinhar botões do Swiper ao centro do slider de depoimentos */
.testimonials-section .array-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 20;
  width: auto;
  background: transparent;
  pointer-events: auto;
}

.testimonials-section .array-button .array-prev,
.testimonials-section .array-button .array-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #f0bc62;
  border: 1.5px solid #f0bc62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(240,188,98,0.10);
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.testimonials-section .array-button .array-prev:hover,
.testimonials-section .array-button .array-next:hover {
  background: #f0bc62;
  color: #fff;
  border: 1.5px solid #f0bc62;
}

@media (max-width: 991px) {
  .testimonials-section .array-button {
    bottom: -10px;
    gap: 16px;
  }
  .testimonials-section .array-button .array-prev,
  .testimonials-section .array-button .array-next {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.testimonials-slider {
  padding-bottom: 90px !important;
}

.testimonials-section .array-button {
  bottom: 20px !important;
}

@media (max-width: 991px) {
  .testimonials-slider {
    padding-bottom: 70px !important;
  }
  .testimonials-section .array-button {
    bottom: 10px !important;
  }
}


/* Sticky Call & WhatsApp Buttons */
.sticky-footer-btn {
  position: fixed;
  bottom: 32px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sticky-footer-btn.call-btn {
  left: 32px;
  background: #f0bc62;
  color: #fff;
}
.sticky-footer-btn.whatsapp-btn {
  right: 32px;
  background: #25d366;
  color: #fff;
  z-index: 10001;
}
.sticky-footer-btn .ripple {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  background: rgba(240,188,98,0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: ripplePulseSmall 1.2s infinite linear;
  z-index: 1;
}
@keyframes ripplePulseSmall {
  0% { opacity: 0.3; transform: scale(1); }
  70% { opacity: 0.08; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.4); }
}
.sticky-footer-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
}
.sticky-footer-btn:active {
  transform: scale(0.96);
}



.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 120px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .scroll-up {
    right: 100px;
  }
}

/* Contact Section Styles - Premium Dark Theme */
.contact-section {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 100px; /* Mais espaço antes do footer */
}
.contact-section .container {
    max-width: 1100px;
}
.contact-section .row.g-4 {
    gap: 0;
}
.contact-info-wrapper, .contact-form-wrapper {
    background: #232323;
    border-radius: 16px;
    border: 1.5px solid #f0bc62;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-wrapper {
    gap: 0.0rem;
}
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.contact-icon {
    width: 56px;
    height: 56px;
    background: #f0bc62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(240,188,98,0.10);
}
.contact-icon i {
    color: #232323;
    font-size: 1.7rem;
}
.contact-info-content h4 {
    color: #f0bc62;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-info-content p, .contact-info-content a {
    color: #fff;
    opacity: 0.92;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-content a:hover {
    color: #f0bc62;
}
.contact-form-wrapper {
    border-left: none;
}
.contact-form .form-control {
    background: #232323;
    border: 1.5px solid #f0bc62;
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.1rem;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}
.contact-form .form-control:focus {
    border-color: #f0bc62;
    box-shadow: 0 0 0 2px rgba(240,188,98,0.15);
    background: #232323;
    color: #fff;
}
.contact-form .form-control::placeholder {
    color: #f0bc62;
    opacity: 0.7;
}
.contact-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}
.contact-form button.theme-btn {
    background: #f0bc62;
    color: #232323;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
}
.contact-form button.theme-btn:hover {
    background: #232323;
    color: #f0bc62;
    border: 1.5px solid #f0bc62;
}
@media (max-width: 991px) {
    .contact-section .container {
        max-width: 98vw;
    }
    .contact-info-wrapper, .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 767px) {
    .contact-section .row.g-4 {
        flex-direction: column;
    }
    .contact-info-wrapper, .contact-form-wrapper {
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    .contact-form-wrapper {
        border-left: 1.5px solid #f0bc62;
    }
}

/* Melhorias visuais para a seção de contato */
.contact-section {
    padding-bottom: 100px; /* Mais espaço antes do footer */
}
.contact-section .section-title h2,
.contact-section .section-title .splt-txt {
    color: #fff !important;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-transform: none;
}
.contact-section .section-title h6 {
    color: #f0bc62 !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .contact-section {
        padding-bottom: 60px;
    }
    .contact-section .section-title h2,
    .contact-section .section-title .splt-txt {
        font-size: 2rem;
    }
}

/* Linha decorativa entre contato e footer */
.contact-footer-divider {
    width: 120px;
    height: 3px;
    background: #f0bc62;
    border-radius: 2px;
    margin: 0 auto 40px auto;
    opacity: 0.85;
}



/* Forçar menu mobile a aparecer dentro da sidebar/offcanvas no mobile */
@media (max-width: 1199px) {
  .offcanvas__info .mobile-menu {
    display: block !important;
    width: 100%;
    background: transparent;
    z-index: 99999;
    padding: 0;
    margin: 0;
  }
  
  .offcanvas__info .mobile-menu #mobile-menu-nav {
    display: none !important;
  }
  
  .offcanvas__info .mobile-menu #mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .offcanvas__info .mobile-menu #mobile-menu-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .offcanvas__info .mobile-menu #mobile-menu-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .offcanvas__info .mobile-menu #mobile-menu-nav ul li a:hover {
    color: #f0bc62;
  }
  
  .offcanvas__info .mean-container .mean-bar {
    background: none;
    box-shadow: none;
    padding: 0;
    min-height: 0;
  }
  .offcanvas__info .mean-container .mean-nav {
    background: none;
    margin-top: 0;
  }
  .offcanvas__info .mean-container .mean-nav ul {
    background: none;
  }
}

/* Mobile: call e WhatsApp lado a lado, alinhados e afastados do scroll-up */
@media (max-width: 767px) {
  .mobile-portfolio-item {
    flex-direction: column !important;
  }
  .mobile-portfolio-item .project-image {
    order: 1 !important;
    margin-bottom: 18px;
  }
  .mobile-portfolio-item .portfolio-content {
    order: 2 !important;
  }
  /* Sticky buttons: aligned with scroll-up like desktop */
  .sticky-footer-btn.call-btn {
    left: 32px !important;
    right: auto !important;
    bottom: 35px !important;
    position: fixed !important;
    display: flex !important;
    width: 50px !important;
    height: 50px !important;
  }
  .sticky-footer-btn.whatsapp-btn {
    right: 32px !important;
    left: auto !important;
    bottom: 35px !important;
    position: fixed !important;
    display: flex !important;
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 575px) {
  .dots-animated {
    font-size: 1em;
    letter-spacing: 2px;
    margin-left: 2px;
  }
}

.logo img, .header-logo-2 img {
    max-height: 209px;
    width: auto;
    height: auto;
    margin-bottom: -47px;
    margin-top: -25px;
}
@media (max-width: 575px) {
    .logo img, .header-logo-2 img {
        max-height: 151px;
        margin-bottom: -33px;
        margin-left: -40px;
    }
}
/* Footer logo styling - same as header */
.widget-head img {
    max-height: 120px;
    width: auto;
    height: auto;
    margin-bottom: -23px;
    margin-top: -24px;
    margin-left: -16px;
}
@media (max-width: 575px) {
    .widget-head img {
        max-height: 122px;
        margin-bottom: -33px;
        margin-left: -17px;
    }
}

/* Preloader logo styling */
.preloader-logo {
    text-align: center;
    margin-bottom: 20px;
}

.preloader-logo img {
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1); /* Make logo white for dark preloader background */
}

@media (max-width: 575px) {
    .preloader-logo img {
        max-height: 60px;
    }
}



.header-3 {
  background-color: #ffffff;
  position: relative;
  z-index: 9;
}

.portfolio-wrapper-3 .row {
  overflow: visible;
}

.portfolio-wrapper-3 .project-image {
  padding-left: 33px;
  margin-left: 0;
  width: 100%;
  box-sizing: border-box;
}
.portfolio-wrapper-3 .project-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .portfolio-wrapper-3 .project-image {
    padding-left: 0;
  }
}

/* Only add padding to the left-side images (first column in each row) */
.portfolio-wrapper-3 .row > .col-lg-6:first-child .project-image {
  padding-left: 33px;
  margin-left: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Remove padding for right-side images */
.portfolio-wrapper-3 .row > .col-lg-6:last-child .project-image {
  padding-left: 0;
}

/* Responsive: remove padding on mobile */
@media (max-width: 1199px) {
  .portfolio-wrapper-3 .row > .col-lg-6:first-child .project-image {
    padding-left: 0;
  }
}

.preloader.loaded .loader-section .bg {
  width: 0 !important;
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

window.addEventListener('load', function() {
  document.querySelector('.preloader').classList.add('loaded');
  setTimeout(function() {
    document.querySelector('.preloader').style.display = 'none';
  }, 600); // adjust timing as needed
});

/* WhatsApp icon size in header */
.header-right .whatsapp-trigger .fa-whatsapp {
  font-size: 2rem;
}
.header-right .whatsapp-trigger.search-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}


