/* navbar styling css */
:root {
  /* Deep Charcoal & Gold Theme */
  --primary-bg: #1a1915;
  /* Deep Charcoal */
  --accent-color: #b59410;
  /* Rich Gold */
  --nav-text: #fdfbf0;
  /* Off-white/Cream for text */
  --glass-bg: rgba(26, 25, 21, 0.95);

    --primary-gold: #b59410;
  --dark-bg: #0f1115;
  --card-bg: #1a1d23;
  --text-light: #e2e8f0;
  --accent-blue: #3b82f6;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #fffdf5;
  /* Aapka Light Cream Background */
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
}

.color-theme2{
  background: var(--primary-bg); color: var(--text-light);
}

/* --- Navbar Styling --- */
.custom-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(181, 148, 16, 0.2);
  /* Subtle Gold border */
  transition: all 0.4s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--nav-text) !important;
  letter-spacing: -1px;
}

.navbar-brand span {
  color: var(--accent-color);
}

/* --- Nav Links --- */
.nav-link {
  color: var(--nav-text) !important;
  font-weight: 500;
  margin: 0 12px;
  padding: 8px 0 !important;
  position: relative;
  opacity: 0.7;
  transition: 0.3s;
}

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

/* Smart Gold Underline Effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Custom Toggle Button --- */
.navbar-toggler {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 5px 10px;
  border-radius: 8px;
}

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

/* --- Gold CTA Button --- */
.btn-header {
  background: var(--accent-color);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(181, 148, 16, 0.2);
}

.btn-header:hover {
  background: #d4af37;
  /* Lighter gold on hover */
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(181, 148, 16, 0.4);
  color: #ffffff !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-bg);
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(181, 148, 16, 0.3);
  }

  .nav-link {
    margin: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Navbar */
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* OurLive Project Sections */
/* Hide Scrollbar but keep functionality */
#projectSlider::-webkit-scrollbar {
  display: none;
}

.project-slide {
  min-width: 350px;
  /* Width of each box */
  scroll-snap-align: start;
  transition: 0.3s;
}

.mini-project-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f0ece0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mini-project-card:hover {
  transform: translateY(-10px);
  border-color: #b59410;
  box-shadow: 0 20px 40px rgba(181, 148, 16, 0.08);
}

.mini-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.mini-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.mini-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.mini-project-card:hover .mini-overlay {
  opacity: 1;
}

.btn-sm-visit {
  background: #b59410;
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.mini-content {
  padding: 25px;
}

.status-dot {
  background: #ecfdf5;
  color: #059669;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
}

.tech-stack span {
  font-size: 11px;
  color: #b59410;
  background: #fffdf5;
  padding: 5px 10px;
  border-radius: 8px;
  margin-right: 5px;
  font-weight: 600;
}

/* Slider Buttons */
.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e5e1d1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.slider-btn:hover {
  background: #1a1915;
  color: white;
  border-color: #1a1915;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .project-slide {
    min-width: 85%;
  }
}

/* Idea to life styling */
.process-item {
  position: relative;
  padding: 20px;
  transition: 0.3s;
}

.process-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(181, 148, 16, 0.05);
  /* Very faint large number */
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.process-item h5{
  color: #000;
}

.process-icon-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #f0ece0;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #b59410;
  position: relative;
  z-index: 1;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.active-process {
  background: #b59410;
  color: white;
  box-shadow: 0 15px 30px rgba(181, 148, 16, 0.2);
}

.process-item:hover .process-icon-box {
  transform: scale(1.1) rotate(5deg);
  border-color: #b59410;
}

/* Connecting Dots for Desktop */
@media (min-width: 992px) {
  .process-item::after {
    content: ".......";
    position: absolute;
    top: 50px;
    right: -30%;
    font-size: 2rem;
    color: #e5e1d1;
    letter-spacing: 5px;
    opacity: 0.5;
  }

  .col-lg-3:last-child .process-item::after {
    display: none;
  }
}

/* Why Chose Us */
.metric-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f0ece0;
  transition: 0.4s;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(181, 148, 16, 0.1) !important;
  border-color: #b59410;
}

.icon-badge {
  width: 60px;
  height: 60px;
  background: #fffdf5;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Our Journy Sections */
.bento-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.icon-circle-smooth {
  width: 60px;
  height: 60px;
  background: #fdfbf0;
  color: #b59410;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pulse-indicator {
  width: 12px;
  height: 12px;
  background: #059669;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

/* Lets Build Something */
.custom-input .form-control,
.custom-input .form-select {
  border: none;
  border-bottom: 2px solid #f0ece0;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  box-shadow: none;
  transition: 0.3s;
}

.custom-input .form-control:focus,
.custom-input .form-select:focus {
  border-color: #b59410;
  background: #fffdf5;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: rgba(181, 148, 16, 0.2);
  color: #b59410;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.btn-send-now {
  background: #1a1915;
  color: white;
  padding: 15px 40px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
  transition: 0.4s;
}

.btn-send-now:hover {
  background: #b59410;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(181, 148, 16, 0.3);
}

.social-link-light {
  color: white;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: 0.3s;
}

.social-link-light:hover {
  opacity: 1;
  color: #b59410;
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    border-radius: 30px;
  }
}

/* Footer Sections */
/* --- Footer Hover Effects --- */
.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-nav a:hover {
  color: #b59410;
  padding-left: 8px;
}

/* --- Social Link Style --- */
.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social-link:hover {
  background: #b59410;
  color: white;
  transform: translateY(-5px);
}

/* --- Button Style --- */
.btn-gold {
  background: #b59410;
  border: none;
  color: white;
  padding: 0 20px;
}

.btn-gold:hover {
  background: #d4af37;
}

/* --- Responsive Corner Radius --- */
@media (max-width: 768px) {
  footer {
    border-radius: 40px 40px 0 0;
    padding: 60px 0 20px 0;
  }
}
