:root{
  --bg:#0b0b0e;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.08);
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(255,255,255,0.14);
 
  
}

/* Base */
*{ box-sizing:border-box; }
html,body{
  margin:0; 
  padding:0;
  width: 100%;  /* ✅ Added for proper width */
  background:
    radial-gradient(1000px 540px at 20% -10%, #14161d 0%, #0b0b0e 60%) fixed;
  color:var(--text);
  font:500 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,svg{ display:block; max-width:100%; height:auto; }
/* Hero - ✅ FIXED CENTERING */
.hero{ 
  padding: clamp(48px, 8vw, 120px) 24px;
  width: 100%;  /* ✅ Full width */
}
.hero__inner{
  max-width:1200px; 
  margin:0 auto;  /* ✅ Ye line centering ke liye zaroori hai */
  display:grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap:clamp(24px,5vw,56px); 
  align-items:center;
}
.hero__copy h1{
  margin:0 0 12px;
  font-size: clamp(28px, 3.2vw + 10px, 56px);
  letter-spacing:-0.02em;
  text-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.hero__copy p{ 
  color:var(--muted); 
  margin:0 0 24px; 
  max-width:52ch; 
}

.btn{
  display:inline-block; 
  padding:14px 22px; 
  border-radius:12px; 
  text-decoration:none; 
  font-weight:700;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  will-change: transform;
}

.btn--outline{
  background:transparent; 
  color:var(--text);
  border:1px solid var(--panel-border);
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.btn--outline:hover{ transform: translateY(-1px); }

.custom-btn {
  padding: 10px 20px;
  border: 2px solid #ffffff60;
  background: transparent;
  color: rgb(255, 255, 255);
  border-radius: 40px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  text-decoration: none;
}

.custom-btn .icon {
  background: #77c70f;
  color: white;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}

.custom-btn:hover {
  transform: translateY(-2px);
  border-color: #fff;
}

/* SVG presentation */
.hero__art{ position: relative; }

.logoSVG::before{
  content:""; 
  position:absolute; 
  inset:0; 
  border-radius:inherit; 
  pointer-events:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(0,0,0,.32);
}

/* Cards - ✅ FIXED CENTERING */
.cards{ 
  padding: clamp(24px, 6vw, 64px) 24px;
  width: 100%;  /* ✅ Added */
}
.cards__grid{
  max-width:1200px; 
  margin:0 auto;  /* ✅ Centering */
  display:grid; 
  gap:24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius:16px; 
  padding:24px;
  -webkit-backdrop-filter: saturate(130%) blur(8px);
  backdrop-filter: saturate(130%) blur(8px);
  box-shadow: var(--elev-2);
  position:relative;
}
.card::before{
  content:""; 
  position:absolute; 
  inset:0; 
  border-radius:inherit; 
  pointer-events:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -1px 0 rgba(0,0,0,.28);
}
.card h3{ margin:0 0 10px; font-size:clamp(18px, 1.2vw + 12px, 22px); }
.card p{ color:var(--muted); margin:0 0 14px; }
.card .link{ color:#9be7ff; text-decoration:none; }

/* Callout - ✅ FIXED CENTERING */
.callout{ 
  padding: clamp(24px, 7vw, 72px) 24px;
  width: 100%;  /* ✅ Added */
}
.callout__inner{
  max-width:1100px; 
  margin:0 auto;  /* ✅ Centering */
  display:grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap:32px; 
  align-items:center;
}

.logoTile {
  width: min(420px, 60vw);      /* large like your example */
  aspect-ratio: 1/1;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.logoTile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.22);
}

.callout__copy h2{
  margin:0 0 8px; 
  font-size:clamp(24px, 2.6vw + 10px, 40px);
  text-shadow: 0 10px 26px rgba(0,0,0,.4);
}
.callout__copy p{ color:var(--muted); margin:0 0 20px; }

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet View (768px and below) */
@media screen and (max-width: 768px) {

  /* Hero Section */
  .hero {
    padding: clamp(40px, 7vw, 80px) 20px;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero__copy h1 {
    font-size: clamp(24px, 5vw, 40px);
  }
  
  .hero__copy p {
    margin: 0 auto 24px;
  }
  
  .hero__art {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Cards */
  .cards__grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  /* Callout */
  .callout__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .logoTile {
    margin: 0 auto;
  }
}




/* Mobile View (480px and below) */
@media screen and (max-width: 480px) {

  /* Hero Section */
  .hero {
    padding: clamp(32px, 6vw, 64px) 16px;
  }
  
  .hero__inner {
    gap: 24px;
    margin: 0 auto;
  }
  
  .hero__copy h1 {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 8px;
  }
  
  .hero__copy p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .hero__art {
    max-width: 280px;
  }
  
  .custom-btn {
    width: 100%;
    justify-content: center;
  }

  /* Cards */
  .cards {
    padding: clamp(20px, 5vw, 48px) 16px;
  }

  /* Info Text */
  .info {
    font-size: 12px;
  }
}

/* Large Desktop (1200px and above) */
@media screen and (min-width: 1200px) {
  .hero__inner {
    gap: 64px;
  }
  
  .cards__grid {
    gap: 32px;
  }
  
  .callout__inner {
    gap: 48px;
  }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
  /* (Footer removed – no content left here) */
}
