/* ============================ */
/*   FINAL ENHANCED style.css    */
/*  Includes: Dark/Light toggle,  */
/*  preloader, cursor, sidebar,   */
/*  modal, tilt, animations, etc. */
/* ============================ */

:root{
  --bg-dark: #0a0a0f;
  --bg-light: #e9e9ea; /* soft grey */
  --card-dark: rgba(255,255,255,0.03);
  --card-light: rgba(10,10,10,0.06);
  --text-dark: #eaeaea;
  --text-light: #111214;
  --primary: #00ffee;
  --secondary: #14b8ff;
  --accent: #8a2be2;
  --glass: rgba(255,255,255,0.04);
  --transition: 300ms cubic-bezier(.2,.9,.2,1);
}

/* ---------------------------
   Base
   --------------------------- */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:"Poppins",system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background:var(--bg-dark);
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition:background var(--transition), color var(--transition);
  cursor: none; /* we use custom cursor */
}
body.light-mode{
  background:var(--bg-light);
  color:var(--text-light);
}

.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* ---------------------------
   Preloader
   --------------------------- */
#preloader{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:var(--bg-dark);z-index:9999}
#preloader .loader{width:72px;height:72px;border-radius:50%;border:6px solid rgba(255,255,255,0.06);border-top-color:var(--primary);animation:spin 1s linear infinite}
body.light-mode #preloader{background:var(--bg-light)}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------------------------
   Header & Nav
   --------------------------- */
.site-header{position:fixed;top:0;left:0;right:0;z-index:150;backdrop-filter: blur(8px);background: linear-gradient(180deg, rgba(10,10,12,0.55), rgba(10,10,12,0.15));border-bottom:1px solid rgba(255,255,255,0.04);transition:var(--transition)}
body.light-mode .site-header{background:linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.55));border-bottom:1px solid rgba(0,0,0,0.06)}
.header-flex{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:14px 20px}
.logo{font-weight:800;font-size:22px;background:linear-gradient(90deg,var(--primary),var(--secondary));-webkit-background-clip:text;color:transparent}
.nav{display:flex;align-items:center;gap:18px}
.nav a{color:inherit;text-decoration:none;font-weight:600;opacity:.95;transition:color var(--transition) }
.nav a:hover{color:var(--secondary)}
#theme-toggle{background:transparent;border:none;font-size:18px;cursor:pointer;padding:6px 8px;border-radius:8px}

/* Hamburger */
.hamburger{width:34px;height:28px;display:none;flex-direction:column;justify-content:space-between;cursor:pointer}
.hamburger span{display:block;height:3px;background:var(--primary);border-radius:3px;transition:all .25s}
.hamburger.active span:nth-child(1){transform:translateY(10px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:translateY(-10px) rotate(-45deg)}

/* Mobile nav open state */
#nav-menu{display:flex;gap:18px}
#nav-menu.active{position:fixed;inset:72px 20px auto 20px;background:var(--bg-dark);padding:20px;border-radius:12px;flex-direction:column;box-shadow:0 10px 40px rgba(0,0,0,.5)}
body.light-mode #nav-menu.active{background:var(--bg-light)}

/* ---------------------------
   Hero
   --------------------------- */
.hero{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:120px 20px 60px;position:relative;z-index:10;width:100%;flex-wrap:wrap}
.hero-left{max-width:640px;width:100%;flex-basis:auto}
.hero-left h2{font-size:42px;line-height:1.05}
.highlight{background:linear-gradient(90deg,var(--primary),var(--accent));-webkit-background-clip:text;color:transparent}
.lead{margin-top:18px;color:rgba(255,255,255,.86);max-width:600px}
.cta{margin-top:28px;display:flex;gap:12px}
.btn{background:var(--primary);color:#000;padding:12px 18px;border-radius:10px;font-weight:700;text-decoration:none;box-shadow:0 6px 20px rgba(0,255,238,0.08);transition:transform .22s;border:none;cursor:pointer}
.btn:hover{transform:translateY(-4px)}
.btn-outline{background:transparent;border:2px solid rgba(255,255,255,0.08);color:inherit}

.profile-photo{display:flex;align-items:center;justify-content:center;width:auto;flex-shrink:0}
.profile-photo img{width:340px;height:340px;border-radius:50%;object-fit:cover;border:4px solid var(--primary);box-shadow:0 0 40px rgba(0,255,238,0.12);transform:translateZ(0);transition:transform .6s;z-index:20}

/* animated hero gradient glow */
.hero::after{content:"";position:absolute;left:50%;top:18%;width:540px;height:540px;transform:translateX(-50%);filter:blur(64px);opacity:.18;background:linear-gradient(45deg,var(--primary),var(--secondary),var(--accent));z-index:-1;animation:glowShift 12s linear infinite}
@keyframes glowShift{0%{transform:translateX(-50%) rotate(0)}50%{transform:translateX(-50%) rotate(90deg)}100%{transform:translateX(-50%) rotate(360deg)}}

/* ---------------------------
   Projects grid + tilt
   --------------------------- */
.projects-section{padding:60px 20px 120px}
.section-title{font-size:32px;margin-bottom:24px;background:linear-gradient(90deg,var(--primary),var(--secondary));-webkit-background-clip:text;color:transparent}
.projects-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;align-items:start}
.project-card{background:var(--card-dark);padding:18px;border-radius:12px;border:1px solid rgba(255,255,255,0.03);transition:transform var(--transition),box-shadow var(--transition);cursor:pointer}
body.light-mode .project-card{background:var(--card-light)}
.project-card:hover{transform:translateY(-10px);box-shadow:0 20px 40px rgba(20,184,255,.08)}
.img-box img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.project-card h3{margin-top:12px;font-size:18px}
.tech-used{display:block;margin-top:8px;color:rgba(255,255,255,.7);font-size:14px}
.project-btn{display:inline-block;margin-top:12px;padding:8px 12px;border-radius:8px;background:linear-gradient(90deg,var(--secondary),var(--primary));font-weight:700;text-decoration:none;color:#000}

/* tilt will be handled by VanillaTilt; for fallback add subtle transform on hover */
.project-card[data-tilt]:hover{transform:translateY(-8px) rotateX(2deg) rotateY(2deg)}

/* ---------------------------
   Modal
   --------------------------- */
.modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.6);opacity:0;pointer-events:none;transition:opacity .18s}
.modal.show{opacity:1;pointer-events:auto}
.modal-content{background:linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0.01));padding:28px;border-radius:12px;max-width:760px;width:94%;border:1px solid rgba(255,255,255,0.06);box-shadow:0 30px 80px rgba(0,0,0,0.6)}
body.light-mode .modal-content{background:#fff;color:var(--text-light)}
.modal .close{position:absolute;top:22px;right:28px;font-size:26px;cursor:pointer}

/* ---------------------------
   Skills
   --------------------------- */
.skills-row{display:flex;gap:20px;justify-content:space-between;margin-top:18px}
.skill-col{flex:1;padding:18px;border-radius:10px;background:var(--glass);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,0.03)}
body.light-mode .skill-col{background:rgba(0,0,0,0.03)}
.skill-col h4{color:var(--primary);margin-bottom:8px}

/* ---------------------------
   Social Sidebar
   --------------------------- */
.social-sidebar{position:fixed;left:18px;top:40%;display:flex;flex-direction:column;gap:12px;z-index:120}
.social-sidebar a{display:inline-block;padding:8px 12px;border-radius:8px;background:rgba(0,0,0,0.5);color:var(--text-dark);text-decoration:none;font-weight:700;backdrop-filter:blur(6px);transition:transform .18s}
body.light-mode .social-sidebar a{background:rgba(255,255,255,0.85);color:var(--text-light)}
.social-sidebar a:hover{transform:translateX(6px)}

/* ---------------------------
   Cursor
   --------------------------- */
.cursor-dot,.cursor-outline{position:fixed;left:0;top:0;pointer-events:none;z-index:9999;transform:translate(-50%,-50%)}
.cursor-dot{width:8px;height:8px;border-radius:50%;background:var(--primary);mix-blend-mode:screen}
.cursor-outline{width:44px;height:44px;border-radius:50%;border:2px solid rgba(0,255,238,0.18);transition:transform .12s}

/* hide default cursor for interactive elements on mobile for accessibility */
@media (hover:none){body{cursor:auto}.cursor-dot,.cursor-outline{display:none}}

/* ---------------------------
   Footer
   --------------------------- */
.site-footer{padding:26px 20px;text-align:center;margin-top:40px}

/* ---------------------------
   Responsive - Tablets & Small Desktops (768px - 980px)
   --------------------------- */
@media (max-width:980px){
  .hero{flex-direction:column-reverse;padding:110px 20px 40px}
  .hero-left{width:100%;max-width:100%}
  .profile-photo{width:100%;margin-bottom:20px;order:-1}
  .profile-photo img{width:260px;height:260px}
  .skills-row{flex-direction:column}
  .social-sidebar{display:none}
  .hamburger{display:flex}
  #nav-menu{display:none}
  #nav-menu.active{display:flex}
  
  .hello-container{grid-template-columns:1fr;gap:30px;padding:30px 20px}
  .cap-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;padding:0 15px}
  .projects-container{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
}

/* ---------------------------
   Responsive - Mobile (480px - 767px)
   --------------------------- */
@media (max-width:767px){
  .logo{font-size:18px}
  .header-flex{padding:12px 16px}
  
  .hero{padding:90px 16px 40px;gap:20px}
  .hero-left h2{font-size:28px;line-height:1.2}
  .hero-left p{font-size:14px}
  .profile-photo img{width:220px;height:220px;border:3px solid var(--primary)}
  
  .section-title{font-size:26px;margin-bottom:16px}
  .projects-container{grid-template-columns:1fr;gap:14px}
  .project-card{padding:14px}
  .project-card h3{font-size:16px;margin-top:8px}
  .tech-used{font-size:12px}
  .img-box img{height:140px}
  
  .about-content{padding:30px 20px;border-radius:14px}
  .about-content h2{font-size:32px;margin-bottom:20px}
  .about-content p.intro{font-size:15px;line-height:1.7}
  
  .skills-title{font-size:22px;margin-top:25px}
  .skills-box{gap:8px}
  .skills-box span{padding:7px 12px;font-size:13px;border-radius:20px}
  
  .timeline{padding-left:15px;border-left-width:2px}
  .timeline-dot{left:-8px}
  .timeline-item{margin-bottom:20px}
  .timeline-content h3{font-size:17px}
  .timeline-content p{font-size:13px}
  
  .hello-container{grid-template-columns:1fr;gap:25px;padding:25px 16px;border-radius:16px}
  .hello-left h2{font-size:28px;margin-bottom:12px}
  .hello-left p{font-size:14px}
  
  .hello-right{padding:20px;border-radius:14px}
  .hello-form input,
  .hello-form textarea{padding:12px;font-size:14px}
  .hello-btn{padding:12px;font-size:15px}
  
  .cap-title{font-size:28px;margin-bottom:30px}
  .cap-grid{grid-template-columns:1fr;gap:16px;padding:0 12px}
  .cap-item{padding:20px 16px;border-radius:12px}
  .cap-icon{font-size:36px;margin-bottom:12px}
  .cap-item h3{font-size:18px}
  .cap-item p{font-size:14px}
  
  .cta{flex-wrap:wrap;gap:8px}
  .btn{padding:10px 14px;font-size:14px;border-radius:8px}
  
  .cursor{display:none}
}

/* ---------------------------
   Responsive - Small Mobile (320px - 479px)
   --------------------------- */
@media (max-width:479px){
  html,body{font-size:14px}
  
  .site-header{z-index:200}
  .logo{font-size:16px}
  .header-flex{padding:10px 12px}
  
  .hero{padding:120px 12px 30px;display:flex;flex-direction:column;gap:15px;position:relative;z-index:10;width:100%;margin-top:30px}
  .hero-left{order:2;width:100%}
  .profile-photo{order:1;width:100%;margin:0}
  .hero-left h2{font-size:24px;line-height:1.15;margin-top:15px}
  .hero-left p{font-size:13px;line-height:1.6}
  .profile-photo img{width:200px;height:200px;border:3px solid var(--primary);z-index:20;display:block;margin:0 auto}
  
  .container{padding:0 12px}
  
  .section-title{font-size:22px;margin-bottom:14px}
  .projects-section{padding:40px 12px 80px}
  .projects-container{grid-template-columns:1fr;gap:12px}
  .project-card{padding:12px;border-radius:10px}
  .project-card h3{font-size:15px;margin-top:6px}
  .tech-used{font-size:11px;margin-top:6px}
  .img-box img{height:120px;border-radius:6px}
  .project-btn{padding:6px 10px;font-size:12px;border-radius:6px}
  
  .about-section{padding:60px 0}
  .about-container{padding:0 12px}
  .about-content{padding:20px 16px;border-radius:12px}
  .about-content h2{font-size:26px;margin-bottom:16px;text-shadow:0 0 10px rgba(0,255,255,0.3)}
  .about-content p.intro{font-size:14px;line-height:1.6;margin-bottom:20px}
  
  .skills-title{font-size:20px;margin-top:20px;margin-bottom:12px}
  .skills-box{gap:6px;margin-bottom:16px}
  .skills-box span{padding:6px 10px;font-size:12px;border-radius:18px;border:1px solid rgba(0,255,255,0.3)}
  
  .timeline{padding-left:12px;border-left-width:2px;margin-bottom:25px}
  .timeline-dot{width:11px;height:11px;left:-7px;top:3px}
  .timeline-item{margin-bottom:18px}
  .timeline-content h3{font-size:16px;margin-bottom:3px}
  .timeline-content p{font-size:12px;color:#bfbfbf}
  
  .hello-section{padding:80px 0}
  .hello-container{grid-template-columns:1fr;gap:20px;padding:20px 12px;border-radius:12px}
  .hello-left h2{font-size:24px;margin-bottom:10px}
  .hello-left p{font-size:13px;line-height:1.6;opacity:0.9}
  
  .hello-details{margin-top:15px}
  .hello-details p{margin:5px 0;font-size:12px}
  .hello-details a{font-size:13px}
  
  .hello-right{padding:16px;border-radius:10px}
  .hello-form .form-group{margin-bottom:14px}
  .hello-form input,
  .hello-form textarea{padding:10px;font-size:13px;border-radius:8px}
  .hello-form textarea{height:100px}
  .hello-btn{padding:10px;font-size:14px;border-radius:8px}
  
  .cap-title{font-size:24px;margin-bottom:25px}
  .cap-grid{grid-template-columns:1fr;gap:14px;padding:0 8px}
  .cap-item{padding:18px 14px;border-radius:10px}
  .cap-icon{font-size:32px;margin-bottom:10px}
  .cap-item h3{font-size:16px;margin-bottom:8px}
  .cap-item p{font-size:13px;line-height:1.5}
  
  .cta{flex-direction:column;gap:8px;margin-top:20px}
  .btn{width:100%;padding:11px 16px;font-size:13px;text-align:center}
  .btn-outline{width:100%}
  
  .site-footer{padding:20px 12px;font-size:12px}
  
  .cursor{display:none}
  
  /* Touch-friendly spacing */
  a,button{min-height:44px;display:flex;align-items:center}
  
  #nav-menu.active{inset:62px 12px auto 12px;padding:16px}
  .hamburger{width:30px;height:24px}
  .hamburger span{height:2.5px}
}

/* ---------------------------
   Extra Small Mobile (< 320px)
   --------------------------- */
@media (max-width:319px){
  html,body{font-size:12px}
  
  .hero-left h2{font-size:20px}
  .hero-left p{font-size:12px}
  .profile-photo img{width:150px;height:150px}
  
  .section-title{font-size:18px}
  .about-content h2{font-size:22px;padding:0}
  .skills-box span{padding:5px 8px;font-size:11px}
  
  .hello-container{padding:16px 10px}
  .cap-grid{gap:12px;padding:0 6px}
  .container{padding:0 10px}
}
/* ---------------------------
   Interactive About Me Section
   --------------------------- */
.about-timeline{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item{
  background: rgba(0,255,238,0.03);
  border-radius: 12px;
  padding: 24px;
  border:1px solid rgba(0,255,238,0.08);
  box-shadow:0 12px 30px rgba(0,255,238,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-item:hover{
  transform: translateY(-6px);
  box-shadow:0 20px 50px rgba(0,255,238,0.12);
}

.timeline-item h3{
  margin-bottom:12px;
  color: var(--primary);
}

.timeline-item ul{
  margin-left: 16px;
  list-style-type: disc;
  color: rgba(255,255,255,0.9);
}

.skills-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.skills-badges span{
  background: rgba(0,255,238,0.12);
  color: var(--primary);
  padding:6px 12px;
  border-radius:6px;
  font-weight:600;
  transition: transform 0.2s, background 0.2s;
  cursor:default;
}

.skills-badges span:hover{
  transform: translateY(-3px);
  background: rgba(0,255,238,0.2);
}

body.light-mode .timeline-item{
  background: rgba(0,0,0,0.03);
  border:1px solid rgba(0,0,0,0.06);
  color: var(--text-light);
}

body.light-mode .skills-badges span{
  background: rgba(0,0,0,0.05);
  color: var(--text-light);
}

/* small utilities */
.text-center{text-align:center}
.mt-24{margin-top:24px}

/* Accessibility focus styles */
a:focus,button:focus{outline:3px solid rgba(20,184,255,0.14);outline-offset:4px}

/* AOS tweak: smoother fade */
[data-aos]{transition-timing-function:cubic-bezier(.2,.9,.2,1)}

/* END */
/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #0e0e0e, #1a1a1a);
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
}

/* GLASS CARD PROFILE IMAGE */
.glass-card {
  padding: 18px;
  border-radius: 25px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: floatAnim 4s ease-in-out infinite;
}

.glass-card img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* CONTENT */
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width:980px;
  margin-right: 12PX;
}

/* TIMELINE */
.timeline {
  border-left: 3px solid #7f5af0;
  margin-bottom: 40px;
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #7f5af0;
  border-radius: 50%;
  position: absolute;
  left: -29px;
  top: 5px;
  box-shadow: 0 0 12px #7f5af0;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* SKILLS */
.skills-title {
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.skills-box span {
  display: inline-block;
  margin: 6px;
  padding: 8px 16px;
  background: #222;
  border-radius: 12px;
  border: 1px solid #444;
  font-size: 0.95rem;
  transition: 0.3s;
}

.skills-box span:hover {
  transform: translateY(-5px);
  background: #7f5af0;
  color: #fff;
}

/* EXTRA TEXT */
.extras {
  margin-top: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}
/* ===========================
   Premium Capabilities Section
   =========================== */
   .capabilities-section {
    padding: 90px 20px;
    text-align: center;
    position: relative;
  }
  
  .cap-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 50px;
  }
  
  .cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cap-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,238,0.12);
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,255,238,0.06);
    backdrop-filter: blur(12px);
    transition: transform .4s ease, box-shadow .4s ease, border .4s;
    cursor: pointer;
  }
  
  .cap-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0,255,238,0.18);
  }
  
  .cap-icon {
    font-size: 44px;
    margin-bottom: 18px;
    color: var(--primary);
    text-shadow: 0 0 18px rgba(0,255,238,0.4);
  }
  
  .cap-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--primary);
  }
  
  .cap-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
  }
  
  /* Light mode support */
  body.light-mode .cap-item {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
  }
  
  body.light-mode .cap-item p {
    color: #333;
  }
/* Custom Glow Cursor */
.cursor {
  width: 22px;
  height: 22px;
  border: 2px solid #7b5cff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, border-color 0.25s ease;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* Hover effect on clickable items */
a:hover ~ .cursor,
button:hover ~ .cursor,
.card:hover ~ .cursor {
  border-color: #00f0ff;
  transform: scale(1.3) translate(-50%, -50%);
}
  
/* SAY HELLO SECTION */
.hello-section {
  padding: 120px 0;
  background: #0d0d0d;
  color: #fff;
}

.hello-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.hello-left h2 {
  font-size: 40px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00eaff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hello-left p {
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.9;
}

.hello-details {
  margin-top: 20px;
}

.hello-details p {
  margin: 6px 0;
}

.hello-details a {
  color: #00eaff;
  text-decoration: none;
  transition: 0.3s;
}

.hello-details a:hover {
  color: #0099ff;
}

/* FORM */
.hello-right {
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.08);
}

.hello-form .form-group {
  margin-bottom: 20px;
}

.hello-form input,
.hello-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease;
}

.hello-form input:focus,
.hello-form textarea:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 10px #00eaff;
}

.hello-form textarea {
  height: 140px;
  resize: none;
}

/* SUBMIT BUTTON */
.hello-btn {
  width: 100%;
  padding: 15px;
  font-size: 17px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00eaff, #0077ff);
  color: #000;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hello-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00eaff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hello-container {
    grid-template-columns: 1fr;
  }
}
/* Clean, Modern About Section */
.about-section {
  width: 100%;
  padding: 80px 0;
  background: #0b0c0f;
  color: #e8e8e8;
  display: flex;
  justify-content: center;
}

.about-container {
  width: 100%;
  max-width: 950px;
  margin: auto;
  padding: 0 25px;
}

.about-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 50px 45px;
  border: 1px solid rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.12);
  transition: 0.3s ease;
}

.about-content h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00f7ff;
  text-align: left;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.about-content p.intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #cfcfcf;

}

.about-content strong {
  color: #00eaff;
  font-weight: 600;
}

/* Align timeline center with card */
.timeline {
  margin-top: 25px;
  border-left: 2px solid rgba(0, 255, 255, 0.4);
  padding-left: 25px;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-dot {
  width: 13px;
  height: 13px;
  background: #00ffff;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 4px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
}

.timeline-content h3 {
  font-size: 20px;
  color: #00ffff;
}

.timeline-content p {
  font-size: 15px;
  color: #bfbfbf;
}

/* Skills box */
.skills-title {
  font-size: 28px;
  margin-top: 45px;
  margin-bottom: 15px;
  color: #00eaff;
}

.skills-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.skills-box span {
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #00eeff;
  font-size: 14px;
  transition: 0.2s ease;
}

.skills-box span:hover {
  transform: translateY(-3px);
  background: rgba(0, 255, 255, 0.18);
}
/* theme */
