* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --deep-navy: #0a1128;
        --navy-blue: #1e2749;
        --accent-cyan: #00d4ff;
        --accent-gold: #ffc857;
        --text-primary: #ffffff;
        --text-secondary: #b8c5d6;
        --card-bg: rgba(30, 39, 73, 0.5);
        --gradient-1: linear-gradient(135deg, #00d4ff 0%, #0088ff 100%);
        --gradient-2: linear-gradient(135deg, #ffc857 0%, #ff6b35 100%);
        --gradient-mesh:
          radial-gradient(
            at 20% 30%,
            rgba(0, 212, 255, 0.15) 0px,
            transparent 50%
          ),
          radial-gradient(
            at 80% 70%,
            rgba(255, 200, 87, 0.15) 0px,
            transparent 50%
          ),
          radial-gradient(
            at 50% 50%,
            rgba(0, 136, 255, 0.1) 0px,
            transparent 50%
          );
      }

      body {
        font-family: "Outfit", sans-serif;
        background: var(--deep-navy);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
      }

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-mesh);
        z-index: -1;
      }

      /* Navigation */
      nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.85);
        backdrop-filter: blur(20px);
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.6s ease-out;
      }

      @keyframes slideDown {
        from {
          transform: translateY(-100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      nav .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.2rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        font-weight: 900;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 3rem;
      }

      .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
        transition: color 0.3s ease;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-1);
        transition: width 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--text-primary);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
      }

      .menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
      }

      .hero .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 4rem 2rem;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .hero-content {
        animation: fadeInLeft 1s ease-out;
      }

      @keyframes fadeInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .hero-label {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 50px;
        font-size: 0.9rem;
        color: var(--accent-cyan);
        margin-bottom: 2rem;
        animation: fadeIn 1s ease-out 0.3s both;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: 4rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        animation: fadeIn 1s ease-out 0.5s both;
      }

      .hero h1 .gradient-text {
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 600px;
        animation: fadeIn 1s ease-out 0.7s both;
      }

      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        animation: fadeIn 1s ease-out 0.9s both;
      }

      .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-block;
      }

      .btn-primary {
        background: var(--gradient-1);
        color: white;
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
      }

      .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 2px solid rgba(255, 255, 255, 0.2);
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-cyan);
      }

      .hero-image {
        position: relative;
        animation: fadeInRight 1s ease-out;
      }

      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .hero-image-wrapper {
        position: relative;
        border-radius: 30px;
        aspect-ratio: 4/5;
        background: var(--gradient-1);
        padding: 4px;
        perspective: 1000px;
        cursor: pointer;
      }

      .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s;
        transform-style: preserve-3d;
      }

      .hero-image-wrapper.flipped .flip-card-inner {
        transform: rotateY(180deg);
      }

      .flip-card-front,
      .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 28px;
        overflow: hidden;
      }

      .flip-card-front {
        background: var(--deep-navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6rem;
      }

      .flip-card-front::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(0, 212, 255, 0.1),
          transparent 30%
        );
        animation: rotate 10s linear infinite;
      }

      @keyframes rotate {
        to {
          transform: rotate(360deg);
        }
      }

      .flip-card-front span {
        position: relative;
        z-index: 1;
        animation: float-ufo 3s ease-in-out infinite;
      }

      @keyframes float-ufo {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(10deg);
        }
      }

      .flip-card-back {
        background: var(--deep-navy);
        transform: rotateY(180deg);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

      .flip-card-back::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 255, 0.2),
          rgba(255, 200, 87, 0.2)
        );
        opacity: 0.5;
      }

      .profile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
      }

      .flip-instruction {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        color: var(--accent-cyan);
        border: 1px solid rgba(0, 212, 255, 0.3);
        animation: pulse 2s ease-in-out infinite;
        z-index: 10;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: translateX(-50%) translateY(0);
        }
        50% {
          opacity: 0.7;
          transform: translateX(-50%) translateY(-5px);
        }
      }

      .hero-image-wrapper.flipped .flip-instruction {
        opacity: 0;
        pointer-events: none;
      }

      .floating-card {
        position: absolute;
        background: rgba(30, 39, 73, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1rem 1.5rem;
        animation: float 3s ease-in-out infinite;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      .card-1 {
        top: 10%;
        right: -10%;
        animation-delay: 0s;
      }

      .card-2 {
        bottom: 10%;
        left: -10%;
        animation-delay: 1.5s;
      }

      /* Section Styles */
      section {
        padding: 6rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-label {
        display: inline-block;
        padding: 0.4rem 1.2rem;
        background: rgba(255, 200, 87, 0.1);
        border: 1px solid rgba(255, 200, 87, 0.3);
        border-radius: 50px;
        font-size: 0.85rem;
        color: var(--accent-gold);
        margin-bottom: 1rem;
      }

      .section-title {
        font-family: "Playfair Display", serif;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
      }

      /* Education Section */
      .education-grid {
        display: grid;
        gap: 2rem;
      }

      .education-card {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s ease;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
        align-items: center;
      }

      .education-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-cyan);
        box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
      }

      .education-icon {
        width: 70px;
        height: 70px;
        border-radius: 15px;
        background: var(--gradient-1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        flex-shrink: 0;
      }

      .education-details h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }

      .education-details p {
        color: var(--text-secondary);
        margin-bottom: 0.3rem;
      }

      .education-meta {
        text-align: right;
        flex-shrink: 0;
      }

      .education-year {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--accent-cyan);
        margin-bottom: 0.5rem;
      }

      .education-grade {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(255, 200, 87, 0.1);
        border-radius: 10px;
        color: var(--accent-gold);
        font-weight: 600;
      }

      /* Skills Section */
      .skills-container {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
      }

      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
      }

      .skill-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .skill-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-1);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .skill-item:hover::before {
        opacity: 0.1;
      }

      .skill-item:hover {
        transform: translateY(-5px);
        border-color: var(--accent-cyan);
      }

      .skill-name {
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
      }

      /* Certifications */
      .certifications-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
      }

      .cert-card {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .cert-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-2);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .cert-card:hover {
        transform: translateX(10px);
        border-color: var(--accent-gold);
      }

      .cert-card:hover::before {
        opacity: 1;
      }

      .cert-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }

      .cert-card p {
        color: var(--text-secondary);
        font-size: 0.95rem;
      }

      /* Projects */
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
      }

      .project-card {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .project-card::after {
        content: "→";
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: var(--accent-cyan);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
      }

      .project-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-cyan);
        box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
      }

      .project-card:hover::after {
        opacity: 1;
        transform: translateX(0);
      }

      .project-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .project-card ul {
        list-style: none;
        margin-bottom: 1.5rem;
      }

      .project-card li {
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
        position: relative;
      }

      .project-card li::before {
        content: "▹";
        position: absolute;
        left: 0;
        color: var(--accent-cyan);
      }

      .project-link {
        color: var(--accent-cyan);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
      }

      /* Achievements */
      .achievements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }

      .achievement-card {
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
      }

      .achievement-card::before {
        content: "🏆";
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 3rem;
        opacity: 0;
        transition: all 0.3s ease;
      }

      .achievement-card:hover {
        transform: scale(1.05);
        border-color: var(--accent-gold);
        padding-top: 3rem;
      }

      .achievement-card:hover::before {
        opacity: 1;
        top: 1rem;
      }

      .achievement-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }

      .achievement-card p {
        color: var(--text-secondary);
        font-size: 0.95rem;
      }

      /* Contact Section */
      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 3rem;
      }

      .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-family: "Playfair Display", serif;
      }

      .contact-info p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.8;
      }

      .social-links {
        display: flex;
        gap: 1rem;
      }

      .social-link {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        transition: all 0.3s ease;
      }

      .social-link:hover {
        background: var(--gradient-1);
        transform: translateY(-5px);
      }

      .contact-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .form-group label {
        font-weight: 500;
        color: var(--text-secondary);
        font-size: 0.9rem;
      }

      .form-group input,
      .form-group textarea {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1rem;
        color: var(--text-primary);
        font-family: "Outfit", sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-cyan);
        background: rgba(255, 255, 255, 0.08);
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .submit-btn {
        padding: 1rem 2rem;
        background: var(--gradient-1);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
      }

      /* Footer */
      footer {
        background: var(--navy-blue);
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
      }

      .footer-text {
        color: var(--text-secondary);
        margin-bottom: 1rem;
      }

      .footer-love {
        color: var(--accent-gold);
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .hero .container {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .hero h1 {
          font-size: 3rem;
        }

        .section-title {
          font-size: 2.5rem;
        }

        .contact-container {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 70px;
          right: -100%;
          width: 70%;
          height: calc(100vh - 70px);
          background: rgba(10, 17, 40, 0.98);
          backdrop-filter: blur(20px);
          flex-direction: column;
          gap: 0;
          padding: 2rem;
          transition: right 0.3s ease;
          border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links.active {
          right: 0;
        }

        .nav-links a {
          padding: 1rem 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .menu-toggle {
          display: flex;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero p {
          font-size: 1rem;
        }

        .cta-buttons {
          flex-direction: column;
        }

        .education-card {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .education-meta {
          text-align: center;
        }

        .skills-grid {
          grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }

        section {
          padding: 4rem 1.5rem;
        }

        .section-title {
          font-size: 2rem;
        }
      }

      /* Scroll Animation */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }
    