:root {
  --primary: #be9032;      /* Rust red for CTAs */
  --secondary: #52ad63;    /* Fresh green for accents */
  --dark: #343432;         /* Dark gray for text */
  --light: #f8f9fa;        /* Light background */
  --primary-soft: rgba(215, 86, 64, 0.1);
}

/* Base Typography */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #000;
}

/* button */
.btn-primary {
  background-color: var(--primary);
  color: var(--light) !important;
  border: none;
}

/* back ground primary */
.bg-primary {
  background-color: var(--primary) !important;
  border: none;
}

/* Text primary */
.text-primary {
  color: var(--primary) !important;
}

/* a link */
a {
  color: var(--primary) !important;
}

/* Border Danger color */
.border-danger {
  border-color: var(--primary) !important;
  border-bottom-width: 2px !important;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark);
  color: white;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
  background-color: white !important;
  padding: 20px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  padding: 8px 15px !important;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}
.navbar .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.navbar .btn-primary:hover {
  background-color: #c04a36;
}

/* Hero Section */
.hero {
  background-color: #121212;
}

.min-vh-100 {
  min-height: 100vh;
}

.video-background {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.py-8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.btn-outline-light:hover {
  color: #000 !important;
}

.border-white {
  border-color: rgba(255,255,255,0.2) !important;
}

#hero .hero-heading {
  background-color: #00000093;
  padding: 5rem;
}

/* About Company Section */
.about-company-section {
  background-color: #f9f9f9;
}

.about-image-composition {
  padding: 20px;
}

.main-image-wrapper {
  position: relative;
  z-index: 2;
  border: 12px solid white;
  transform: rotate(-2deg);
}

.hover-zoom {
  transition: transform 0.7s ease;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.main-image-wrapper:hover .hover-zoom {
  transform: scale(1.05);
}

.image-frame-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(215, 86, 64, 0.3);
  border-radius: 12px;
  transform: rotate(3deg);
  z-index: 1;
}

/* Floating Stats */
.floating-stat-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 15px;
  width: 140px;
  z-index: 3;
  transition: all 0.4s ease;
}

.floating-stat-card:hover {
  transform: translateY(-5px) !important;
}

.years-experience {
  top: -20px;
  right: -20px;
  animation: float-stat-1 8s ease-in-out infinite;
}

.countries-covered {
  bottom: 30px;
  left: -30px;
  animation: float-stat-2 10s ease-in-out infinite;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Section Tagline */
.section-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
}

.animated-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
}

.animated-dot::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
}

/* Title Styling */
.title-underline {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(215, 86, 64, 0.2);
  z-index: -1;
  transform-origin: left;
  animation: underline-grow 1.5s ease forwards;
}

/* Timeline */
.timeline-style {
  position: relative;
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  padding-bottom: 20px;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-content h5 {
  font-weight: 600;
  color: var(--dark);
}

/* Core Values */
.value-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--primary) !important;
  color: white !important;
}

#about .value-icon i {
  font-size: 3rem;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(3); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes float-stat-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float-stat-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

@keyframes underline-grow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero .hero-heading {
    padding: 2rem;
  }
  
  .hover-zoom {
    height: 350px;
  }
  
  .floating-stat-card {
    width: 120px;
    padding: 10px;
  }
  
  .years-experience {
    top: -15px;
    right: -15px;
  }
  
  .countries-covered {
    bottom: 20px;
    left: -20px;
  }
}



/* Working Process Section */
.working-process-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.process-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.process-decoration-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(215, 86, 64, 0.05);
}

.process-steps-container {
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(215, 86, 64, 0.3);
}

.process-step-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.process-step-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.process-step-content {
  color: #6c757d;
}

.process-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Process Connector Lines */
.process-connector {
  position: absolute;
  top: 25px;
  left: -15%;
  width: 30%;
  height: 2px;
  background-color: var(--primary-soft);
  z-index: -1;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

@media (max-width: 992px) {
  .process-connector {
    display: none;
  }
  
  .process-step {
    margin-bottom: 3rem;
  }
  
  .process-step:last-child {
    margin-bottom: 0;
  }
}


/* Enhanced FAQ Section */
/* FAQ essentials */
/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  border: 0;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(215, 86, 64, 0.03);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer[aria-hidden="false"] {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

.faq-answer-content {
  color: #555;
  line-height: 1.8;
  padding-top: 0.5rem;
}

/* Respect [hidden] for initial state */
.faq-answer[hidden] {
  display: block;
}

/* Footer */
.footer {
  background-color: #343432;
  color: #fff;
  padding: 5rem 0 0;
  position: relative;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 1.5rem;
  /* filter: brightness(0) invert(1); */
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 3px;
}

.footer-newsletter {
  margin-top: 1.5rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #c04a36;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .footer-contact-info li {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 4px;
    padding: 10px;
  }
}



/* Contact Section */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../assets/contact-bg.jpg') no-repeat center center/cover;
  color: white;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1.5rem;
  margin-top: 5px;
}

.contact-info-text h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-info-text p, .contact-info-text a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.contact-info-text a:hover {
  color: white;
  text-decoration: none;
}

.contact-form .form-control {
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form textarea.form-control {
  min-height: 150px;
}

.contact-form-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form-btn:hover {
  background: #c04a36;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(215, 86, 64, 0.2);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.cta-btn-primary {
  background: white;
  color: var(--primary);
}

.cta-btn-secondary {
  background: transparent;
  color: white !important;
  border: 2px solid white;
}

.cta-btn i {
  margin-right: 10px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info, .contact-form-container {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* WhatsApp Chat Tooltip */
.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  bottom: 0;
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 15px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid white;
}

.whatsapp-tooltip-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.whatsapp-tooltip-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.whatsapp-tooltip-name {
  font-weight: 600;
  color: var(--dark);
}

.whatsapp-tooltip-status {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.whatsapp-tooltip-status-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  margin-right: 5px;
}

.whatsapp-tooltip-message {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.whatsapp-tooltip-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
}

.whatsapp-chat:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-chat {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    width: 220px;
    right: 60px;
  }
}