  /* ===== Variables & Base Styles ===== */
      :root {
        --primary: #d9b4b4;
        --secondary: #0066cc;
        --text: #333;
        --light: #f8f9fa;
        --white: #ffffff;
        --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Open Sans", sans-serif;
        line-height: 1.6;
        color: var(--text);
        padding-top: 80px;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
      }

      .section {
        padding: 4rem 0;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
      }

      .btn {
        display: inline-block;
        background: var(--secondary);
        color: var(--white);
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
      }

      .btn:hover {
        background: #004d99;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      /* ===== Navigation ===== */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--primary);
        box-shadow: var(--shadow);
        z-index: 1000;
        padding: 1rem 0;
      }

      .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo img {
        height: 50px;
        transition: transform 0.3s;
      }

      .logo img:hover {
        transform: scale(1.1);
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 1.5rem;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: var(--secondary);
      }

      .social-icon {
        font-size: 1.2rem;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* ===== About Section ===== */
      .about {
        background: var(--light);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 3rem;
      }

      .profile-img {
        border-radius: 50%;
        width: 300px;
        height: 300px;
        object-fit: cover;
        border: 2px solid var(--white);
        box-shadow: var(--shadow);
        transition: transform 0.3s;
      }

      .profile-img:hover {
        transform: scale(1.05);
      }

      .about-text {
        flex: 1;
      }

      .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      .about-text p {
        margin-bottom: 1rem;
      }

      /* ===== Skills Section ===== */
      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .skill-card {
        background: var(--white);
        border-radius: 8px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
      }

      .skill-card:hover {
        transform: translateY(-5px);
      }

      .skill-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
      }
      /* ===== Skills Section ===== */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .skill-card {
      background: var(--white);
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .skill-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .skill-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    /* ===== Responsive Adjustments ===== */

    /* Medium tablets (768px) */
    @media (max-width: 768px) {
      .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
      
      .skill-card {
        padding: 1.2rem;
      }
      
      .skill-icon {
        font-size: 2.5rem;
      }
    }

    /* Small mobile devices (480px) */
    @media (max-width: 480px) {
      .skills-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .skill-card {
        padding: 1rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
      }
      
      .skill-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
      }
    }

    /* Very small devices (360px and below) */
    @media (max-width: 360px) {
      .skill-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
      }
    }

      /* ===== Newsletter ===== */
      .newsletter {
        background: var(--light);
        text-align: center;
      }

      .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
      }

      .newsletter input {
        width: 100%;
        padding: 0.8rem;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
      }

      /* ===== Social Links ===== */
      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
      }

      .social-links a {
        color: var(--text);
        font-size: 1.5rem;
        transition: color 0.3s;
      }

      .social-links a:hover {
        color: var(--secondary);
      }

      /* ===== Footer ===== */
      .footer {
        background: var(--primary);
        padding: 2rem 0;
        text-align: center;
      }

      .footer-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        list-style: none;
        gap: 1.5rem;
        margin-bottom: 1rem;
      }

      .footer-links a {
        text-decoration: none;
        color: var(--text);
      }

      /* ===== Responsive Styles ===== */
      @media (max-width: 992px) {
        .about-content {
          flex-direction: column;
          text-align: center;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .mobile-menu-btn {
          display: block;
        }

        .profile-img {
          width: 250px;
          height: 250px;
        }
      }