body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-first responsive breakpoints */
:root {
    --mobile-padding: 1rem;
    --tablet-padding: 1.5rem;
    --desktop-padding: 2rem;
    --touch-target-size: 44px;
    --mobile-font-size: 0.875rem;
    --tablet-font-size: 1rem;
    --desktop-font-size: 1.125rem;
}

/* Improved touch targets for mobile */
button, a, input, textarea, select {
    min-height: var(--touch-target-size);
    min-width: var(--touch-target-size);
}

/* Mobile-first container */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: var(--mobile-padding);
    padding-right: var(--mobile-padding);
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: var(--tablet-padding);
        padding-right: var(--tablet-padding);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: var(--desktop-padding);
        padding-right: var(--desktop-padding);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Responsive Navbar Logo Styling */
.navbar-logo-main {
    font-size: 1.25rem;
    font-weight: 700;
}
.navbar-logo-sub {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) {
    .navbar-logo-main {
        font-size: 1.5rem;
    }
    .navbar-logo-sub {
        font-size: 0.875rem;
    }
}

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.webp') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

/* Animated background elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* About content sections */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(249, 115, 22, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.about-section:hover::before {
    transform: translateX(100%);
}

/* Team member cards */
.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Values section */
.value-item {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: scale(1.02);
}

/* Stats counter animation */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Dropdown Styles */
#mobileMenuDropdown {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mobileMenuDropdown.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Ensure mobile menu button is clickable */
#mobileMenuButton {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease;
    border-radius: 8px;
    padding: 8px;
}

#mobileMenuButton:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.1);
}

#mobileMenuButton:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hamburger to X animation */
#mobileMenuButton span {
    transition: all 0.3s ease;
}

#mobileMenuButton.open span:nth-child(1) {
    transform: rotate(45deg) translate(0, 5px);
}

#mobileMenuButton.open span:nth-child(2) {
    opacity: 0;
}

#mobileMenuButton.open span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
}

/* Make navigation more transparent when mobile menu is open */
nav.mobile-menu-open {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hide mobile menu on larger screens */
@media (min-width: 768px) {
    #mobileMenuButton {
        display: none !important;
    }
    #mobileMenuDropdown {
        display: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .value-item {
        margin-bottom: 1rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

.gallery-masonry {
    column-count: 1;
    column-gap: 1.25rem;
}
@media (min-width: 640px) {
    .gallery-masonry { column-count: 2; }
}
@media (min-width: 1024px) {
    .gallery-masonry { column-count: 3; }
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.03);
}
.gallery-img {
    width: 100%;
    display: block;
    border-radius: 1.25rem;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.07) rotate(-1deg);
    filter: brightness(0.95) saturate(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,0,0,0.15) 60%,rgba(249,115,22,0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    border-radius: 1.25rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-caption {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
} 

/* Redesigned Our Journey Section */
#our-journey {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 60%, #fef3c7 100%);
}
.journey-title {
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(255, 152, 0, 0.08);
}
.journey-subtitle {
  opacity: 0.85;
}
.journey-timeline-new {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
.journey-line {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f97316 0%, #fbbf24 100%);
  border-radius: 2px;
  z-index: 0;
}
.journey-milestone {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  position: relative;
  width: 100%;
  z-index: 2;
}
.journey-milestone:nth-child(even) {
  flex-direction: row-reverse;
}
.journey-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(249, 115, 22, 0.15);
  margin: 0 1.5rem;
  z-index: 3;
  border: 4px solid #fff;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.journey-milestone:hover .journey-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 32px 0 rgba(249, 115, 22, 0.25);
}
.journey-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 rgba(249, 115, 22, 0.07);
  padding: 1.5rem 2rem;
  min-width: 220px;
  max-width: 340px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s;
}
.journey-milestone:nth-child(even) .journey-card {
  margin-left: 0;
  margin-right: 0;
}
.journey-milestone:nth-child(odd) .journey-card {
  margin-left: 0;
  margin-right: 0;
}
.journey-bg-shape-new {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle at 60% 40%, #fbbf24 0%, #fff7ed 70%, transparent 100%);
  opacity: 0.18;
  transform: translateX(-50%) scale(1.1);
  z-index: 0;
  pointer-events: none;
}
/* Animations */
@keyframes journey-fadein {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes journey-slidein-left {
  0% { opacity: 0; transform: translateX(-80px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes journey-slidein-right {
  0% { opacity: 0; transform: translateX(80px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
.animate-journey-fadein {
  animation: journey-fadein 1.1s cubic-bezier(.4,2,.6,1) both;
}
.animate-journey-slidein-left {
  animation: journey-slidein-left 1.1s cubic-bezier(.4,2,.6,1) both;
}
.animate-journey-slidein-right {
  animation: journey-slidein-right 1.1s cubic-bezier(.4,2,.6,1) both;
}
.journey-milestone {
  opacity: 0;
}
.journey-milestone.visible {
  opacity: 1;
  transition: opacity 0.5s;
}
@media (max-width: 640px) {
  .journey-timeline-new {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .journey-card {
    padding: 1.1rem 1rem;
    min-width: 0;
    max-width: 100%;
  }
  .journey-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin: 0 0.7rem;
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 4px 24px 0 rgba(249,115,22,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  background: linear-gradient(135deg, #f97316 60%, #ffb347 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, box-shadow 0.2s, transform 0.2s, visibility 0.3s;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
#backToTop:hover {
  background: linear-gradient(135deg, #ffb347 60%, #f97316 100%);
  box-shadow: 0 6px 32px 0 rgba(249,115,22,0.28), 0 2px 8px 0 rgba(0,0,0,0.13);
  transform: scale(1.08);
}
#backToTop svg {
  width: 32px !important;
  height: 32px !important;
  color: #fff;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px #ffb34788);
}

@media (max-width: 767px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 56px !important;
    height: 56px !important;
    /* Ensure it does not overlap the call button */
    /* If call button is above, keep backToTop lower */
    /* If call button is below, keep backToTop above */
    /* Here, call button is at bottom: 92px, so backToTop stays at 20px */
    /* Add extra margin if needed for safe area on some devices */
    margin-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* Utility: dark overlay for blurred backgrounds */
.bg-blur-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(17,24,39,0.7) 0%, rgba(249,115,22,0.25) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Utility: extra blur for background images */
.bg-extra-blur {
    filter: blur(18px) brightness(0.7) saturate(1.1);
    opacity: 0.55;
}

/* Brand Colors Only: Orange, Black, White */
#our-journey.journey-bg-image {
  position: relative;
  background: none;
  min-height: 700px;
}
.journey-bg-img {
  z-index: 1;
  opacity: 0.28;
  filter: blur(1px) brightness(0.7);
}
.journey-bg-overlay {
  z-index: 2;
  background: linear-gradient(120deg, rgba(10,10,10,0.92) 0%, rgba(30,30,30,0.88) 100%);
  pointer-events: none;
}
.journey-title {
  color: #f97316; /* orange-500 */
  text-shadow: 0 2px 16px rgba(249, 115, 22, 0.18);
}
.journey-subtitle {
  color: #fff;
  opacity: 0.96;
}
.journey-timeline-new {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
.journey-line {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #fbbf24 0%, #f97316 100%); /* orange gradient */
  border-radius: 2px;
  z-index: 0;
}
.journey-milestone {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  position: relative;
  width: 100%;
  z-index: 2;
}
.journey-milestone:nth-child(even) {
  flex-direction: row-reverse;
}
.journey-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(249, 115, 22, 0.18);
  margin: 0 1.5rem;
  z-index: 3;
  border: 4px solid rgba(255,255,255,0.18);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.journey-milestone:hover .journey-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 32px 0 rgba(249, 115, 22, 0.22);
}
.journey-card {
  background: rgba(20, 20, 20, 0.92);
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px 0 rgba(249, 115, 22, 0.09), 0 1.5px 8px 0 rgba(0,0,0,0.12);
  padding: 1.5rem 2rem;
  min-width: 220px;
  max-width: 340px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s;
  color: #fff;
  border: 1.5px solid rgba(249, 115, 22, 0.13);
  backdrop-filter: blur(2px);
}
.journey-card h3 {
  color: #fbbf24;
}
.journey-milestone:nth-child(even) .journey-card {
  margin-left: 0;
  margin-right: 0;
}
.journey-milestone:nth-child(odd) .journey-card {
  margin-left: 0;
  margin-right: 0;
}

/* Journey icon and card scroll animations */
.journey-icon {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
}
.journey-icon.icon-animate {
  animation: icon-glow-scale 0.8s cubic-bezier(.4,2,.6,1) both;
}
@keyframes icon-glow-scale {
  0% { transform: scale(0.7); box-shadow: 0 0 0 0 rgba(249,115,22,0); }
  60% { transform: scale(1.18); box-shadow: 0 0 32px 8px rgba(249,115,22,0.25); }
  100% { transform: scale(1); box-shadow: 0 4px 24px 0 rgba(249,115,22,0.18); }
}
.journey-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.5s, transform 0.5s;
}
.journey-card.card-animate {
  animation: card-fadeup 0.8s cubic-bezier(.4,2,.6,1) both;
}
@keyframes card-fadeup {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Call Now Button Styles */
#callNowBtn {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f97316 60%, #ffb347 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(249,115,22,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: callnow-pulse 1.5s infinite;
  border: none;
  outline: none;
  font-size: 0;
}
#callNowBtn:active {
  transform: scale(0.96);
}
#callNowBtn .callnow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
#callNowBtn svg {
  width: 32px;
  height: 32px;
  color: #fff;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 6px #ffb34788);
}
@keyframes callnow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249,115,22,0.5), 0 4px 24px 0 rgba(249,115,22,0.25);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(249,115,22,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249,115,22,0.5), 0 4px 24px 0 rgba(249,115,22,0.25);
  }
}
@media (min-width: 768px) {
  #callNowBtn {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #callNowBtn {
    display: flex;
  }
}