/* ======================= */
    /* GLOBAL STYLES */
    /* ======================= */
    :root {
      --bg-1: #071033;
      --bg-2: #081a36;
      --accent: #ff4d7e;
      --accent-2: #0ea5e9;
      --card: rgba(255, 255, 255, 0.03);
      --glass: rgba(255, 255, 255, 0.04);
      --text: #eef7ff;
      --muted: #a9cbe8a6;
      --radius: 14px;
      --maxw: 100%;
      --side-padding: 5vw;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
      background: radial-gradient(800px 400px at 10% 10%, rgba(14, 165, 233, 0.06), transparent 6%),
        radial-gradient(700px 300px at 90% 85%, rgba(255, 77, 126, 0.05), transparent 6%),
        linear-gradient(180deg, var(--bg-1), var(--bg-2));
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      justify-content: center;
      padding: 0;
      transition: background 0.5s ease, color 0.5s ease;
      position: relative;
    }

    /* Dark Mode Variables */
    body.dark-mode {
      --bg-1: #0f172a;
      --bg-2: #1e293b;
      --text: #f1f5f9;
      --muted: #94a3b8;
      --card: rgba(255, 255, 255, 0.05);
      --glass: rgba(255, 255, 255, 0.06);
      background: radial-gradient(800px 400px at 10% 10%, rgba(14, 165, 233, 0.1), transparent 6%),
        radial-gradient(700px 300px at 90% 85%, rgba(255, 77, 126, 0.08), transparent 6%),
        linear-gradient(180deg, var(--bg-1), var(--bg-2));
    }

    /* ======================= */
    /* WIDE PAGE CONTAINER */
    /* ======================= */
    .wide-page {
      width: 100%;
      max-width: var(--maxw);
      padding: 0;
      margin: 0;
    }

    /* ======================= */
    /* WIDE HEADER */
    /* ======================= */
    .wide-header {
      width: 100%;
      background-color: var(--bg-2);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 20px rgba(2, 6, 23, 0.3);
      padding: 15px var(--side-padding);
    }

    .header-container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Brand section - single line */
    .wide-brand {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-shrink: 0;
      min-width: 300px;
      flex: 1;
    }

    .wide-logo {
      width: 52px;
      height: 52px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid rgba(255, 255, 255, 0.08);
      flex-shrink: 0;
    }

    .wide-brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1.2;
    }

    .wide-brand-text h1 {
      margin: 0 !important;
      font-size: 22px !important;
      font-weight: 700 !important;
      white-space: nowrap !important;
      color: var(--text) !important;
    }

    /* Single line for Web Developer • SEO • Digital Ads • Graphics */
    .wide-brand-text .wide-muted {
      color: var(--muted) !important;
      font-size: 14px !important;
      margin-top: 2px !important;
      white-space: nowrap !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
    }

    /* Add bullet separator */
    .wide-brand-text .wide-muted::before {
      content: "•";
      color: var(--accent-2);
      margin-right: 4px;
    }

    .wide-brand-text .wide-muted::after {
      content: "•";
      color: var(--accent-2);
      margin-left: 4px;
    }

    /* Navigation - single line */
    .wide-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: nowrap;
      justify-content: flex-end;
      flex: 2;
      min-width: 0;
    }

    .wide-nav-links {
      display: flex !important;
      gap: 8px !important;
      flex-wrap: nowrap !important;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
      flex: 1;
      justify-content: flex-end;
    }

    .wide-nav-links li {
      display: flex;
      align-items: center;
    }

    .wide-nav-links a {
      text-decoration: none;
      color: var(--text);
      padding: 10px 16px !important;
      font-size: 14px !important;
      white-space: nowrap !important;
      font-weight: 600 !important;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .wide-nav-links a:hover {
      background: rgba(255, 255, 255, 0.08) !important;
      transform: translateY(-1px) !important;
    }

    /* Hire button */
    .wide-hire {
      padding: 10px 18px !important;
      font-size: 14px !important;
      white-space: nowrap !important;
      margin-left: 8px !important;
      border-radius: 12px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .wide-hire:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(255, 77, 126, 0.3) !important;
    }

    /* Dropdown buttons - inline styling */
    .wide-projects-btn {
      padding: 10px 16px !important;
      font-size: 14px !important;
      white-space: nowrap !important;
      min-width: auto !important;
      margin: 0 4px !important;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
      text-align: left;
    }

    .wide-projects-btn:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
      background: rgba(255, 255, 255, 0.1);
    }

    /* Theme toggle */
    .wide-theme-toggle {
      width: 44px !important;
      height: 44px !important;
      font-size: 18px !important;
      margin-left: 8px !important;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      color: var(--text);
      padding: 10px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .wide-theme-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(15deg);
    }

    /* Hamburger (hidden on desktop) */
    .wide-hamburger {
      display: none;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      width: 46px;
      height: 46px;
      background: transparent;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      flex-direction: column;
      padding: 0;
      position: relative;
      z-index: 1001;
    }

    .wide-hamburger:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .wide-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      margin: 3px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .wide-hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .wide-hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .wide-hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Dropdown Styles */
    .wide-projects-dropdown {
      position: relative;
      display: inline-block;
    }

    .wide-dropdown-content {
      display: none;
      position: absolute !important;
      top: 100% !important;
      left: auto !important;
      right: 0 !important;
      background: rgba(15, 23, 42, 0.98) !important;
      backdrop-filter: blur(10px);
      min-width: 240px !important;
      max-width: 280px !important;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
      border-radius: 12px;
      z-index: 99999 !important;
      overflow: visible !important;
      margin-top: 8px !important;
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-height: 500px;
      overflow-y: auto;
    }

    .wide-dropdown-content.show {
      display: block !important;
      animation: fadeInDown 0.3s ease !important;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .wide-dropdown-item {
      padding: 12px 20px !important;
      text-decoration: none;
      display: block;
      color: #e2e8f0 !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.2s ease;
      font-size: 14px;
      position: relative;
      z-index: 99999;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .wide-dropdown-item:hover {
      background: rgba(59, 130, 246, 0.25) !important;
      color: #93c5fd !important;
      padding-left: 25px !important;
    }

    .wide-dropdown-item i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }

    .wide-dropdown-category {
      padding: 10px 20px !important;
      font-weight: bold;
      color: #60a5fa !important;
      background: rgba(30, 64, 175, 0.25) !important;
      border-bottom: 1px solid rgba(59, 130, 246, 0.3);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: sticky;
      top: 0;
      z-index: 1;
    }
.wide-dropdown-content {
      display: none;
      position: absolute !important;
      top: 100% !important;
      left: auto !important;
      right: 0 !important;
      background: rgba(15, 23, 42, 0.98) !important;
      backdrop-filter: blur(10px);
      min-width: 240px !important;
      max-width: 280px !important;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
      border-radius: 12px;
      z-index: 99999 !important;
      overflow: visible !important;
      margin-top: 8px !important;
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-height: 500px;
      overflow-y: auto;
    }

    .wide-dropdown-content.show {
      display: block !important;
      animation: fadeInDown 0.3s ease !important;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .wide-dropdown-item {
      padding: 12px 20px !important;
      text-decoration: none;
      display: block;
      color: #e2e8f0 !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.2s ease;
      font-size: 14px;
      position: relative;
      z-index: 99999;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .wide-dropdown-item:hover {
      background: rgba(59, 130, 246, 0.25) !important;
      color: #93c5fd !important;
      padding-left: 25px !important;
    }

    .wide-dropdown-item i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }

    .wide-dropdown-category {
      padding: 10px 20px !important;
      font-weight: bold;
      color: #60a5fa !important;
      background: rgba(30, 64, 175, 0.25) !important;
      border-bottom: 1px solid rgba(59, 130, 246, 0.3);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: sticky;
      top: 0;
      z-index: 1;
    }


    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .wide-projects-btn i {
      transition: transform 0.3s ease;
    }

    .wide-projects-btn.active i {
      transform: rotate(180deg);
    }

    /* ======================= */
    /* WIDE MAIN CONTENT */
    /* ======================= */
    .wide-main {
      width: 100%;
      padding: 40px var(--side-padding);
      margin: 0 auto;
    }

    /* Hero Section */
    .wide-hero {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 60px;
      width: 100%;
    }

    .wide-hero-left {
      width: 100%;
    }

    .wide-pill {
      display: inline-flex;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid rgba(14, 165, 233, 0.12);
      background: linear-gradient(90deg, rgba(14, 165, 233, 0.06), rgba(255, 107, 107, 0.02));
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 14px;
    }

    .wide-hero h2 {
      margin: 0 0 15px 0;
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
    }

    .wide-hero h2 small {
      font-size: 20px;
      font-weight: 400;
      color: var(--muted);
      display: block;
      margin-top: 10px;
    }

    .wide-accent {
      color: var(--accent);
      width: 0;
      overflow: hidden;
      border-right: 3px solid #ff8a8a;
      white-space: nowrap;
      animation: typing 3s steps(14, end), blink .75s step-end infinite;
      display: inline-block;
      animation-iteration-count: infinite;
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 5ch; }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    .wide-lead {
      margin: 0 0 25px 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
      max-width: 90%;
    }

    .wide-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .wide-btn {
      padding: 14px 24px;
      border-radius: 12px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      font-weight: 600;
      font-size: 16px;
    }

    .wide-primary {
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      color: white;
      border: none;
    }

    .wide-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 77, 126, 0.3);
    }

    .wide-ghost {
      border: 1px dashed rgba(255, 255, 255, 0.06);
      background: transparent;
      color: var(--text);
    }

    .wide-ghost:hover {
      background: rgba(255, 255, 255, 0.03);
      transform: translateY(-2px);
    }

    /* KPI Stats */
    .wide-kpis {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      margin-top: 40px;
    }

    .wide-kpi {
      background: rgba(255, 255, 255, 0.02);
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      border: 1px solid rgba(14, 165, 233, 0.03);
      transition: all 0.3s ease;
    }

    .wide-kpi:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(14, 165, 233, 0.1);
    }

    .wide-kpi strong {
      display: block;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--accent-2);
    }

    .wide-kpi span {
      color: var(--muted);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Hero Right - Profile Card */
    .wide-hero-right {
      width: 100%;
    }

    .wide-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
      border-radius: 20px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.03);
      box-shadow: 0 15px 40px rgba(2, 6, 23, 0.6);
      transition: all 0.3s ease;
      width: 100%;
    }

    body.dark-mode .wide-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .wide-profile-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .wide-profile-photo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      border: 4px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 20px;
    }

    .wide-profile-meta h3 {
      margin: 0 0 8px 0;
      font-size: 24px;
    }

    .wide-profile-meta .wide-muted {
      color: var(--muted);
      margin-bottom: 15px;
      font-size: 16px;
    }

    .wide-socials {
      display: flex;
      gap: 15px;
      margin-top: 15px;
      justify-content: center;
    }

    .wide-socials a {
      text-decoration: none;
      color: var(--accent-2);
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(14, 165, 233, 0.1);
      transition: all 0.3s ease;
    }

    .wide-socials a:hover {
      background: rgba(14, 165, 233, 0.2);
      transform: translateY(-2px);
    }

    /* ======================= */
    /* WIDE SECTIONS */
    /* ======================= */
    .wide-section {
      margin-bottom: 80px;
      width: 100%;
    }

    .wide-section-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .wide-section-head h3 {
      font-size: 36px;
      margin-bottom: 10px;
      color: var(--text);
    }

    .wide-section-head .wide-muted {
      font-size: 18px;
      color: var(--muted);
    }

    /* About Section */
    .wide-about-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 40px;
      align-items: start;
    }

    .wide-about-grid h4 {
      font-size: 28px;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .wide-about-grid p {
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 17px;
    }

    .wide-about-grid ul {
      list-style: none;
      margin: 20px 0;
      padding: 0;
    }

    .wide-about-grid li {
      color: var(--muted);
      margin-bottom: 10px;
      font-size: 17px;
      position: relative;
      padding-left: 25px;
    }

    .wide-about-grid li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: bold;
    }

    .wide-about-cta {
      background: rgba(255, 255, 255, 0.02);
      border-radius: 16px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }

    .wide-available {
      background: linear-gradient(90deg, #25d366, #1ed760);
      color: white;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      margin-bottom: 20px;
      display: inline-block;
      font-size: 14px;
    }

    /* Services Section */
    .wide-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .wide-service {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
      padding: 30px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.03);
      transition: all 0.3s ease;
      height: 100%;
    }

    .wide-service:hover {
      transform: translateY(-8px);
      border-color: rgba(14, 165, 233, 0.2);
      box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1);
    }

    body.dark-mode .wide-service {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    }

    .wide-service h4 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--text);
    }

    .wide-service p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 16px;
    }

    /* Portfolio Section */
    .wide-portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .wide-work {
      height: 300px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.03);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .wide-work:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .wide-work::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
      opacity: 0;
      transition: all 0.3s;
    }

    .wide-work:hover::after {
      opacity: 1;
    }

    .wide-work .wide-work-info {
      position: absolute;
      left: 20px;
      bottom: 20px;
      color: white;
      z-index: 2;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .wide-work:hover .wide-work-info {
      opacity: 1;
      transform: translateY(0);
    }

    .wide-work-info strong {
      display: block;
      font-size: 20px;
      margin-bottom: 5px;
    }

    .wide-work-info small {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
    }

    /* Testimonials Section */
    .wide-test-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .wide-test {
      background: rgba(255, 255, 255, 0.02);
      padding: 30px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .wide-test:hover {
      transform: translateY(-5px);
      border-color: rgba(14, 165, 233, 0.2);
    }

    body.dark-mode .wide-test {
      background: rgba(255, 255, 255, 0.03);
    }

    .wide-test p {
      font-size: 18px;
      font-style: italic;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .wide-who {
      font-weight: 600;
      color: var(--accent-2);
      font-size: 16px;
    }

    /* Contact Section */
    .wide-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .wide-contact-form {
      background: rgba(255, 255, 255, 0.02);
      border-radius: 16px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .wide-contact-form label {
      display: block;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 600;
    }

    .wide-contact-form input,
    .wide-contact-form textarea {
      width: 100%;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      outline: none;
      transition: all 0.3s ease;
      font-size: 16px;
      font-family: inherit;
      margin-bottom: 20px;
    }

    .wide-contact-form input:focus,
    .wide-contact-form textarea:focus {
      border-color: var(--accent-2);
      box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }

    .wide-contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .wide-form-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    /* Social Icons */
    .wide-contact-social {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .wide-social-icons {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .wide-social-icons a {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 24px;
      color: white;
    }

    .wide-social-icons a.fb {
      background-color: #1877f2;
    }

    .wide-social-icons a.wa {
      background-color: #25d366;
    }

    .wide-social-icons a.li {
      background-color: #0a66c2;
    }

    .wide-social-icons a:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Footer */
    .wide-footer {
      width: 100%;
      padding: 30px var(--side-padding);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.01);
    }

    .wide-footer a {
      color: var(--accent-2);
      text-decoration: none;
    }

    .wide-footer a:hover {
      text-decoration: underline;
    }

    /* ======================= */
    /* DROPDOWN BUTTON COLOR FIX */
    /* ======================= */

    /* My Market Button - Deep Blue */
    #wideProjectsBtn {
      background: linear-gradient(135deg, #1e293b, #334155) !important;
      color: white !important;
      border: none !important;
      box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3) !important;
      transition: all 0.3s ease !important;
      position: relative;
      overflow: hidden;
      font-weight: 600 !important;
      font-size: 14px !important;
      padding: 10px 18px !important;
      border-radius: 10px !important;
      min-width: 140px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 5px;
    }

    #wideProjectsBtn:hover {
      background: linear-gradient(135deg, #0f172a, #1e293b) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4) !important;
    }

    /* My HTML Projects Button - Dark Blue */
    #wideHtmlProjectsBtn {
      background: linear-gradient(135deg, #1e293b, #334155) !important;
      color: white !important;
      border: none !important;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
      transition: all 0.3s ease !important;
      position: relative;
      overflow: hidden;
      font-weight: 600 !important;
      font-size: 14px !important;
      padding: 10px 18px !important;
      border-radius: 10px !important;
      min-width: 160px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 5px;
    }

    #wideHtmlProjectsBtn:hover {
      background: linear-gradient(135deg, #0f172a, #1e293b) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4) !important;
    }

    /* Active state */
    .wide-projects-btn.active {
      transform: translateY(0) !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }

    /* Button shine effect */
    .wide-projects-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.7s ease;
    }

    .wide-projects-btn:hover::after {
      left: 100%;
    }

    /* ======================= */
    /* RESPONSIVE DESIGN */
    /* ======================= */

    /* Large screens (1200px and up) */
    @media (max-width: 1400px) {
      :root {
        --side-padding: 4vw;
      }
      
      .wide-hero h2 {
        font-size: 36px;
      }
      
      .wide-kpis {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Medium screens (Tablet) */
    @media (max-width: 1024px) {
      :root {
        --side-padding: 3vw;
      }
      
      .wide-hero {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .wide-about-grid {
        grid-template-columns: 1fr;
      }
      
      .wide-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .wide-kpis {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 980px) {
      /* Header mobile view */
      .wide-header {
        padding: 12px 20px;
      }
      
      .wide-brand {
        min-width: auto;
        flex: 1;
      }
      
      .wide-brand-text h1 {
        font-size: 18px !important;
      }
      
      .wide-brand-text .wide-muted {
        font-size: 12px !important;
        display: block !important;
        margin-top: 3px !important;
      }
      
      .wide-brand-text .wide-muted::before,
      .wide-brand-text .wide-muted::after {
        display: none !important;
      }
      
      /* Mobile nav */
      .wide-nav {
        justify-content: flex-end;
      }
      
      .wide-nav-links {
        display: none !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-2);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 10px 30px rgba(2,6,23,0.9);
        z-index: 1000;
        margin: 0 20px;
        max-height: 70vh;
        overflow-y: auto;
      }

      .wide-nav-links.active {
        display: flex !important;
      }

      .wide-nav-links li {
        width: 100%;
      }

      .wide-nav-links a, .wide-projects-btn {
        display: block;
        padding: 14px 18px !important;
        border-radius: 10px;
        text-align: center;
        margin: 5px 0;
        width: 100%;
        font-size: 16px !important;
        justify-content: space-between;
      }

      .wide-hamburger {
        display: flex !important;
      }

      .wide-hire {
        display: none;
      }

      .wide-dropdown-content {
        position: static !important;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      
      /* Main content adjustments */
      .wide-main {
        padding: 30px 20px;
      }
      
      .wide-hero h2 {
        font-size: 32px;
      }
      
      .wide-hero h2 small {
        font-size: 18px;
      }
      
      .wide-kpis {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .wide-services-grid,
      .wide-portfolio-grid,
      .wide-test-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Small screens (Mobile) */
    @media (max-width: 640px) {
      :root {
        --side-padding: 15px;
      }
      
      .wide-header {
        padding: 10px 15px;
      }
      
      .wide-main {
        padding: 20px 15px;
      }
      
      .wide-hero h2 {
        font-size: 28px;
      }
      
      .wide-hero h2 small {
        font-size: 16px;
      }
      
      .wide-lead {
        font-size: 16px;
      }
      
      .wide-actions {
        flex-direction: column;
        width: 100%;
      }
      
      .wide-btn {
        width: 100%;
        justify-content: center;
      }
      
      .wide-kpis {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      
      .wide-kpi {
        padding: 15px;
      }
      
      .wide-kpi strong {
        font-size: 28px;
      }
      
      .wide-section-head h3 {
        font-size: 28px;
      }
      
      .wide-form-buttons {
        flex-direction: column;
      }
      
      .wide-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 15px;
      }
    }

    /* ======================= */
    /* REVEAL ANIMATION */
    /* ======================= */
    .wide-reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s cubic-bezier(.2, .9, .2, 1);
    }

    .wide-reveal.show {
      opacity: 1;
      transform: none;
    }