* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a0a;
    color: #f2f2f2;
    overflow-x: hidden;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.6rem;
    color: #00bfff;
    font-weight: bold;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00bfff;
    left: 0;
    bottom: -4px;
    transition: width 0.3s;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Burger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .burger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile Nav */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    z-index: 999;
  }
  .mobile-nav.active {
    left: 0;
  }
  .mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    font-size: 2rem;
  }
  .mobile-nav a {
    color: #00bfff;
    transition: color 0.3s;
  }
  .mobile-nav a:hover {
    color: #ffffff;
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; /* higher than .mobile-nav */
    position: relative; /* to enable z-index */
  }
  .mobile-nav {
    z-index: 999;
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: radial-gradient(ellipse at bottom, #0a0a0a 0%, #050505 100%);
  }
  .hero-content h1 {
    font-size: 3rem;
    color: #00bfff;
    text-shadow: 0 0 10px #00bfff;
    animation: fadeDown 1.2s ease-out;
  }
  .hero-content p {
    margin: 1.2rem 0;
    font-size: 1.2rem;
    opacity: 0.85;
  }
  .hero-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #00bfff;
    color: #000;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  .hero-btn:hover {
    background: #00bfffcc;
  }
  
  /* Animations */
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .burger {
      display: flex;
    }
  }
  /* === Section 2: Skills & Expertise === */
.skills-section {
    padding: 0rem 2rem;
    background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
    color: #00bfff;
  }
  .skills-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .skills-text {
    flex: 1 1 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.4s;
  }
  .skills-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 12px #00bfffaa;
  }
  .skills-text p {
    margin-bottom: 1.2rem;
    color: #aadcff;
  }
  
  /* Icons container */
  .skills-icons {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.8s;
  }
  .icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: default;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px #00bfff88);
    animation: floatUpDown 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
  }
  .icon-item:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px #00bfffcc);
  }
  .icon {
    width: 48px;
    height: 48px;
    stroke-width: 2.5;
  }
  .icon-item p {
    font-size: 1rem;
    color: #aadcff;
  }
  
  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .skills-container {
      flex-direction: column;
      gap: 3rem;
      text-align: center;
      align-items: center;
    }
  
    .skills-text {
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.3s;
    }
  
    .skills-text h2 {
      font-size: 2rem;
    }
  
    .skills-icons {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.6s;
    }
  
    .icon-item {
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      width: 100px;
      animation: floatSideToSide 3.5s ease-in-out infinite;
    }
  
    .icon {
      width: 40px;
      height: 40px;
    }
  
    .icon-item p {
      font-size: 0.9rem;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatSideToSide {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(8px);
    }
  }
  /* === Section 3: Services === */
.services-section {
    background: #0b0b0b;
    padding: 0rem 2rem;
    text-align: center;
    color: #00bfff;
  }
  .services-header h2 {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px #00bfff88;
  }
  .services-header p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #aadcff;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  
  .service-card {
    background: #121212;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 0 0 rgba(0, 191, 255, 0);
    transition: 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--i) * 0.2s);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
  }
  
  .service-card .icon-wrap {
    margin-bottom: 1rem;
  }
  .service-card .icon {
    width: 40px;
    height: 40px;
  }
  
  .service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #ffffff;
  }
  .service-card p {
    font-size: 1rem;
    color: #aadcff;
    line-height: 1.5;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* === Section 4: Featured Projects === */
.projects-section {
    padding: 0rem 2rem;
    background: #0a0a0a;
    color: #00bfff;
    text-align: center;
  }
  .projects-title {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 12px #00bfff88;
  }
  .project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInSlide 1s ease forwards;
  }
  .project-card.reverse {
    flex-direction: row-reverse;
  }
  .project-text {
    flex: 1 1 400px;
    text-align: left;
  }
  .project-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .project-icon .icon {
    width: 32px;
    height: 32px;
  }
  .project-text h3 {
    font-size: 1.6rem;
    color: #fff;
  }
  .project-text p {
    color: #aadcff;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .project-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .project-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.2);
    transition: transform 0.3s ease;
  }
  .project-image img:hover {
    transform: scale(1.03);
  }
  
  /* Animations */
  @keyframes fadeInSlide {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive layout */
  @media (max-width: 960px) {
    .project-card {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
  
    .project-card.reverse {
      flex-direction: column;
    }
  
    .project-text {
      text-align: center;
    }
  
    .project-image img {
      max-width: 90%;
    }
  }
  /* === Section 5: My Philosophy === */
.philosophy-section {
    background: linear-gradient(135deg, #080808, #121212);
    padding: 0rem 2rem;
    max-width: 900px;
    margin: 0 auto 6rem;
    color: #00bfff;
    text-align: left;
  }
  .philosophy-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px #00bfffaa;
    font-weight: 700;
  }
  
  /* Each philosophy block */
  .philosophy-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }
  .philosophy-item:nth-child(1) {
    animation-delay: 0.3s;
  }
  .philosophy-item:nth-child(2) {
    animation-delay: 0.6s;
  }
  .philosophy-item:nth-child(3) {
    animation-delay: 0.9s;
  }
  
  .philo-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 2px solid #00bfff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: default;
  }
  .philo-icon:hover {
    box-shadow: 0 0 15px #00bfffcc;
    transform: scale(1.1);
  }
  
  .philo-icon .icon {
    width: 30px;
    height: 30px;
    stroke-width: 2.5;
  }
  
  .philo-text {
    flex: 1;
  }
  .philo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #fff;
    text-shadow: 0 0 8px #00bfff99;
    font-weight: 600;
  }
  .philo-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0d8ffcc;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .philosophy-item {
      flex-direction: column;
      text-align: center;
    }
    .philo-icon {
      margin: 0 auto 1rem;
    }
    .philo-text h3 {
      font-size: 1.5rem;
    }
    .philo-text p {
      font-size: 1rem;
    }
  }
  /* === Section 6: Contact Me === */
.contact-section {
    background: #0a0a0a;
    padding: 4rem 2rem 6rem;
    color: #00bfff;
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 30px #00bfff44;
  }
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #00bfffaa;
  }
  .contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #a0d8ffcc;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    cursor: default;
    transition: color 0.3s ease;
    max-width: 400px;
    text-align: left;
  }
  .contact-item a {
    color: #00bfff;
    text-decoration: none;
    word-break: break-word;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .contact-item .icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
  }
  .contact-item:hover .icon {
    stroke: #0097e6;
  }
  
  /* Social links container */
  .contact-item.social-links {
    justify-content: center;
    gap: 2.5rem;
  }
  .contact-item.social-links a {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  .contact-item.social-links a:hover {
    transform: scale(1.2);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .contact-section {
      max-width: 95%;
      padding: 3rem 1rem 4rem;
    }
    .contact-item {
      justify-content: center;
      text-align: center;
    }
  }
  /* === Footer === */
.site-footer {
    background: #080808;
    padding: 3rem 2rem 2rem;
    color: #00bfff;
    font-size: 0.95rem;
    user-select: none;
    box-shadow: inset 0 1px 6px #00bfff22;
  }
  .footer-content {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #00bfffcc;
    text-decoration: none;
    margin: 0 1rem 0 0;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer-nav a:last-child {
    margin-right: 0;
  }
  .footer-nav a:hover {
    color: #0097e6;
    text-decoration: underline;
  }
  
  .footer-socials {
    display: flex;
    gap: 1.2rem;
  }
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .footer-socials a:hover {
    transform: scale(1.3);
  }
  
  .footer-socials .icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    stroke: #00bfff;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #111111;
    padding-top: 1rem;
    color: #0097e6cc;
  }
  
  /* Responsive */
  @media (max-width: 720px) {
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-nav {
      text-align: center;
      width: 100%;
    }
    .footer-nav a {
      margin: 0 0.8rem 0.6rem;
      display: inline-block;
    }
    .footer-socials {
      justify-content: center;
      width: 100%;
    }
  }
 /* === Blob Divider === */
/* === Blob Divider Between Sections === */
.blob-divider {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 2;
}
.blob-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(1.1);
  animation: blobMotion 8s infinite ease-in-out;
}

/* Animation: gentle left-right pulse */
@keyframes blobMotion {
  0% {
    transform: scaleX(1.1) translateX(0);
  }
  50% {
    transform: scaleX(1.15) translateX(-10px);
  }
  100% {
    transform: scaleX(1.1) translateX(0);
  }
}
/* === ANGLED DIVIDER === */
.angled-divider {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, transparent 30%, #0097e6cc 50%, transparent 70%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  transform: scaleY(-1);
  opacity: 0.9;
  z-index: 3;
  position: relative;
}
/* === GLOW BEAM DIVIDER === */
.glow-divider {
  width: 100%;
  height: 80px;
  background: radial-gradient(ellipse at center, #0097e6cc 0%, transparent 70%);
  box-shadow: 0 0 40px #0097e6aa, 0 0 80px #0097e644;
  position: relative;
  z-index: 3;
  opacity: 0.8;
  animation: glowPulse 4s infinite ease-in-out;
}

/* Glow animation */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}
/* === POLYGONAL DIAGONAL DIVIDER === */
.polygon-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: #0097e6cc;
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  z-index: 3;
  box-shadow: 0 0 60px #0097e6aa;
  animation: polygonDrift 10s ease-in-out infinite;
}

/* Subtle movement to keep it alive */
@keyframes polygonDrift {
  0% {
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 10%, 100% 40%, 100% 90%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  }
}
/* === VIEW MORE BUTTON === */
.view-more-btn {
  display: inline-block;
  padding: 14px 32px;

  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #00bfff;
  background: transparent;
  border: 2px solid #0097e6cc;
  border-radius: 12px;
  transition: all 0.35s ease;
  text-decoration: none;
  box-shadow: 0 0 12px #0097e655;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.view-more-btn:hover {
  background: #0097e6cc;
  color: #0a0a0a;
  box-shadow: 0 0 25px #0097e6cc, 0 0 50px #0097e6aa;
  transform: scale(1.05);
}
.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.view-more-btn:hover::before {
  left: 125%;
}
/* === CENTERING CONTAINER === */
.view-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
/* === EXPERIENCE SECTION === */
.experience-section {
  background: #0a0a0a;
  color: #e0e0e0;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #0097e6;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.experience-timeline {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.experience-card {
  background: #121212;
  border-left: 5px solid #0097e6cc;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 0 12px #0097e633;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px #0097e6aa;
}

.exp-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.company-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}
.role {
  margin-left: auto;
  font-size: 0.9rem;
  color: #cccccc;
}

.exp-details {
  list-style: none;
  padding-left: 20px;
}
.exp-details li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}
.exp-details li::before {
  content: '✔';
  color: #0097e6;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-card {
    padding: 25px 16px;
  }
  .exp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .role {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Divider Flip (already in project) */
.blob-divider.flip {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .project-text {
    flex: unset;
    text-align: unset;
  }
}
