/* ---------- Minimal Futuristic (Solid layout, no floating) ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  width: 100%;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  background: #ffffff;
  color: #3aa0ff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Color Variables */
:root {
  --accent: #3aa0ff;
  --muted: #555;
  --card: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Dark Mode Variables */
body.dark {
  --accent: #49dfff;
  --muted: #aaa;
  --card: #0f1720;
  background: #060b10;
  color: #e6eef6;
}

/* Layout */
.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 100;
}

body.dark .site-header {
  background: #0c111a;
  border-bottom: 1px solid #202830;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.brand-sub {
  color: #000;
}

body.dark .brand-sub {
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.hambtn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--muted);
}

/* Floating controls */
.floating-controls {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 110;
}

.control-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.control-icon:hover {
  background: var(--accent);
  color: #fff;
}

.control-icon input[type="color"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Main Content */
.site-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
}

.hero-left {
  flex: 1 1 400px;
}

.hero-left h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 12px;
}

.accent {
  color: var(--accent);
}

.typing {
  font-size: 1.1rem;
  color: var(--muted);
  min-height: 30px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: #1f7ee6;
}

.btn.ghost {
  border: 1px solid #ccc;
  color: var(--muted);
}

.hero-right {
  flex: 1 1 300px;
  text-align: center;
}

/* ===== Futuristic Profile Card with Image ===== */
.profile-card {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 238, 255, 0.3);
  background: linear-gradient(145deg, #0a0f1e, #10182f);
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card .frame {
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: 25px;
  pointer-events: none;
  animation: glow 2.5s infinite alternate;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  z-index: 1;
}


@keyframes glow {
  from { box-shadow: 0 0 10px var(--accent); }
  to { box-shadow: 0 0 25px var(--accent); }
}

/* About */
.about {
  margin-top: 40px;
  background: var(--card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about p {
  color: var(--muted);
}

/* Services */
.services {
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 8px;
}


/* 🌐 Futuristic Footer */
.site-footer {
  background: #0b0f1c;
  color: #ddd;
  padding: 60px 0 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #00e6e6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* White Company Card */
.footer-section.about {
  background: #ffffff;
  color: #0b0f1c;
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.footer-section.about h2 { color: #0077ff; }
.footer-section.about p { color: #555; }

.footer-section.about .footer-socials a {
  color: #0077ff;
}

/* General Footer Text */
.footer-section h2,
.footer-section h3 {
  color: #00e6e6;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover { color: #00e6e6; }

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 30px;
}

/* 👉 REMOVE BULLETS FROM THESE LISTS */
.site-footer .footer-section.links ul,
.site-footer .footer-section.services ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Dark Mode Footer */
body.dark .site-footer {
  background: #0c111a;
  border-top: 1px solid #202830;
}

body.dark .footer-section.about {
  background: #ffffff;
  color: #0b0f1c;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hambtn { display: block; }

  .hero { text-align: center; }

  .footer-container { text-align: center; }
}
/* ==== Portfolio Dashboard Screen ==== */
.dashboard-section {
  text-align: center;
}
.dashboard-screen {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
}
.dashboard-cell {
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.dashboard-cell:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.9);
}
.meter-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.meter-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dashboard-cell p {
  color: var(--muted);
  font-size: 0.95rem;
}
body.dark-theme .dashboard-cell {
  background: rgba(20,20,20,0.8);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Contact Page */
.contact-section {
  padding-top: 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: var(--card-bg);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
}

.btn-send {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-send:hover {
  opacity: 0.9;
}

.contact-info {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

.map-box {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hambtn {
    display: block;
  }

  body.dark .main-nav {
    background: #0c111a;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Window Box Portfolio UI
========================= */

.window-section {
  margin-top: 50px;
  text-align: center;
}

.main-window-box {
  width: 90%;
  margin: 30px auto;
  border: 5px solid black;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-items: center;
}

.window-box {
  width: 220px;
  height: 140px;
  border: 4px solid black;
  position: relative;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Internal straight grid lines */
.window-box::before,
.window-box::after {
  content: "";
  position: absolute;
  background: black;
}

/* Horizontal Line */
.window-box::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
}

/* Vertical Line */
.window-box::after {
  height: 100%;
  width: 4px;
  left: 50%;
  top: 0;
}

/* --- Slanted Versions (Bottom Boxes) --- */
.window-box.slanted::after {
  transform: rotate(14deg);
}

.window-count {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--accent);
}

/* Responsive */
@media(max-width:768px){
  .main-window-box{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pill-group {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 13px;
  padding: 6px 10px;
  background: rgba(0, 132, 255, 0.12);
  border: 1px solid rgba(0, 132, 255, 0.35);
  border-radius: 6px;
  color: #0078ff;
  font-weight: 500;
  transition: 0.25s ease;
  cursor: default;
}

.pill:hover {
  background: #0078ff;
  color: white;
  border-color: #0078ff;
  transform: translateY(-2px);
}
.equal-cards {
  display: grid;
  gap: 25px;
}

.service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px; /* Make all cards same height */
  padding-bottom: 20px;
}

/* ================= REVIEW FORM ALIGNMENT ================= */

#reviewForm {
  margin: 0 auto;              /* center form */
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Labels */
#reviewForm label {
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text);
}

/* Inputs, Select, Textarea */
#reviewForm input,
#reviewForm select,
#reviewForm textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

/* Remove inline spacing conflicts */
#reviewForm input,
#reviewForm select {
  margin-bottom: 12px;
}

#reviewForm textarea {
  resize: vertical;
}

/* Focus state */
#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

/* Submit Button */
#reviewForm .btn-primary {
  margin-top: 10px;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  align-self: flex-start;
}

/* Success Message */
#reviewMsg {
  font-size: 0.95rem;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  #reviewForm {
    padding: 20px;
  }

  #reviewForm .btn-primary {
    width: 100%;
    align-self: stretch;
  }
}

.logo {
  height: 50px; /* adjust as needed */
  width: auto;
}
/* =========================
   ABOUT — HEADER TEXT
========================= */

.about-hero{
  width: min(1000px, 92%);
  margin: 40px auto 20px;
  text-align: left;
}

.about-hero h1{
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.about-hero .subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* body text */
.about-hero p{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
  max-width: 900px;
  margin-bottom: 14px;
}

.about-hero strong{
  color: inherit;
}



/* =========================
   Company Mission Section
========================= */

.about-section {
  background: var(--card);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 35px auto;
}

.about-section h2 {
  color: var(--accent);
  margin-bottom: 12px;
}

.about-section p {
  color: var(--muted);
  line-height: 1.7;
}


/* =========================
   TEAM SECTION — FINAL
========================= */

.team-section{
  width: min(1100px, 92%);
  margin: 50px auto;
}

/* Title */
.team-title{
  text-align:center;
  font-size:28px;
  color:var(--accent);
  margin-bottom:28px;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

/* CARD */
.team-card{
  background:var(--card);
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:26px 20px;
  text-align:center;
  transition:.3s;
}

.team-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.team-photo{
  width:220px;
  height:240px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:18px;
  border:4px solid var(--accent);
}

/* NAME */
.team-card h3{
  color:var(--accent);
  font-size:18px;
  margin-bottom:10px;
}

/* ROLE TEXT */
.designation{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  max-width:260px;
  margin:0 auto 18px;
}

/* BUTTON */
.team-btn{
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:10px 22px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.team-btn:hover{
  opacity:.9;
}


/* =========================
   Values Boxes
========================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 20px;
  margin-top: 25px;
}

.value-box {
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
  transition: 0.3s;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box h4 {
  color: var(--accent);
  margin-bottom: 8px;
}

.value-box p {
  color: var(--muted);
}


/* =========================
   Responsive
========================= */

@media(max-width:768px){

  .about-hero h1 {
    font-size: 1.6rem;
  }

  .team-grid,
  .values-grid {
    gap: 15px;
  }

  .about-section {
    padding: 20px;
  }
}
/* Our Story Card */
.story-card {
  background: var(--card);
  max-width: 1100px;
  margin: 25px auto;
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

/* Title */
.story-card h2 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* Description text */
.story-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 900px;
}
@media(max-width:768px){
  .about-hero h1{
    font-size: 1.8rem;
  }
}

@media(max-width:768px){
  .profile-card img{
    width:190px;
    height:210px;
  }
}
@media(max-width:768px){
  .team-photo{
    width:190px;
    height:210px;
  }
}
