
:root {
    --accent:#2563eb;
    --accent-light:#ebf2ff;
    --dark:#0f172a;
    --muted:#64748b;
    --radius:14px;
    --max:1200px;
  }
  
  body {
    margin:0;
    font-family:'Inter', sans-serif;
    background:#ffffff;
    color:var(--dark);
    overflow-x:hidden;
  }
  
  /* HEADER */
  header {
    position:sticky;
    top:0;
    z-index:100;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    box-shadow:0px 2px 8px rgba(0,0,0,0.03);
  }
  .logo a img{max-height: 35px;}

p{
line-height: 25px;
}

ul{
  line-height: 27px;
}

  .nav-wrap {
    max-width:var(--max);
    margin:0 auto;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo {
    font-size:24px;
    font-weight:700;
    color:var(--accent);
  }
  nav a {
    margin-left:22px;
    font-weight:500;
    color:var(--dark);
    text-decoration:none;line-height: 39px;
  }
  nav a:hover { color:var(--accent); }
  
  .hamburger {
    display:none;
    cursor:pointer;
    font-size:26px;
    color:var(--dark);
  }
  
  /* === DRAWER MENU === */
  .drawer-overlay {
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(2px);
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    z-index:98;
  }
  
  .drawer-overlay.show {
    opacity:1;
    visibility:visible;
  }
  
  .drawer {
    position:fixed;
    top:0;left:0;
    width:260px;
    height:100%;
    background:#fff;
    box-shadow:2px 0 12px rgba(0,0,0,0.15);
    transform:translateX(-100%);
    transition:0.32s ease;
    z-index:999;
    padding:20px;
    display:flex;
    flex-direction:column;
  }
  
  .drawer.open {
    transform:translateX(0);
  }
  
  .drawer a {
    padding:14px 0;
    font-size:17px;
    font-weight:500;
    border-bottom:1px solid #f1f5f9;
    color:var(--dark);
    text-decoration:none;
  }
  .drawer a:hover { color:var(--accent); }
  
  .drawer-close {
    font-size:24px;
    cursor:pointer;
    align-self:flex-end;
    margin-bottom:10px;
  }
  
  /* HERO */
  .hero {
    max-width:var(--max);
    margin:50px auto;
    padding:20px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
  }
  .hero-text { flex:1; }
  .hero h1 {
    font-size:42px;
    margin-bottom:10px;
    line-height:1.2;
  }
  .hero p {
    font-size:18px;
    color:var(--muted);
  }
  .hero-buttons {
    margin-top:18px;
    display:flex;
    gap:14px;
  }
  .btn-primary {
    background:var(--accent);
    color:#fff;
    padding:12px 20px;
    border-radius:var(--radius);
    text-decoration:none;
    font-weight:600;
  }
  .btn-outline {
    border:2px solid var(--accent);
    color:var(--accent);
    padding:12px 20px;
    border-radius:var(--radius);
    text-decoration:none;
    font-weight:600;
  }
  
  /* SECTIONS */
  .section {
    max-width:var(--max);
    margin:50px auto;
    padding:20px;
  }
  .section h2 {
    font-size:28px;
    margin-bottom:20px;
  }
  
  /* GRID SYSTEM */
  .grid {
    display:grid;
    gap:20px;
  }
  .grid-3 { grid-template-columns:repeat(3,1fr); }
  .grid-4 { grid-template-columns:repeat(4,1fr); }
  
  /* CARDS */
  .card {
    background:#fff;
    padding:20px;
    border-radius:var(--radius);
    border:1px solid #e7eef9;
    box-shadow:0px 4px 12px rgba(0,0,0,0.04);
    transition:0.2s;
  }
  .card:hover {
    transform:translateY(-4px);
    box-shadow:0px 6px 16px rgba(0,0,0,0.08);
  }
  .card h3 {
    margin-top:0;
  }
  .card p {
    color:var(--muted);
    font-size:15px;
  }
  .card a {
    color:var(--accent);
    text-decoration:none;
    font-weight:600;
  }
  
  /* IDEA BOXES */
  .idea-box {
    padding:20px;
    background:var(--accent-light);
    border-radius:var(--radius);
    font-weight:600;
    text-align:center;
  }
  
  /* BLOG GRID */
  .blog-card {
    border-radius:var(--radius);
    overflow:hidden;
    background:#fff;
    border:1px solid #e7eef9;
    box-shadow:0px 4px 12px rgba(0,0,0,0.04);
  }
  .blog-card img {
    width:100%;
    height:170px;
    object-fit:cover;
  }
  .blog-card .inner {
    padding:16px;
  }
  .blog-card h3 {
    margin:0;
  }
  .blog-card p {
    color:var(--muted);
    font-size:15px;
  }
  
  /* FOOTER */
  footer {
    background:#0f172a;
    color:#cbd5e1;
    margin-top:60px;
    padding:40px 20px;
  }
  .footer-wrap {
    max-width:var(--max);
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
  }
  footer a {
    color:#e2e8f0;
    text-decoration:none;line-height: 35px;
  }
  footer a:hover { text-decoration:underline; }
  
  /* Skeleton Loader Base */
  .skeleton {
      animation: pulse 1.6s infinite ease-in-out;
      background: #e3e3e3;
      border-radius: 6px;
  }
  
  /* Header Skeleton Layout */
  .header-skeleton {
      display: flex;
      justify-content: space-between;
      padding: 22px 20px;
      background: #fff;
  }
  
  .skeleton-logo {
      width: 120px;
      height: 32px;
      background: #e3e3e3;
      border-radius: 6px;
      animation: pulse 1.6s infinite ease-in-out;
  }
  
  .skeleton-nav {
      width: 180px;
      height: 32px;
      background: #e3e3e3;
      border-radius: 6px;
      animation: pulse 1.6s infinite ease-in-out;
  }
  
  /* Footer Skeleton */
  .footer-skeleton {
      padding: 25px;
      background: #fff;
  }
  
  .skeleton-line {
      width: 100%;
      height: 16px;
      background: #e3e3e3;
      border-radius: 6px;
      animation: pulse 1.6s infinite ease-in-out;
  }
  
  .skeleton-line.small {
      width: 60%;
      margin-top: 10px;
  }
  
  /* Pulse animation */
  @keyframes pulse {
      0% { opacity: 0.55; }
      50% { opacity: 1; }
      100% { opacity: 0.55; }
  }
  
  
  
  
  @media(max-width:900px){
    .grid-3 { grid-template-columns:repeat(2,1fr); }
    .grid-4 { grid-template-columns:repeat(2,1fr); }
  }
  @media(max-width:700px){
    nav { display:none; }
    .hamburger { display:block; }
  }
  @media(max-width:600px){
    .hero h1 { font-size:32px; }
    .grid-3,.grid-4 { grid-template-columns:1fr; }
  }

  @media (max-width: 991px) {
    .logo a img{max-height: 25px;}

  }