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

:root {
  --bg-color: #f8fafc; /* Clean Light Canvas Background */
  --bg-gradient: none;
  --card-bg: #090d16; /* Black background for all cards/boxes */
  --card-hover-bg: #111827; /* Dark hover color for cards */
  --text-main: #090d16; /* Deep black-slate for canvas headings */
  --text-secondary: #1e293b; /* Deep charcoal for canvas text */
  --border-color: rgba(197, 160, 89, 0.15); /* Gold border tint */
  --border-hover-color: rgba(197, 160, 89, 0.5); /* Gold hover border */
  --accent-color: #c5a059; /* Warm Gold accent color */
  --accent-glow: rgba(197, 160, 89, 0.15);
  --accent-gradient: linear-gradient(135deg, #c5a059, #f3d090); /* Champagne Gold Gradient */
  --button-hover-gradient: linear-gradient(135deg, #a7823b, #c5a059);
  --shadow-color: rgba(0, 0, 0, 0.15);
  --divider-color: rgba(197, 160, 89, 0.08);
  --grid-color: rgba(197, 160, 89, 0.03); /* Golden tech grid overlay lines */
  --header-bg: #090d16; /* Solid dark navbar header */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* Background Tech Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--grid-color) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  z-index: 2;
  pointer-events: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080c14;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Animated Background Orbs */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.04; /* Very subtle glow on light canvas */
  animation: floatOrb 28s infinite alternate ease-in-out;
}

.orb-1 { width: 450px; height: 450px; background: #0e8fab; top: -100px; left: -100px; animation-duration: 20s; }
.orb-2 { width: 500px; height: 500px; background: #0284c7; bottom: -150px; right: -150px; animation-duration: 28s; animation-delay: -5s; }
.orb-3 { width: 350px; height: 350px; background: #60a5fa; top: 40%; left: 50%; transform: translate(-50%, -50%); animation-duration: 22s; animation-delay: -10s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.05); }
  100% { transform: translate(-30px, -60px) scale(0.95); }
}

/* Top Sticky Navigation Bar */
nav.navbar {
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15); /* Gold divider line */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 30px;
  display: flex;
  justify-content: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #d4af37; /* Match homepage brand gold */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.nav-brand span {
  color: #d4af37; /* Solid gold brand name */
}

.nav-brand img {
  height: 52px;
  border-radius: 4px;
  border: 1px solid rgba(197, 160, 89, 0.15); /* Gold border tint */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8; /* Muted slate for dark header links */
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.nav-links a:hover, .nav-links li.active a {
  color: #d4af37; /* Gold text hover */
  background: rgba(197, 160, 89, 0.08); /* Gold background tint */
  border-color: rgba(197, 160, 89, 0.2); /* Gold border tint */
}

/* Subpage Hero/Header Area */
.sub-hero {
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 25px 20px;
  text-align: center;
  z-index: 10;
  margin-bottom: 30px;
  box-shadow: 0 10px 45px var(--shadow-color);
}

.sub-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.sub-hero p {
  color: #94a3b8; /* Muted text inside dark banner */
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

/* Page Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 10;
}

/* Grid layout for services/about */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.premium-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); /* Standout drop shadow */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover-color);
  box-shadow: 0 20px 50px var(--shadow-color), 0 0 25px var(--accent-glow);
}

.card-title-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-title-bar i {
  font-size: 1.5rem;
  color: var(--accent-color);
  background: rgba(197, 160, 89, 0.05);
  width: 54px;
  height: 54px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.premium-card:hover .card-title-bar i {
  background: var(--accent-gradient);
  color: #090d16;
  border-color: transparent;
}

.card-title-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.premium-card p {
  color: #94a3b8; /* Light slate description text */
  font-size: 0.98rem;
  font-weight: 300;
}

.premium-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premium-card ul li {
  font-size: 0.92rem;
  color: #94a3b8; /* Light slate list items */
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-card ul li i {
  color: var(--accent-color);
}

/* Call to Action Row */
.cta-banner {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); /* Standout drop shadow */
}

.cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent-color); /* Gold text on dark banner */
}

.cta-text p {
  color: #94a3b8; /* Light text for banner description */
  font-size: 1.05rem;
  font-weight: 300;
}

.cta-btn {
  background: var(--accent-gradient);
  color: #090d16; /* Dark text on gold gradient button */
  border: none;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--accent-glow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  background: var(--button-hover-gradient);
  color: #090d16;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Form Styles */
.premium-form {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); /* Standout drop shadow */
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8; /* Light grey labels */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input, .form-group textarea, .form-group select {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  padding: 14px;
  color: #090d16; /* Dark text inside form fields */
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-color);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Standout drop shadow */
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent-color); /* Golden heading */
}

.team-info p {
  color: #94a3b8; /* Light slate role text */
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Client Grid */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.client-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Standout drop shadow */
  transition: all 0.3s;
}

.client-card:hover {
  transform: scale(1.03);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.client-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid var(--border-color);
}

.client-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color); /* Golden client name */
  line-height: 1.4;
}

/* Footer Section */
footer {
  width: 100%;
  background: #090d16; /* Solid dark background to anchor page layout */
  border-top: 1px solid rgba(197, 160, 89, 0.15); /* Gold divider line */
  padding: 40px 20px;
  text-align: center;
  color: #94a3b8; /* Muted text for dark footer */
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: auto;
  z-index: 10;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
}

/* Floating Contact Widget */
.floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--border-color);
}

.floating-btn.whatsapp { background: #128c7e; }
.floating-btn.phone { background: var(--card-bg); color: var(--accent-color); }
.floating-btn:hover { transform: scale(1.1) translateY(-4px); }

/* Section Title Heading */
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: -0.3px;
}

.section-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-title:hover::after {
  width: 90px;
}

/* Service Process Workflow Section */
.process-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px; /* Slightly rounded corners */
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Standout drop shadow */
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px var(--shadow-color), 0 0 20px var(--accent-glow);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.15);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.process-step p {
  font-size: 0.92rem;
  color: #94a3b8; /* Light slate text */
  font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav.navbar { padding: 15px 20px; }
  .nav-links { display: none; }
  .sub-hero { padding: 40px 15px; }
  .sub-hero h2 { font-size: 2.2rem; }
  .cta-banner { flex-direction: column; text-align: center; }
  .premium-form { padding: 30px 20px; }
}

/* Page specific elements styling corrections */
.skill-info {
  color: #94a3b8 !important; /* Ensure skill text is readable inside dark about card */
}
.founder-tag {
  color: var(--accent-color) !important;
  border-bottom: 1.5px solid var(--accent-color) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.premium-card h3 {
  color: var(--accent-color); /* Bulletproof heading color on dark card */
}


