:root {
  --primary-charcoal: #263238;
  --secondary-orange: #ff6d00;
  --accent-teal: #00bf86;
  --neutral-white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Topbar Styles */
.topbar {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar a {
  color: var(--neutral-white);
  transition: 0.3s;
}
.topbar a:hover {
  color: var(--secondary-orange);
}
.text-accent {
  color: var(--accent-teal);
}

/* Navbar Styles */
/* Navbar Base */
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 0;

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    0 0 10px #ff6f0098; /* yellow glow */
}

.brand-text {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--neutral-white);
}

.text-secondary-color {
  color: var(--secondary-orange);
}

.nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-teal) !important;
}

/* Dropdown Customization */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--secondary-orange);
  border-radius: 0;
}

.dropdown-item:hover {
  background-color: var(--accent-teal);
  color: white;
}

/* CTA Button */
.btn-get-started {
  background-color: var(--secondary-orange);
  color: white;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.btn-get-started:hover {
  background-color: transparent;
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
}

/* Mobile Toggle */
.navbar-toggler {
  border-color: var(--accent-teal);
}

/* Slider section */

#hero-carousel {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  padding: 80px 0;
  min-height: 600px;
}

.hero-container {
  padding: 40px 15px;
}

.hero-title {
  color: var(--primary-charcoal);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.text-teal {
  color: var(--accent-teal);
}
.text-orange {
  color: var(--secondary-orange);
}

.hero-desc {
  color: #546e7a;
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-charcoal);
  border-color: var(--primary-charcoal);
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.btn-outline-primary {
  border-color: var(
    --primary-charcoal
  ); /* Using the Blue from your image for the outline */
  color: var(--primary-charcoal);
  padding: 12px 30px;
  font-weight: 700;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-orange);
  color: white;
}

/* Image Card Styling */
.hero-image-card {
  background: #e0e6ed;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: 0.5s;
}

.hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-charcoal);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* What we Do */

.what-we-do-section {
  background-color: var(--neutral-white);
}

.section-title {
  color: var(--primary-charcoal);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.text-teal {
  color: var(--accent-teal);
}
.text-secondary-color {
  color: var(--secondary-orange);
}

.section-text {
  color: #455a64;
  font-size: 1.15rem;
}

/* Highlight Box for Real Estate Mention */
.highlight-box {
  background-color: #f1f8f7; /* Very light teal tint */
  border-left: 5px solid var(--accent-teal);
  color: #37474f;
}

.italic-text {
  font-style: italic;
  line-height: 1.6;
}

/* Stat Cards on the Right */
.stat-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary-charcoal);
}

.stat-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.active-card {
  background-color: var(--primary-charcoal);
  color: white;
}

.active-card i {
  color: var(--secondary-orange);
}

.active-card p {
  color: #cfd8dc;
}

/* Our Solution */

.complete-solution-section {
  background-color: var(--primary-charcoal);
  position: relative;
  overflow: hidden;
}

/* Solution Cards */
.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: white;
  transition: all 0.4s ease;
}

.solution-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 0.95rem;
  color: #b0bec5;
  line-height: 1.6;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 109, 0, 0.1); /* Light Orange background */
  color: var(--secondary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 12px;
  transition: 0.3s;
}

/* Hover Effects */
.solution-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-teal);
  transform: translateY(-8px);
}

.solution-card:hover .icon-box {
  background: var(--secondary-orange);
  color: white;
}

/* Special Highlight for Performance Marketing */
.highlight-card {
  border-right: 4px solid var(--accent-teal);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(0, 191, 165, 0.05) 100%
  );
}

.text-accent {
  color: var(--accent-teal);
}

/* About Us Section */

.img-premium {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.img-premium:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.about-us-section {
  background-color: #fcfdfe;
}

.about-headline {
  color: var(--primary-charcoal);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-teal {
  color: var(--accent-teal);
}
.text-secondary-orange {
  color: var(--secondary-orange);
}

/* Left Side Card Styling */
.about-card-main {
  background-color: #050a30; /* Very dark navy/charcoal for premium look */
  height: 500px;
  width: 100%;
}

.trust-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--secondary-orange);
  color: white;
  border-radius: 12px;
  width: 240px;
}

/* Approach Logic Styling */
.approach-container {
  background-color: #f8f9fa;
}

.accent-line {
  height: 4px;
  background-color: var(--secondary-orange);
  width: 100%;
}

.border-end {
  border-color: #dee2e6 !important;
}

@media (max-width: 991px) {
  .trust-badge-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -50px;
    width: 100%;
  }
  .about-headline {
    font-size: 2.2rem;
  }
}

.why-choose-us {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}

.text-teal {
  color: var(--accent-teal);
}
.text-secondary-orange {
  color: var(--secondary-orange);
}

/* Feature Card Styling */
.feature-card {
  background-color: var(--neutral-white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 191, 165, 0.1); /* Teal tint */
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}

.highlight-border {
  border-left: 5px solid var(--secondary-orange) !important;
}

/* Button */
.btn-primary-custom {
  background-color: var(--primary-charcoal);
  color: white;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--secondary-orange);
  color: white;
}

.services-section {
  background-color: #ffffff;
}

.title-line {
  width: 60px;
  height: 4px;
  background-color: var(--secondary-orange);
  margin-top: 15px;
}

.service-card {
  border: 1px solid #f1f1f1;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--secondary-orange);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.service-icon {
  font-size: 2rem;
  color: var(--secondary-orange);
}

.icon-teal {
  color: var(--accent-teal);
}

.border-teal {
  border-bottom: 3px solid var(--accent-teal);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.text-secondary-orange {
  color: var(--secondary-orange);
}

.industries-serve-section {
  background-color: var(--primary-charcoal);
}

.industries-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-teal {
  color: var(--accent-teal);
}
.text-accent {
  color: var(--accent-teal);
}
.text-secondary-orange {
  color: var(--secondary-orange);
}

/* Industry Card Global Styling */
.industry-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darkens image slightly for text contrast */
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 56, 0) 0%,
    rgba(38, 50, 56, 1) 100%
  );
}

.main-industry-card {
  height: 400px;
}
.small-industry-card {
  height: 400px;
}

/* Hover Effects */
.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.industry-card:hover .industry-img {
  filter: brightness(1);
  transform: scale(1.05);
}

/* Button & More Industries Styling */
.btn-outline-light-custom {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  font-weight: 700;
  transition: 0.3s;
}

.btn-outline-light-custom:hover {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
  color: white;
}

.more-industries-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.btn-secondary-custom {
  background-color: var(--secondary-orange);
  color: white;
  border: none;
  transition: 0.3s;
}

.btn-secondary-custom:hover {
  background-color: transparent;
  color: var(--secondary-orange);
  border: 2px solid var(--secondary-orange);
}

/* ============================= */

.text-teal {
  color: var(--accent-teal);
}
.text-orange {
  color: var(--secondary-orange);
}

.package-card {
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
}

.package-features li {
  padding: 8px 0;
  font-size: 0.95rem;
}

/* Gold Package Highlight */
.border-highlight {
  border-color: var(--secondary-orange) !important;
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-orange);
  color: white;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Button Styles */
.btn-outline-charcoal {
  border: 2px solid var(--primary-charcoal);
  color: var(--primary-charcoal);
}

.btn-outline-charcoal:hover {
  background-color: var(--primary-charcoal);
  color: white;
}

.btn-secondary-custom {
  background-color: var(--secondary-orange);
  color: white;
  border: none;
}

.btn-secondary-custom:hover {
  background-color: #e65100;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

@media (max-width: 991px) {
  .border-highlight {
    transform: scale(1);
    margin: 20px 0;
  }
}

/* =============================== */

.real-estate-focus {
  background-color: #fcfdfe;
  border-top: 1px solid #eee;
}

.focus-headline {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary-charcoal);
}

.text-accent-teal {
  color: var(--accent-teal);
}
.text-secondary-orange {
  color: var(--secondary-orange);
}

/* Benefit Items */
.benefit-icon {
  background-color: rgba(0, 191, 165, 0.1);
  color: var(--accent-teal);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Visual Card Overlay */
.real-estate-visual {
  border-left: 8px solid var(--primary-charcoal);
}

.overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, var(--primary-charcoal));
}

.pulse-icon {
  width: 12px;
  height: 12px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 191, 165, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 191, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 0);
  }
}

@media (max-width: 991px) {
  .focus-headline {
    font-size: 2.2rem;
  }
}
/* =================================== */

.process-section {
  position: relative;
  overflow: hidden;
}

/* Custom 5-column grid for Desktop */
@media (min-width: 992px) {
  .col-lg-2-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.process-wrapper {
  position: relative;
}

/* The Connecting Line */
.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #ddd 0,
    #ddd 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
}

/* Step Number Circles */
.step-number,
.step-number-active {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  font-weight: 800;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}

.step-number {
  background-color: #fff;
  border: 2px solid #ddd;
  color: #ddd;
}

.step-number-active {
  background-color: var(--accent-teal);
  border: 2px solid var(--accent-teal);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 191, 165, 0.3);
}

.step-card:hover .step-number {
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
  transform: translateY(-5px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
}

/* ====================================== */

.cta-section {
  background-color: #fff;
}

.cta-box {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
}

.cta-headline {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-orange {
  color: var(--secondary-orange);
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.85;
}

/* Primary Button - Orange */
.btn-primary-orange {
  background-color: var(--secondary-orange);
  color: white;
  border: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn-primary-orange:hover {
  background-color: #e65100;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.4);
}

/* Outline Button - White */
.btn-outline-white {
  border: 2px solid white;
  color: white;
  transition: 0.3s;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--primary-charcoal);
}

/* Decorative Circle Background */
.cta-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-teal);
  opacity: 0.1;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .cta-headline {
    font-size: 2.2rem;
  }
  .cta-box {
    padding: 40px 20px !important;
  }
}

/* Footer Background */
.footer-main {
  background-color: #1a2327; /* Darker charcoal for footer */
}

.text-orange {
  color: var(--secondary-orange);
}
.text-teal {
  color: var(--accent-teal);
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.3s;
  line-height: 2.2;
}

.footer-links li a:hover {
  color: var(--secondary-orange);
  padding-left: 5px;
}

/* Social Media Icons */
.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent-teal);
  transform: translateY(-3px);
}

/* --- Floating Action Buttons --- */
.fab-wrapper {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-btn:hover {
  transform: scale(1.15);
  color: white;
}

.fab-whatsapp {
  background-color: #25d366;
}
.fab-call {
  background-color: var(--secondary-orange);
}
.fab-email {
  background-color: var(--accent-teal);
}
.fab-top {
  background-color: var(--primary-charcoal);
  border: none;
  display: none; /* Hidden by default, shown via JS */
}
