@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-orange: #F26522;
  --primary-orange-hover: #D95314;
  --dark-navy: #0B1938;
  --dark-navy-light: #132448;
  --accent-teal: #00D2B5;
  --text-dark: #0F172A;
  --text-gray: #64748B;
  --text-light-gray: #94A3B8;
  --bg-light: #F8FAFC;
}

html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 5px;
}

/* Colors & Buttons */
.bg-primary-orange {
  background-color: var(--primary-orange);
}
.bg-dark-navy {
  background-color: var(--dark-navy);
}
.text-primary-orange {
  color: var(--primary-orange);
}
.text-dark-navy {
  color: var(--dark-navy);
}
.text-accent-teal {
  color: var(--accent-teal);
}
.border-primary-orange {
  border-color: var(--primary-orange);
}

.btn-orange {
  background-color: var(--primary-orange);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
}
.btn-orange:hover {
  background-color: var(--primary-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(242, 101, 34, 0.4);
}

.btn-orange-outline {
  background-color: transparent;
  border: 2px solid var(--primary-orange);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-orange-outline:hover {
  background-color: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(242, 101, 34, 0.4);
}

/* Header & Topbar */
.header-topbar {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  border-bottom: 1px solid #E2E8F0;
}
.header-navbar {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.header-topbar img {
  height: 56px !important;
}
.nav-link-item {
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.3rem 0.6rem;
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary-orange);
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-icon-btn:hover {
  transform: scale(1.1);
  background-color: var(--dark-navy);
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--dark-navy);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(242, 101, 34, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(0, 210, 181, 0.08) 0%, transparent 25%);
  overflow: hidden;
}

.floating-card-1 {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  animation: floatAnim1 4s ease-in-out infinite;
}

.floating-card-2 {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  animation: floatAnim2 4.5s ease-in-out infinite;
}

@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

/* Arch Mask for About Section */
.arch-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.arch-bg {
  background-color: var(--dark-navy);
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  height: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.arch-bg img {
  width: 90%;
  height: auto;
  object-fit: cover;
}

/* Icon Bullets */
.icon-bullet {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card.active-card {
  border: 2px solid var(--primary-orange);
  box-shadow: 0 15px 35px rgba(242, 101, 34, 0.15);
}

.service-card-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Stats Counter Section */
.stats-banner {
  background-color: var(--dark-navy);
  padding: 4rem 0 7rem 0;
  position: relative;
}
.stat-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Why Choose Us Overlap Card */
.why-us-wrapper {
  margin-top: -5.5rem;
  position: relative;
  z-index: 10;
}

.why-us-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Progress Bars */
.progress-bar-track {
  width: 100%;
  height: 10px;
  background-color: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background-color: var(--primary-orange);
  border-radius: 999px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Video Thumbnail & Play Button */
.video-preview-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}
.video-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--dark-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(11, 25, 56, 0.5);
  animation: pulsePlay 2s infinite;
  transition: all 0.3s ease;
  border: none;
}
.play-btn-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary-orange);
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 25, 56, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(11, 25, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 25, 56, 0);
  }
}

/* Testimonial Section */
.quote-icon-badge {
  font-size: 3.5rem;
  color: var(--primary-orange);
  line-height: 1;
}

/* Custom Accordion Styling for FAQ Page */
.accordion-item {
  border: 1px solid #E2E8F0 !important;
  background-color: #ffffff !important;
}

.accordion-button {
  color: #0B1938 !important;
  font-weight: 700 !important;
  background-color: #F8FAFC !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #0B1938 !important;
  background-color: #FFF7F2 !important;
  border-bottom: 1px solid #FED7AA !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.25) !important;
}

.accordion-button::after {
  filter: brightness(0.2) sepia(1) hue-rotate(340deg) saturate(5);
}

/* Fix Tailwind CSS conflict with Bootstrap 5 Accordion Collapse */
.accordion-collapse,
.accordion-collapse.collapse,
.accordion-collapse.collapse.show,
.accordion-collapse.collapsing,
.accordion-body,
.accordion-body * {
  visibility: visible !important;
}

.accordion-body {
  color: #334155 !important;
  background-color: #ffffff !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
}

.accordion-body strong {
  color: #0B1938 !important;
}

.accordion-body li {
  color: #334155 !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .stat-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .why-us-wrapper {
    margin-top: -3rem;
  }

  .display-3 { font-size: 2.2rem !important; }
  .display-4 { font-size: 1.9rem !important; }
  .display-5 { font-size: 1.65rem !important; }

  .header-topbar img {
    height: 52px !important;
  }

  .floating-hero-card, .floating-tag-card {
    display: none !important;
  }

  .arch-container {
    max-width: 300px;
  }
  .arch-bg {
    height: 350px;
  }

  .icon-bullet {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    flex-shrink: 0;
  }
}

@media (max-width: 575.98px) {
  .header-topbar img {
    height: 42px !important;
  }
  .header-topbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .btn-orange {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.88rem !important;
  }
  .arch-container {
    max-width: 240px;
  }
  .arch-bg {
    height: 290px;
  }
}
