/* ============================= */
/* 🌐 CARDLINE PRIVATE LIMITED - FULL WEBSITE CSS */
/* ============================= */

/* ---------- Root Theme ---------- */
:root {
  --bg: #070923;
  --panel: #0b123a;
  --muted: #aeb6d6;
  --accent: #4c8fff;
  --card: rgba(255, 255, 255, 0.04);
  --glass: rgba(255, 255, 255, 0.05);
}

/* ---------- Global Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  z-index: 999;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #2b6efb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(76, 143, 255, 0.12);
}

.header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  opacity: 0.95;
  transition: color 0.3s;
}

.header nav a:hover {
  color: var(--accent);
}

/* ---------- Container ---------- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 28px 80px;
}

/* ---------- Hero Section ---------- */
.hero {
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(0deg, rgba(10, 15, 50, 0.65), rgba(10, 15, 50, 0.65)),
    url("https://images.unsplash.com/photo-1526378723699-9d1d6f0a7b2d?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.6);
}

.hero h5 {
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1.05;
}

.hero p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 28px;
}

/* ---------- Buttons ---------- */
.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 28px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #357fff;
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Section Titles ---------- */
.section-title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

/* ---------- Services Cards ---------- */
.services {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 26px;
  max-width: 320px;
  text-align: center;
  transition: all 0.35s;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
}

.card:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.card img {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff08, #ffffff02);
  padding: 8px;
}

/* ---------- About Section ---------- */
.about-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
  background: var(--glass);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.about-block p {
  color: var(--muted);
  line-height: 1.8;
}

/* ---------- Let's Connect Section ---------- */
.connect-section {
  background: linear-gradient(to bottom, #0b1120, #030818);
  text-align: center;
  padding: 70px 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.connect-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.connect-section p {
  color: #cbd5e1;
  margin-bottom: 10px;
}

.connect-section .connect-details p {
  margin: 4px 0;
  font-size: 1rem;
}

.connect-section .contact-btn {
  display: inline-block;
  margin-top: 18px;
  background: #3b82f6;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.connect-section .contact-btn:hover {
  background: #60a5fa;
}

/* ---------- Footer (Fixed & Clean) ---------- */
.footer {
  background: transparent; /* No dark bar under footer */
  color: #d1d1e0;
  padding: 70px 0 25px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  padding: 0 40px;
}

.footer-column {
  flex: 1 1 260px;
  min-width: 240px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-column p {
  color: #aeb6d6;
  margin: 6px 0;
  line-height: 1.8;
}

.footer-column a {
  color: #4c8fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #aeb6d6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #4c8fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  color: #AEB6D6; /* 👈 Pink color for copyright text */
  font-size: 0.85rem;
  width: 100%;
  background: transparent;
}

/* Email link color fix */
.footer .footer-column a[href^="mailto:"] {
  color: #AEB6D6 !important;
  font-weight: 500;
  text-decoration: none;
}

.footer .footer-column a[href^="mailto:"]:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header {
    padding: 12px 20px;
  }

  .container {
    padding: 100px 18px 60px;
  }

  .hero {
    height: 62vh;
    padding: 28px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .connect-section {
    padding: 50px 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .services {
    gap: 16px;
  }

  .card {
    max-width: 100%;
  }
}


/* ---------- About Page Enhancement ---------- */
.about-block {
  max-width: 1000px; /* Thoda wide */
  padding: 60px; /* Zyada inner spacing */
  margin-top: 60px; /* Top se gap */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.about-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #4c8fff;
}

.about-block p,
.about-block li {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.9;
}

/* Team Section thoda bada aur spacious */
.team-section {
  margin-top: 80px;
}

.team-section h2 {
  margin-bottom: 30px;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 24px;
  width: 280px; /* Thoda bada */
  transition: transform 0.3s ease, background 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.team-member h4 {
  margin-top: 12px;
  font-size: 1.05rem;
}

.team-member p {
  color: #aeb6d6;
  font-size: 0.95rem;
}

