body { font-family: 'Inter', sans-serif; }

/* Custom Gradients with Purple and Blue */
.gradient-hero {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.06) 100%
  );
}

.gradient-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
}

.gradient-button,
.gradient-icon {
  background: linear-gradient(135deg, #BF5700, #EA8110);
  color: white;
  transition: all 0.3s ease;
}

.gradient-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}


@keyframes gradient-reverse {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Glassmorphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass2 {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.03),
    rgba(0, 0, 0, 0.18)
  );
  border: 1px solid rgba(234, 129, 16, 0.35);
  backdrop-filter: blur(14px);
}

.glass-orange {
  background: rgba(234, 129, 16, 0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 129, 16, 0.35);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-accent {
  background: rgba(234,129,16,0.12);
  border: 1px solid rgba(234,129,16,0.25);
  backdrop-filter: blur(12px);
}

.glass-light {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(234, 129, 16, 0.35);
}

/* Animated Background */
.animated-bg {
  background: linear-gradient(135deg, #0b0b0c 0%, #151517 40%, #0d0d0f 100%);
  background-size: 200% 200%;
  animation: angleFlow 10s ease-in-out infinite;
}

@keyframes angleFlow {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.animated-bg-light {
  background: linear-gradient(
      135deg,
      #f8f8f8 0%,
      #e6e6e6 25%,
      #dcdcdc 50%,
      #e8e8e8 75%,
      #ffffff 100%
  );
  background-size: 200% 200%;
  animation: angleFlow 10s ease-in-out infinite;
  color: #000; /* your dark text contrast */
}

.heading-elevated {
  background: linear-gradient(135deg, #000 0%, #444 50%, #000 100%);
  background-size: 200% 200%;
  animation: angleFlow 8s ease-in-out infinite;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  line-height: 1.2; /* ← stops clipping */
}

.card-premium {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(234,129,16,0.25);
  box-shadow: 0 0 14px rgba(234,129,16,0.08);
}

.text-ink {
  background: linear-gradient(to bottom, #000 0%, #333 100%);
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.extend-div {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.hover-glow:hover {
    box-shadow: 0 0 25px rgba(234,129,16,0.4);
}

/* Floating Animation */
.float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Fade in animation */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
select {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 0.75rem; /* xl */
  padding: 0.75rem 1rem;
}

select option {
  background: #1f2937; /* Tailwind gray-800 */
  color: white;
}

select option:checked,
select option:hover {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 40%, #34d399 100%);
  color: white;
}
/* Slide-in animation */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 160px;
  position: relative;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.section-separator {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(234, 129, 16, 0) 0%,
    rgba(234, 129, 16, 0.4) 50%,
    rgba(234, 129, 16, 0) 100%
  );
  filter: drop-shadow(0 0 6px rgba(234, 129, 16, 0.4));
}

.view-project {
  color: #EA8110;
}

.footer {
  margin-top: 80px;
}

.navbar-brand {
  font-size: 35px !important;
}

.services {
  margin-bottom: 70px;
}

.services-cta {
  margin-top: 50px;
}

.card-text p {
  margin-bottom: 0px !important;
}

button:disabled:hover {
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
}

.about-margin {
  margin-top: 64px;
}

nav a,
nav .navbar-brand {
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
