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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #0a0a0a;
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated Background */
    .bg-animated {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    }

    .bg-animated::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      top: -250px;
      right: -250px;
      animation: float 20s ease-in-out infinite;
    }

    .bg-animated::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -200px;
      left: -200px;
      animation: float 15s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(50px, 50px) scale(1.1); }
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 6%;
      background: rgba(10, 10, 10, 0.916);
      backdrop-filter: blur(20px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .logo {
      display: flex;
      align-items: center;
      height: 60px;
    }

    .logo a {
      display: block;
      height: 100%;
      text-decoration: none;
    }

    .logo img {
      height: 100%;
      width: auto;
      object-fit: contain;
      transition: all 0.3s ease;
      filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.3));
    }

    .logo img:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.6));
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: rgb(255, 255, 255);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #4facfe, #00f2fe);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: #ffffff;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 8rem 6% 6rem;
      position: relative;
    }

    .hero-content {
      max-width: 900px;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-label {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(79, 172, 254, 0.1);
      border: 1px solid rgba(79, 172, 254, 0.3);
      border-radius: 30px;
      color: #4facfe;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    .hero h1 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff 0%, #4facfe 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 1s ease 0.4s backwards;
    }

    .hero p {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 3rem;
      line-height: 1.8;
      animation: fadeInUp 1s ease 0.6s backwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.8s backwards;
    }

    .btn {
      padding: 1.2rem 3rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.4s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-gradient {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      color: #0a0a0a;
      box-shadow: 0 10px 40px rgba(79, 172, 254, 0.3);
    }

    .btn-gradient:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(79, 172, 254, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline:hover {
      border-color: #4facfe;
      background: rgba(79, 172, 254, 0.1);
      transform: translateY(-3px);
    }

    /* Section Styles */
    section {
      padding: 6rem 6%;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      background: rgba(79, 172, 254, 0.1);
      border: 1px solid rgba(79, 172, 254, 0.3);
      border-radius: 20px;
      color: #4facfe;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 700px;
      margin: 0 auto;
    }

    /* About Section */
    .about-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .about-content p {
      font-size: 1.2rem;
      line-height: 2;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Skills Grid */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .skill-card {
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      transition: all 0.4s ease;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }

    .skill-card:hover {
      transform: translateY(-10px);
      background: rgba(79, 172, 254, 0.05);
      border-color: rgba(79, 172, 254, 0.3);
      box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
    }

    .skill-card h4 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      font-weight: 600;
    }

    .skill-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Projects Grid */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .project-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .project-card:hover {
      transform: translateY(-10px);
      border-color: rgba(79, 172, 254, 0.3);
      box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
    }

    .project-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.1);
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    }

    .project-content {
      padding: 2rem;
    }

    .project-content h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .project-content p {
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #4facfe;
      text-decoration: none;
      font-weight: 500;
      transition: gap 0.3s ease;
    }

    .project-link:hover {
      gap: 1rem;
    }

    /* Contact Section */
    .contact-content {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-content p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 3rem;
      line-height: 1.8;
    }

    /* Professional Footer */
    footer {
      background: rgba(255, 255, 255, 0.02);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 4rem 6% 2rem;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(255, 255, 255);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: rgba(79, 172, 254, 0.2);
      border-color: #4facfe;
      transform: translateY(-3px);
    }

    .footer-column h4 {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.8rem;
    }

    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #4facfe;
      padding-left: 5px;
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #4facfe;
    }
    .subscribe-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0077b5; /* LinkedIn Blue */
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

.subscribe-btn:hover {
  background-color: #005a8c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.4);
}

.subscribe-btn:active {
  transform: scale(0.97);
}

.footer-social {
  margin-bottom: 10px;
}

.footer-social a {
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
  color: #000;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #0077b5;
}

    /* Scroll to Top */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      border: none;
      border-radius: 50%;
      color: #0a0a0a;
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
      z-index: 1000;
    }

    .scroll-top.visible {
      opacity: 1;
      transform: scale(1);
    }

    .scroll-top:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 3rem;
      }

      .section-title {
        font-size: 2rem;
      }

      nav {
        gap: 1rem;
      }

      .projects-grid,
      .skills-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 1rem 4%;
      }

      .hero {
        padding: 6rem 4% 3rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
    }

    
    /* Utility Classes */
    .text-center {
        text-align: center;
    }
    .mb-2 {
        margin-bottom: 0.5rem;
    }
    .mb-4 {
        margin-bottom: 1rem;
    }
    .mb-6 {
        margin-bottom: 1.5rem;
    }
    .mt-2 {
        margin-top: 0.5rem;
    }
    .mt-4 {
        margin-top: 1rem;
    }
    .mt-6 {
        margin-top: 1.5rem;
    }
    .btn-full-width {
        width: 100%;
        text-align: center;
    }
    .hidden {
        display: none !important;
    }
    .visible {
        display: block !important;
    }
    .flex {
        display: flex !important;
    }
    .grid {
        display: grid !important;
    }
    .gap-2 {
        gap: 0.5rem !important;
    }
    .gap-4 {
        gap: 1rem !important;
    }
    .gap-6 {
        gap: 1.5rem !important;
    }
    .p-2 {
        padding: 0.5rem !important;
    }
    .p-4 {
        padding: 1rem !important;
    }