* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* --- HERO SECTION --- */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    #000000 0%,
    #0a0a0a 50%,
    #111111 100%
  );
  padding: 0 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Neon Orange glow + subtle ambient colors */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 20%, rgba(255, 120, 0, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(229, 46, 113, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 20% 85%, rgba(80, 120, 255, 0.05) 0%, transparent 45%);

  z-index: 1;
  animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}


.hero-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px; /* Increased padding for better spacing */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

/* --- PROFILE IMAGE --- */

.profile-img-container {
  position: relative;
  margin-bottom: 25px;
  margin-top: 0;
}

.profile-img {
  border: 4px solid rgba(255, 138, 0, 0.8);
  border-radius: 50%;
  overflow: hidden;
  width: 160px; /* Slightly reduced */
  height: 160px; /* Slightly reduced */
  position: relative;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  box-shadow: 
    0 0 30px rgba(255, 138, 0, 0.3),
    0 0 60px rgba(229, 46, 113, 0.2);
    margin-top: 150px;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-img:hover img {
  transform: scale(1.05);
}

.profile-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; /* Adjusted */
  height: 200px; /* Adjusted */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
  z-index: 2;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

/* --- HERO TEXT --- */

.greeting-container {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.greeting-hello {
  font-size: 1.1rem; /* Slightly reduced */
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  animation: fadeInUp 0.8s ease-out;
}

.name {
  font-size: 3rem; /* Reduced from 3.5rem */
  font-weight: 700;
  margin: 0 0 12px 0; /* Reduced margin */
  background: linear-gradient(90deg, #ffffff, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.1;
}

.name-highlight {
  color: #ff8a00;
  -webkit-text-fill-color: #ff8a00;
}

/* --- TYPED SECTION --- */

.typed-section {
  font-size: 1.6rem; /* Reduced from 1.8rem */
  margin: 10px 0 20px; /* Reduced margins */
  font-weight: 500;
  min-height: 45px; /* Reduced */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.typed-prefix {
  color: rgba(255, 255, 255, 0.9);
}

.typed-text {
  color: #ff8a00;
  font-weight: 600;
  position: relative;
}

.typed-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, rgba(255, 138, 0, 0.3));
  border-radius: 2px;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.3em; /* Adjusted */
  background-color: #ff8a00;
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* --- HERO DESCRIPTION --- */

.hero-description {
  font-size: 1rem; /* Reduced from 1.1rem */
  line-height: 1.5; /* Reduced from 1.6 */
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px; /* Reduced */
  margin: 0 auto 20px; /* Reduced margins */
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* --- CTA & STUDIO BADGE --- */

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* Reduced */
  margin-bottom: 25px; /* Reduced */
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-prefix {
  font-size: 0.95rem; /* Reduced */
  color: rgba(255, 255, 255, 0.7);
}

.studio-badge {
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 50px;
  padding: 6px 18px; /* Reduced */
  transition: all 0.3s ease;
}

.studio-badge:hover {
  background: rgba(255, 138, 0, 0.15);
  border-color: rgba(255, 138, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.2);
}

.studio-name {
  font-weight: 600;
  color: #ff8a00;
  font-size: 1rem; /* Reduced */
}

/* --- HERO BUTTONS --- */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Reduced */
  margin-bottom: 30px; /* Reduced */
  width: 100%;
  text-decoration: none;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.btn {
  padding: 12px 28px; /* Reduced */
  font-size: 0.95rem; /* Reduced */
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* --- ANIMATIONS --- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet - Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
  
  .profile-img {
    width: 150px;
    height: 150px;
  }
  
  .name {
    font-size: 2.8rem;
  }
  
  .typed-section {
    font-size: 1.5rem;
  }
}

/* Mobile - Small screens */
@media (max-width: 768px) {
  .hero {
    height: 100vh; /* Mobile par full screen */
    max-height: 900px;
    min-height: 667px;
    padding: 20px 15px;
    justify-content: center;
    padding-top: 20px;
  }
  
  .hero-container {
    padding-top: 0;
    justify-content: center;
  }
  
  .profile-img-container {
    margin-top: 0 !important;
    margin-bottom: 20px;
  }
  
  .profile-img {
    width: 140px;
    height: 140px;
  }
  
  .profile-glow {
    width: 170px;
    height: 170px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
    margin: 0 auto 25px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .name {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
  
  .typed-section {
    font-size: 1.3rem;
    margin: 8px 0 15px;
    min-height: 40px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    padding: 0 10px;
    margin-bottom: 18px;
    line-height: 1.5;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
  }
  
  .profile-img {
    width: 130px;
    height: 130px;
  }
  
  .profile-glow {
    width: 160px;
    height: 160px;
  }
  
  .name {
    font-size: 2rem;
  }
  
  .typed-section {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    max-width: 250px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .hero {
    height: 80vh;
    max-height: 750px;
  }
  
  .profile-img {
    width: 180px;
    height: 180px;
  }
  
  .profile-glow {
    width: 220px;
    height: 220px;
  }
  
  .name {
    font-size: 3.2rem;
  }
}

/* --- SECTION 2 / ABOUT SECTION --- */

.sec11 {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.about-section {
  padding: 70px 50px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(255, 138, 0, 0.15),
    0 0 0 1px rgba(255, 138, 0, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: sectionSlideUp 1s ease-out;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #ff8a00;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(229, 46, 113, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: gradientFloat 20s ease-in-out infinite alternate;
}

.about-section > * {
  position: relative;
  z-index: 2;
}

/* About Tag */
.about-section .tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;   
  animation: tagFloat 1s ease-out 0.2s both;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
  position: relative;
  overflow: hidden;
  text-align: left;      
}

.about-section .tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.about-section .tag:hover::after {
  left: 100%;
}

/* About Title */
.about-section .hero-name {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  animation: titleReveal 1s ease-out 0.4s both;
  position: relative;
  display: block;
  text-align: left;         
  background: linear-gradient(90deg, #ffffff, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section .hero-name::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8a00, transparent);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.8s both;
}

 

/* About Paragraphs */
.about-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.about-section p:nth-child(3) { animation-delay: 0.5s; }
.about-section p:nth-child(4) { animation-delay: 0.7s; }
.about-section p:nth-child(5) { animation-delay: 0.9s; }
.about-section p:nth-child(6) { animation-delay: 1.1s; }

.about-section p::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

/* Strong text styling */
.about-section strong {
  color: #ff8a00;
  font-weight: 600;
  position: relative;
}

.about-section strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 138, 0, 0.3);
  border-radius: 1px;
  transition: height 0.3s ease;
}

.about-section strong:hover::after {
  height: 4px;
}

/* Stats Grid for additional content if needed */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 138, 0, 0.1);
  animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
  background: rgba(255, 138, 0, 0.05);
  border: 1px solid rgba(255, 138, 0, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.15);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8a00;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- ANIMATIONS --- */
@keyframes sectionSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tagFloat {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

@keyframes gradientFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(10px, 10px) rotate(1deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .sec11 {
    padding: 30px 20px;
  }
  
  .about-section {
    padding: 60px 40px;
  }
  
  .about-section .hero-name {
    font-size: 2.5rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sec11 {
    padding: 20px 15px;
  }
  
  .about-section {
    padding: 50px 30px;
    border-left-width: 3px;
  }
  
  .about-section .hero-name {
    font-size: 2.2rem;
  }
  
  .about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 20px;
  }
  
  .about-section p::before {
    font-size: 1.1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sec11 {
    padding: 15px 10px;
  }
  
  .about-section {
    padding: 40px 20px;
    border-radius: 15px;
  }
  
  .about-section .hero-name {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  
  .about-section .hero-name::after {
    width: 60px;
    height: 3px;
  }
  
  .about-section .tag {
    font-size: 0.75rem;
    padding: 6px 18px;
    margin-bottom: 20px;
  }
  
  .about-section p {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 18px;
    margin-bottom: 20px;
  }
  
  .about-section p::before {
    font-size: 1rem;
  }
}

/* --- SECTION 3 / SKILLS SECTION --- */

/* Reuse the same container styling */
.sec11 {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.skills-section {
  padding: 70px 50px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(255, 138, 0, 0.15),
    0 0 0 1px rgba(255, 138, 0, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: sectionSlideUp 1s ease-out;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #ff8a00;
  margin-top: 40px;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(229, 46, 113, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: gradientFloat 20s ease-in-out infinite alternate;
}

.skills-section > * {
  position: relative;
  z-index: 2;
}

/* Skill Section Tag - Same as About */
.skills-section .tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: tagFloat 1s ease-out 0.2s both;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.skills-section .tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.skills-section .tag:hover::after {
  left: 100%;
}

/* Skill Section Title */
.skills-section .hero-name {
  font-size: 3rem;
  color: white;
  margin-bottom: 30px;
  animation: titleReveal 1s ease-out 0.4s both;
  position: relative;
  display: block;
  text-align: left;
  background: linear-gradient(90deg, #ffffff, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills-section .hero-name::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8a00, transparent);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.8s both;
}

/* Skill Section Description */
.skills-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  position: relative;
  padding-left: 25px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.skills-section p::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

/* Skills Container */
.skills-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Skill Category */
.skill-category {
  background: rgba(255, 138, 0, 0.03);
  border: 1px solid rgba(255, 138, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-category:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1);
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 2px 2px 0 0;
}

/* Category Title */
.category-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 138, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-icon {
  color: #ff8a00;
  font-size: 1.6rem;
}

/* Skill Item */
.skill-item {
  margin-bottom: 20px;
}

.skill-item:last-child {
  margin-bottom: 0;
}

/* Skill Info */
.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

.skill-percentage {
  color: #ff8a00;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Skill Bar */
.skill-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 5px;
  position: relative;
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
  animation: progressFill 1.5s ease-out forwards;
}

.skill-progress::after {
  content: attr(data-progress) '%';
  position: absolute;
  right: 5px;
  top: -25px;
  color: #ff8a00;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.skill-item:hover .skill-progress::after {
  opacity: 1;
}

/* Skills Stats */
.skills-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 138, 0, 0.1);
  animation: fadeInUp 1s ease-out 1.2s both;
}

/* Reuse stat-item from about section */
.skills-stats .stat-item {
  background: rgba(255, 138, 0, 0.05);
  border: 1px solid rgba(255, 138, 0, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skills-stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.15);
}

.skills-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
}

.skills-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8a00;
  margin-bottom: 5px;
}

.skills-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Strong text styling - Same as About */
.skills-section strong {
  color: #ff8a00;
  font-weight: 600;
  position: relative;
}

.skills-section strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 138, 0, 0.3);
  border-radius: 1px;
  transition: height 0.3s ease;
}

.skills-section strong:hover::after {
  height: 4px;
}

/* --- NEW ANIMATIONS FOR SKILLS --- */
@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .skills-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .skills-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .sec11 {
    padding: 30px 20px;
  }
  
  .skills-section {
    padding: 60px 40px;
  }
  
  .skills-section .hero-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sec11 {
    padding: 20px 15px;
  }
  
  .skills-section {
    padding: 50px 30px;
    border-left-width: 3px;
  }
  
  .skills-section .hero-name {
    font-size: 2.2rem;
  }
  
  .skills-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 20px;
  }
  
  .skills-section p::before {
    font-size: 1.1rem;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .skill-category {
    padding: 20px;
  }
  
  .category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .skills-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }
  
  .skills-stats .stat-item {
    padding: 20px 15px;
  }
  
  .skills-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .skills-container {
    gap: 15px;
  }
  
  .skill-category {
    padding: 18px;
  }
  
  .category-title {
    font-size: 1.2rem;
  }
  
  .skills-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sec11 {
    padding: 15px 10px;
  }
  
  .skills-section {
    padding: 40px 20px;
    border-radius: 15px;
  }
  
  .skills-section .hero-name {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  
  .skills-section .hero-name::after {
    width: 60px;
    height: 3px;
  }
  
  .skills-section .tag {
    font-size: 0.75rem;
    padding: 6px 18px;
    margin-bottom: 20px;
  }
  
  .skills-section p {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 18px;
    margin-bottom: 30px;
  }
  
  .skills-section p::before {
    font-size: 1rem;
  }
  
  .skill-info {
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }
  
  .skill-percentage {
    align-self: flex-end;
  }
}


/* --- SOCIAL CONNECT SECTION --- */

.social-section {
  padding: 100px 0;
background-color: black;
  position: relative;
  overflow: hidden;
  animation: sectionSlideUp 1s ease-out;
}


.social-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.8s both;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Social Card */
.social-card {
  background: linear-gradient(145deg, 
    rgba(30, 30, 30, 0.9) 0%, 
    rgba(40, 40, 40, 0.85) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 138, 0, 0.05),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 138, 0, 0.1) 0%, 
    rgba(229, 46, 113, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

.social-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow: 
    0 25px 50px rgba(255, 138, 0, 0.2),
    0 0 0 1px rgba(255, 138, 0, 0.2),
    inset 0 0 30px rgba(255, 138, 0, 0.05);
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover::after {
  left: 100%;
}

/* Platform-specific hover effects */
.social-card:nth-child(1):hover { /* GitHub */
  background: linear-gradient(145deg, 
    rgba(24, 23, 23, 0.95) 0%, 
    rgba(36, 41, 46, 0.9) 100%);
}

.social-card:nth-child(2):hover { /* LinkedIn */
  background: linear-gradient(145deg, 
    rgba(10, 102, 194, 0.1) 0%, 
    rgba(10, 102, 194, 0.2) 100%);
}

.social-card:nth-child(3):hover { /* Instagram */
  background: linear-gradient(145deg, 
    rgba(225, 48, 108, 0.1) 0%, 
    rgba(131, 58, 180, 0.2) 100%);
}

.social-card:nth-child(4):hover { /* Facebook */
  background: linear-gradient(145deg, 
    rgba(24, 119, 242, 0.1) 0%, 
    rgba(24, 119, 242, 0.2) 100%);
}

/* Social Icon */
.about-social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.social-card:nth-child(1) .about-social-icon {
  background: linear-gradient(135deg, #333 0%, #24292e 100%);
  box-shadow: 0 10px 20px rgba(36, 41, 46, 0.3);
}

.social-card:nth-child(2) .about-social-icon {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
  box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3);
}

.social-card:nth-child(3) .about-social-icon {
  background: linear-gradient(135deg, #e1306c 0%, #833ab4 100%);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.social-card:nth-child(4) .about-social-icon {
  background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.about-social-icon i {
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}

.social-card:hover .about-social-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 138, 0, 0.4);
}

.social-card:hover .about-social-icon i {
  transform: scale(1.1);
}

/* Card Content */
.social-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-card:hover h3 {
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.social-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #ff8a00;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.social-card:hover .social-link {
  background: rgba(255, 138, 0, 0.2);
  border-color: rgba(255, 138, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.2);
}

/* Stagger Animation for Cards */
.social-card:nth-child(1) { animation-delay: 0.8s; }
.social-card:nth-child(2) { animation-delay: 0.9s; }
.social-card:nth-child(3) { animation-delay: 1.0s; }
.social-card:nth-child(4) { animation-delay: 1.1s; }

/* --- ANIMATIONS --- */
@keyframes gradientFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .social-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .social-card {
    padding: 35px 25px;
  }
  
  .about-social-icon {
    width: 70px;
    height: 70px;
  }
  
  .about-social-icon i {
    font-size: 2.2rem;
  }
  
  .social-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .social-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .social-grid {
    gap: 20px;
  }
  
  .social-card {
    padding: 30px 20px;
    border-radius: 18px;
  }
  
  .about-social-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .about-social-icon i {
    font-size: 2rem;
  }
  
  .social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .social-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .social-link {
    font-size: 0.85rem;
    padding: 7px 18px;
  }
}

@media (max-width: 576px) {
  .social-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-title::after {
    width: 80px;
    height: 3px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
  }
  
  .social-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .social-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .about-social-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-social-icon i {
    font-size: 1.8rem;
  }
  
  .social-card h3 {
    font-size: 1.4rem;
  }
  
  .social-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .social-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .social-card {
    padding: 22px 18px;
  }
  
  .about-social-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }
  
  .about-social-icon i {
    font-size: 1.6rem;
  }
  
  .social-card h3 {
    font-size: 1.3rem;
  }
  
  .social-link {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

/* For small devices like iPhone SE */
@media (max-width: 375px) {
  .social-section .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .social-card {
    padding: 20px 15px;
  }
  
  .about-social-icon {
    width: 50px;
    height: 50px;
  }
  
  .about-social-icon i {
    font-size: 1.5rem;
  }
  
  .social-card h3 {
    font-size: 1.2rem;
  }
  
  .social-card p {
    font-size: 0.85rem;
  }
}
