/* Base Styles */
:root {
  --primary-color: #fd7e14;
  --secondary-color: #333333;
  --accent-color: #fd7e14;
  --light-color: #ffffff;
  --dark-color: #000000;
  --success-color: #fd7e14;
  --info-color: #fd7e14;
  --warning-color: #fd7e14;
  --danger-color: #fd7e14;
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-primary);
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Override Bootstrap's default blue colors */
a {
  color: var(--primary-color);
}

a:hover {
  color: #e67212;
}

.btn-link {
  color: var(--primary-color);
}

.btn-link:hover {
  color: #e67212;
}

.alert-info {
  background-color: rgba(253, 126, 20, 0.1);
  border-color: rgba(253, 126, 20, 0.2);
  color: var(--primary-color);
}

.text-info {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}



.bg-info {
  background-color: var(--primary-color) !important;
}

/* Utility Classes */
.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e67212 100%);
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #e67212;
  border-color: #e67212;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-item {
  margin: 0 0.25rem;
}

.nav-link.active, .nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1rem 0;
}

.navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
  background-color: rgba(253, 126, 20, 0.1);
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.btn-primary.rounded-pill {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: var(--primary-color);
}

/* Cards */
.card {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-title {
  font-weight: 600;
}

.card-body {
  padding: 2rem;
}

/* Icons and Features */
.icon-box {
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.card:hover .icon-box {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-section {
  padding: 80px 0;
}

.testimonial-section .card {
  border-radius: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-info h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info .icon-box {
  width: 50px;
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
}

/* Footer */
.footer {
  background-color: #ffffff;
  color: #333;
  padding: 20px 0;
}

.footer a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

/* Animations */
.animate-element {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-element.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential animation delay */
.row .animate-element:nth-child(1) { transition-delay: 0.1s; }
.row .animate-element:nth-child(2) { transition-delay: 0.2s; }
.row .animate-element:nth-child(3) { transition-delay: 0.3s; }
.row .animate-element:nth-child(4) { transition-delay: 0.4s; }

/* Form Styles */
.form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e9e9e9;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.15);
  border-color: var(--primary-color);
}

.form-label {
  font-weight: 500;
}

/* Media Queries */
@media (max-width: 991.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 40px 0;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-element {
  animation: fadeIn 0.8s ease forwards;
}

/* Custom Styles for Specific Pages */

/* Consulting Page */
.process-icon {
  transition: all 0.3s ease;
}

.card:hover .process-icon {
  transform: scale(1.1);
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
  background-color: rgba(253, 126, 20, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.25);
  border-color: var(--primary-color);
}

/* Custom Shadows */
.shadow-custom {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Custom Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

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