/* ===============================
   GLOBAL RESET & VARIABLES
================================ */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap");

:root {
  --background-color: #ffffff;
  --text-color: #50347f;
  --text-hover: #8b87b5;
  --text-primary: #3c9bbd;
  --boxShadow-color: rgba(44, 14, 83, 0.3);
  --bg-gradient: linear-gradient(90deg, #e6e1ff, #e9f7f1);
  --glass-bg: rgba(255, 255, 255, 0.85);

  /* --- Advanced UI Variables --- */
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shine: rgba(255, 255, 255, 0.9);
  --blob-1: #3c9bbd;
  --blob-2: #8b87b5;
  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --font-main: "Outfit", sans-serif;

  /* Extracted Logo Colors */
  --logo-peach: #ffbe98;
  --logo-pink: #e068a0;
  --logo-purple: #6a4c9c;
  --logo-blue: #3098d6;

  /* The "Celestial" Gradient */
  --celestial-gradient: linear-gradient(
    90deg,
    var(--logo-peach),
    var(--logo-pink),
    var(--logo-purple),
    var(--logo-blue)
  );

  --bg-deep: #050507; /* Deepest black/blue */
  --bg-card: #0f0f14; /* Slightly lighter for contrast */
  --text-main: #ffffff;
  --text-muted: #a0a0b0;

  --color-1: #2ecc71; /* Green */
  --color-2: #34495e; /* Dark Blue */
  --color-3: #1abc9c; /* Teal */
  --color-4: #ff7675; /* Coral */
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-color: #f9fbfd;

  --container-padding: 24px 6%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-snap-align: center;
}

body {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  overflow-x: hidden;
}

.ip2026-section {
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ===============================
   Buttons css
================================ */
.ip2026-linkbuttons{
  width: 100%;
  display: flex;
}

/* Button */
.ip2026-linkbuttons a{
  width: 100%;
  text-decoration: none;
  text-align: center;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;

  color: var(--background-color);
  background: linear-gradient(135deg, var(--text-color), var(--text-hover));

  box-shadow: 0 10px 25px var(--boxShadow-color);

  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

/* Hover */
.ip2026-linkbuttons a:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 35px var(--boxShadow-color);

  background: linear-gradient(135deg, var(--text-hover), var(--text-color));
}

.ip2026-linkbuttons a::after{
  content: " →";
  font-size: 1.25rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.ip2026-linkbuttons a:hover::after{
  transform: translateX(6px);
}

.ip2026-portfolioButton{
  display: flex; 
  width: 100%; 
  justify-content: center;
  margin-top: 32px;
  padding: 0 5%;
}

/* ===============================
   UNIFIED SECTION HEADER (SERVICES + WHY US)
================================ */

.ip2026-unified-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 4rem;
  position: relative;
}

/* Small top badge */
.ip2026-unified-header .sub-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.65);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Main title */
.ip2026-unified-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  background: linear-gradient(45deg, var(--text-color), var(--text-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

/* Subtitle paragraph */
.ip2026-unified-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-hover);
}
