* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
        font-family: "Poppins", sans-serif;
      }

      body {
        background-color: #0f172a;
        color: #f1f5f9;
      }

      /* Enhanced Navigation styles */
      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 40px;
        background: #1e293b;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }

      nav .logo {
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: bold;
        font-size: 1.5rem;
      }

      .logo-icon {
        position: relative;
        font-size: 2rem;
        color: #38bdf8;
      }

      .logo-icon .fa-cloud {
        margin-right: -5px;
      }

      .logo-cogs {
        position: absolute;
        font-size: 0.8rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #0f172a;
      }

      nav ul.nav-menu {
        display: flex;
        list-style: none;
        gap: 25px;
        align-items: center;
      }

      nav ul.nav-menu li a {
        color: #f1f5f9;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 8px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: inline-block;
      }

      nav ul.nav-menu li a:hover {
        background-color: #38bdf8;
        color: #0f172a;
        transform: translateY(-3px);
      }

      nav ul.nav-menu li a span {
        position: relative;
      }

      nav ul.nav-menu li a span::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #0f172a;
        transition: width 0.3s ease;
      }

      nav ul.nav-menu li a:hover span::after {
        width: 100%;
      }

      .hero {
        height: 90vh;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
        padding: 0 40px;
      }

      .hero-content {
        flex: 1;
        padding-right: 20px;
      }

      .hero-images {
        flex: 1;
        display: flex;
        justify-content: center;
        gap: 15px;
      }

      .hero-image-left,
      .hero-image-right {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #38bdf8;
      }

      .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
      }

      .cta-button {
        padding: 12px 24px;
        background: #38bdf8;
        color: #0f172a;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        display: inline-block;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
      }

      .section {
        padding: 80px 40px;
        max-width: 1200px;
        margin: auto;
      }

      .section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        padding-bottom: 15px;
      }

      .section h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #38bdf8;
        border-radius: 2px;
      }

      /* NEW SKILLS SECTION STYLES */
      .skills-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .skill-card {
        background: linear-gradient(145deg, #1e293b, #334155);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(56, 189, 248, 0.1);
        position: relative;
        overflow: hidden;
      }

      .skill-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(56, 189, 248, 0.1),
          transparent
        );
        transition: left 0.6s ease;
      }

      .skill-card:hover::before {
        left: 100%;
      }

      .skill-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(56, 189, 248, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(56, 189, 248, 0.3);
      }

      .skill-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: #38bdf8;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
      }

      .skill-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #38bdf8, #0ea5e9);
        border-radius: 2px;
        transition: width 0.3s ease;
      }

      .skill-card:hover .skill-title::after {
        width: 60px;
      }

      .skill-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        background: rgba(56, 189, 248, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        border: 2px solid rgba(56, 189, 248, 0.2);
        position: relative;
      }

      .skill-logo::after {
        content: "";
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, #38bdf8, #0ea5e9, #38bdf8);
        border-radius: 18px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .skill-card:hover .skill-logo::after {
        opacity: 1;
      }

      .skill-card:hover .skill-logo {
        transform: scale(1.1) rotate(5deg);
        background: rgba(56, 189, 248, 0.2);
        border-color: rgba(56, 189, 248, 0.4);
      }

      .skill-logo img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        transition: all 0.4s ease;
        filter: brightness(0.9);
      }

      .skill-card:hover .skill-logo img {
        filter: brightness(1.2) saturate(1.2);
        transform: scale(1.1);
      }

      /* Fallback icon for when image is not available */
      .skill-logo i {
        font-size: 3rem;
        color: #38bdf8;
        transition: all 0.4s ease;
      }

      .skill-card:hover .skill-logo i {
        color: #0ea5e9;
        transform: scale(1.2);
      }

      .skill-list {
        list-style: none;
        text-align: left;
        margin-top: 20px;
      }

      .skill-list li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: #cbd5e1;
        position: relative;
        padding-left: 25px;
        transition: all 0.3s ease;
        border-radius: 6px;
        margin-bottom: 5px;
      }

      .skill-list li::before {
        content: "▶";
        position: absolute;
        left: 0;
        color: #38bdf8;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        transform: scale(0.8);
      }

      .skill-list li:hover {
        color: #f1f5f9;
        padding-left: 30px;
        background: rgba(56, 189, 248, 0.1);
        padding-right: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
      }

      .skill-list li:hover::before {
        color: #0ea5e9;
        transform: scale(1) translateX(3px);
      }

      /* Enhanced Projects Section */
      .projects-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
      }

      .project {
        margin-bottom: 0;
        background: #1e293b;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .project:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
      }

      .project h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #38bdf8;
      }

      .project p {
        margin-bottom: 25px;
        flex-grow: 1;
      }

      .project-link {
        color: #38bdf8;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        transition: color 0.3s ease;
        align-self: flex-start;
        padding: 8px 0;
        border-bottom: 2px solid transparent;
      }

      .project-link:hover {
        color: #f1f5f9;
        border-bottom-color: #f1f5f9;
      }

      /* Certifications Section */
      .certifications-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
      }

      .certification {
        background: #1e293b;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 350px;
      }

      .certification:hover {
        transform: scale(1.05);
      }

      .certification i {
        font-size: 3rem;
        color: #38bdf8;
      }

      .certification h3 {
        font-size: 1.2rem;
      }

      /* Enhanced Contact Section */
      .contact-container {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        background: #1e293b;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      }

      .contact-info {
        padding: 40px;
        background-color: #38bdf8;
        color: #0f172a;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 20px;
      }

      .contact-info p {
        font-size: 1.1rem;
        line-height: 1.6;
      }

      .contact-form {
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .form-group label {
        font-weight: 600;
        font-size: 0.9rem;
        color: #38bdf8;
      }

      input,
      textarea {
        padding: 15px;
        border: none;
        border-radius: 8px;
        background-color: #2d3748;
        color: #f1f5f9;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 1px solid transparent;
      }

      input:focus,
      textarea:focus {
        outline: none;
        background-color: #374151;
        border-color: #38bdf8;
      }

      .submit-btn {
        background: #38bdf8;
        border: none;
        padding: 15px;
        font-size: 1rem;
        font-weight: bold;
        color: #0f172a;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        align-self: flex-start;
      }

      .submit-btn:hover {
        background-color: #0ea5e9;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(56, 189, 248, 0.3);
      }

      /* Enhanced Footer */
      footer {
        background: #1e293b;
        margin-top: 0;
        padding: 60px 40px 30px;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #38bdf8;
      }

      .contact-list {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }

      .contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background-color: #2d3748;
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .contact-list li:hover {
        background-color: #38bdf8;
        transform: translateY(-3px);
      }

      .contact-list li:hover a,
      .contact-list li:hover i {
        color: #0f172a;
      }

      .contact-list li i {
        color: #38bdf8;
        font-size: 1.2rem;
        transition: color 0.3s ease;
      }

      .contact-list li a {
        color: #f1f5f9;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #2d3748;
      }

      /* Responsive Adjustments */
      @media (max-width: 992px) {
        .contact-container {
          grid-template-columns: 1fr;
        }

        .hero {
          flex-direction: column-reverse;
          height: auto;
          padding: 80px 20px;
          text-align: center;
        }

        .hero-content {
          padding-right: 0;
          padding-top: 40px;
        }

        .skills-container {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
      }

      @media (max-width: 768px) {
        nav {
          flex-direction: column;
          padding: 20px;
        }

        nav .logo {
          margin-bottom: 15px;
        }

        nav ul.nav-menu {
          flex-wrap: wrap;
          justify-content: center;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .section {
          padding: 60px 20px;
        }

        .projects-container {
          grid-template-columns: 1fr;
        }

        .skills-container {
          grid-template-columns: 1fr;
        }

        .contact-list {
          flex-direction: column;
        }

        .contact-list li {
          width: 100%;
        }
      }

      /* Enhanced Projects Section */
      .projects-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
      }

      .project {
        margin-bottom: 0;
        background: linear-gradient(145deg, #1e293b, #334155);
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid rgba(56, 189, 248, 0.1);
        position: relative;
        overflow: hidden;
      }

      .project::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(56, 189, 248, 0.05),
          transparent
        );
        transition: left 0.6s ease;
      }

      .project:hover::before {
        left: 100%;
      }

      .project:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(56, 189, 248, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(56, 189, 248, 0.3);
      }

      .project-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #38bdf8, #0ea5e9);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.4s ease;
        position: relative;
      }

      .project-icon::after {
        content: "";
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, #38bdf8, #0ea5e9, #38bdf8);
        border-radius: 18px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .project:hover .project-icon::after {
        opacity: 1;
      }

      .project:hover .project-icon {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
      }

      .project-icon i {
        font-size: 2rem;
        color: #0f172a;
        transition: all 0.4s ease;
      }

      .project:hover .project-icon i {
        transform: scale(1.1);
      }

      .project h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        color: #38bdf8;
        font-weight: 700;
        transition: color 0.3s ease;
      }

      .project:hover h3 {
        color: #0ea5e9;
      }

      .project p {
        margin-bottom: 25px;
        flex-grow: 1;
        line-height: 1.6;
        color: #cbd5e1;
        font-size: 1rem;
      }

      .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
      }

      .tech-tag {
        background: rgba(56, 189, 248, 0.1);
        color: #38bdf8;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid rgba(56, 189, 248, 0.2);
        transition: all 0.3s ease;
      }

      .tech-tag:hover {
        background: rgba(56, 189, 248, 0.2);
        transform: translateY(-2px);
      }

      .project-link {
        color: #38bdf8;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        align-self: flex-start;
        padding: 12px 20px;
        border: 2px solid #38bdf8;
        border-radius: 8px;
        background: transparent;
        position: relative;
        overflow: hidden;
      }

      .project-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #38bdf8;
        transition: left 0.3s ease;
        z-index: -1;
      }

      .project-link:hover::before {
        left: 0;
      }

      .project-link:hover {
        color: #0f172a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
      }