/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffb400;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

.logo span {
  color: #fff;
  background: #000;
  padding: 2px 6px;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.tagline {
  color: #ffb400;
  font-size: 80px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: -30px;
  animation: fadeInUp 1.5s ease-out;
}

.main-title {
  font-size: 120px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 0; /* text behind image */
  animation: fadeInUp 2s ease-out 0.5s both;
  margin-bottom: 100px;
}

/* HERO BUTTONS */
.hero-buttons {
  position: absolute;
  right: 10px;
  top: 70%; 
  transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
  animation: fadeInRight 1s ease-out 1s both;
  padding-bottom: 100px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 180, 0, 0.1);
  color: #ffb400;
  text-decoration: none;
  border: 2px solid #ffb400;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(255, 180, 0, 0.2);
  text-align: center;
  min-width: 180px;
}

.btn:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 180, 0, 0.4);
}

.btn-work {
  animation-delay: 1.2s;
}

.btn-resume {
  animation-delay: 1.4s;
}

/* HERO IMAGE - FIXED TO BOTTOM */
.hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  display: block;
  height: 65vh; 
  width: auto;
  border-radius: 40px 40px 0 0; 
  filter: drop-shadow(0px 15px 40px rgba(0, 0, 0, 0.9));
  object-fit: cover; 
  object-position: center top; 
}

/* Ensure hero section has no bottom padding */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0 !important; /* Force no bottom padding */
}

/* Remove any potential spacing from html/body */
html, body {
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* CODE PARTICLES */
.code-particles span {
  position: absolute;
  color: #ffb400;
  font-weight: 600;
  text-shadow: 0 0 10px #ffb400, 0 0 25px #ffb400;
  opacity: 0.25;
  animation: floatRandom 20s linear infinite;
  user-select: none;
  z-index: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes floatRandom {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    text-shadow: 0 0 25px #ffb400, 0 0 60px #ffb400;
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: 
      translate(
        calc(var(--end-x) * 1vw), 
        calc(var(--end-y) * 1vh)
      ) 
      rotate(360deg) 
      scale(0.8);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-buttons {
    right: 30px;
  }
}

@media (max-width: 968px) {
  .hero-buttons {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    margin-top: 30px;
    gap: 15px;
  }
  
  .btn {
    min-width: 160px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .tagline {
    font-size: 60px;
  }
  
  .main-title {
    font-size: 100px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 30px;
    margin-bottom: -20px;
  }
  
  .main-title {
    font-size: 50px;
    letter-spacing: 3px;
  }
  
  .btn {
    min-width: 140px;
    font-size: 13px;
    padding: 8px 16px;
  }
}
/* SECTIONS */
section {
  padding: 120px 80px;
  text-align: center;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb400, transparent);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.5);
}

.section-title {
  font-size: 50px;
  color: #ffb400;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

/* Optimized About Section - Single Screen */
.about {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 100px 8% 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 180, 0, 0.12) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 180, 0, 0.08) 0%, transparent 20%);
  animation: floatBackground 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatBackground {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-5px, -5px) rotate(0.5deg); }
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Compact Image Section */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid #ffb400;
  filter: 
    drop-shadow(0px 15px 30px rgba(255, 180, 0, 0.25))
    contrast(1.1)
    brightness(1.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  object-fit: cover;
  position: relative;
  z-index: 3;
}

.about-image img:hover {
  transform: scale(1.05);
  filter: 
    drop-shadow(0px 20px 40px rgba(255, 180, 0, 0.4))
    contrast(1.15)
    brightness(1.08);
}

/* Compact Orbital Rings */
.orbital-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.ring-1 {
  width: 300px;
  height: 300px;
  border-top: 2px solid #ffb400;
  border-right: 2px solid transparent;
}

.ring-2 {
  width: 340px;
  height: 340px;
  border-bottom: 2px solid rgba(255, 180, 0, 0.5);
  border-left: 2px solid transparent;
  animation-duration: 22s;
}

.ring-3 {
  width: 380px;
  height: 380px;
  border-top: 1px solid rgba(255, 180, 0, 0.2);
  border-right: 1px solid transparent;
  animation-duration: 26s;
}

@keyframes orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Compact Floating Tech Icons */
/* Fixed Floating Tech Icons - Wandering Around Profile */
.floating-tech {
  position: absolute;
  color: #ffb400;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.7;
  animation: wanderAround 15s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.tech-1 { 
  top: 10%; 
  left: 15%; 
  animation: wanderAround 18s linear infinite; 
}
.tech-2 { 
  top: 20%; 
  right: 10%; 
  animation: wanderAround 20s linear infinite 2s; 
}
.tech-3 { 
  bottom: 25%; 
  left: 5%; 
  animation: wanderAround 22s linear infinite 4s; 
}
.tech-4 { 
  bottom: 10%; 
  right: 20%; 
  animation: wanderAround 16s linear infinite 6s; 
}
.tech-5 { 
  top: 35%; 
  left: 8%; 
  animation: wanderAround 19s linear infinite 8s; 
}

@keyframes wanderAround {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  10% {
    transform: translate(15px, -20px) rotate(36deg) scale(1.1);
    opacity: 0.8;
  }
  20% {
    transform: translate(30px, 10px) rotate(72deg) scale(0.9);
    opacity: 0.7;
  }
  30% {
    transform: translate(10px, 25px) rotate(108deg) scale(1.05);
    opacity: 0.9;
  }
  40% {
    transform: translate(-20px, 15px) rotate(144deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-25px, -15px) rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
  60% {
    transform: translate(-10px, -25px) rotate(216deg) scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: translate(20px, -10px) rotate(252deg) scale(1.05);
    opacity: 0.9;
  }
  80% {
    transform: translate(25px, 20px) rotate(288deg) scale(1);
    opacity: 0.6;
  }
  90% {
    transform: translate(5px, 30px) rotate(324deg) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.6;
  }
}

/* Alternative Simpler Wander Animation */
@keyframes wanderSimple {
  0%, 100% {
    transform: 
      translate(calc(var(--x1) * 1px), calc(var(--y1) * 1px)) 
      rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: 
      translate(calc(var(--x2) * 1px), calc(var(--y2) * 1px)) 
      rotate(90deg);
    opacity: 0.9;
  }
  50% {
    transform: 
      translate(calc(var(--x3) * 1px), calc(var(--y3) * 1px)) 
      rotate(180deg);
    opacity: 0.7;
  }
  75% {
    transform: 
      translate(calc(var(--x4) * 1px), calc(var(--y4) * 1px)) 
      rotate(270deg);
    opacity: 0.8;
  }
}

/* Compact Text Section */
.about-text {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  padding: 35px 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 180, 0, 0.12);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-text:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(255, 180, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 180, 0, 0.2);
}

.about-text h2 {
  font-size: 36px;
  color: #ffb400;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffb400;
  border-radius: 2px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8e8e8;
  margin-bottom: 18px;
}

.about-text strong {
  color: #ffb400;
  font-weight: 600;
}

/* Compact Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 180, 0, 0.15);
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  background: rgba(255, 180, 0, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 180, 0, 0.12);
  border-color: rgba(255, 180, 0, 0.2);
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.15);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffb400;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: #ccc;
  font-weight: 500;
}

/* Responsive Design for Single Screen */
@media (max-width: 1024px) {
  .about {
    padding: 80px 5%;
    min-height: 90vh;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .image-wrapper {
    width: 280px;
    height: 280px;
  }
  
  .about-image img {
    width: 240px;
    height: 240px;
  }
  
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 300px; height: 300px; }
  .ring-3 { width: 340px; height: 340px; }
  
  .about-text {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 70px 4%;
    min-height: auto;
  }
  
  .about-container {
    gap: 40px;
  }
  
  .image-wrapper {
    width: 240px;
    height: 240px;
  }
  
  .about-image img {
    width: 200px;
    height: 200px;
  }
  
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 300px; height: 300px; }
  
  .about-text h2 {
    font-size: 30px;
  }
  
  .about-text p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-item {
    padding: 12px 8px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 3%;
  }
  
  .about-text {
    padding: 25px 20px;
  }
  
  .floating-tech {
    font-size: 16px;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .image-wrapper {
    width: 320px;
    height: 320px;
  }
  
  .about-image img {
    width: 280px;
    height: 280px;
  }
  
  .ring-1 { width: 300px; height: 300px; }
  .ring-2 { width: 340px; height: 340px; }
  .ring-3 { width: 380px; height: 380px; }
}

@media (max-width: 768px) {
  .about {
    padding: 100px 5%;
  }
  
  .about-text {
    padding: 35px 25px;
  }
  
  .about-text h2 {
    font-size: 36px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .floating-tech {
    font-size: 18px;
  }
}
/* ===== ENHANCED PROJECTS SECTION ===== */
.projects {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #000 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 180, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 180, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.projects-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Project Filters */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ccc;
  border: 2px solid rgba(255, 180, 0, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  color: #ffb400;
  border-color: rgba(255, 180, 0, 0.4);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #ffb400;
  color: #000;
  border-color: #ffb400;
  box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

/* Enhanced Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 180, 0, 0.4);
  box-shadow: 
    0 20px 40px rgba(255, 180, 0, 0.15),
    0 0 0 1px rgba(255, 180, 0, 0.1);
}

/* Project Image */
.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  width: 50px;
  height: 50px;
  background: #ffb400;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.project-link:hover {
  background: #fff;
  transform: scale(1.1);
}

.project-link.code {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 180, 0, 0.9);
  color: #000;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-badge.mobile { background: #ffb400; }
.project-badge.web { background: #4fc3f7; color: #000; }
.project-badge.game { background: #ba68c8; color: #000; }
.project-badge.database { background: #4db6ac; color: #000; }

/* Project Content */
.project-content {
  padding: 25px;
}

.project-content h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background: rgba(255, 180, 0, 0.1);
  color: #ffb400;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 180, 0, 0.2);
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Updated CTA Section with GitHub Button */
.projects-cta {
  text-align: center;
  background: rgba(255, 180, 0, 0.05);
  border: 2px solid rgba(255, 180, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.projects-cta h3 {
  color: #ffb400;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.projects-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffb400;
  color: #000;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffb400;
}

.cta-btn:hover {
  background: transparent;
  color: #ffb400;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.3);
}

/* GitHub Button */
.github-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #333;
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #333;
}

.github-btn:hover {
  background: #000;
  border-color: #ffb400;
  color: #ffb400;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.3);
}

.github-btn i, .cta-btn i {
  font-size: 1.2rem;
}

/* Responsive Design for CTA Buttons */
@media (max-width: 768px) {
  .projects-cta {
    padding: 40px 25px;
  }
  
  .projects-cta h3 {
    font-size: 1.7rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn, .github-btn {
    min-width: 250px;
    justify-content: center;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .projects-cta {
    padding: 30px 20px;
  }
  
  .projects-cta h3 {
    font-size: 1.5rem;
  }
  
  .projects-cta p {
    font-size: 1rem;
  }
  
  .cta-btn, .github-btn {
    min-width: 200px;
    font-size: 1rem;
    padding: 10px 25px;
  }
}
/* Project Card Animations */
.project-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 80px 3%;
  }
  .tagline{}
  .project-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .project-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .projects-cta {
    padding: 40px 25px;
  }
  
  .projects-cta h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .project-stats {
    grid-template-columns: 1fr;
  }
  
  .project-image {
    height: 180px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-content h3 {
    font-size: 1.3rem;
  }
}

/* ===== SIMPLIFIED SKILLS SECTION ===== */
.skills {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skills::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 180, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: 50px;
  color: #ffb400;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  text-align: center;
}

.skills-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Skills Grid Layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Skill Category Cards */
.skill-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: 20px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.skill-category:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 180, 0, 0.4);
  box-shadow: 
    0 15px 30px rgba(255, 180, 0, 0.15),
    0 0 0 1px rgba(255, 180, 0, 0.1);
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 180, 0, 0.2);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 180, 0, 0.3);
}

.category-icon i {
  font-size: 1.5rem;
  color: #ffb400;
}

.category-header h3 {
  color: #ffb400;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

/* Skill Items */
.skill-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.skill-item:hover {
  background: rgba(255, 180, 0, 0.1);
  border-color: rgba(255, 180, 0, 0.2);
  transform: translateX(5px);
}

.skill-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.skill-name {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .skills {
    padding: 80px 3%;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .skill-category {
    padding: 25px 20px;
  }
  
  .category-header {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .category-icon {
    width: 45px;
    height: 45px;
  }
  
  .category-icon i {
    font-size: 1.3rem;
  }
  
  .category-header h3 {
    font-size: 1.2rem;
  }
  
  .skill-item {
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .skills {
    padding: 60px 3%;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .skills-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .skill-items {
    gap: 12px;
  }
  
  .skill-item {
    padding: 8px 10px;
  }
  
  .skill-name {
    font-size: 0.95rem;
  }
}
/* ===== SIMPLE PROJECT MODAL ===== */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.project-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.project-modal-content {
  background: linear-gradient(145deg, #1a1a1a, #000);
  border: 2px solid #ffb400;
  border-radius: 25px;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px rgba(255, 180, 0, 0.3);
  animation: scaleIn 0.3s ease;
  text-align: center;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-project-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #ffb400;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: none;
  border: none;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-project-modal:hover {
  transform: scale(1.2);
}

.project-modal-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.project-modal-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 15px;
}

.project-modal-title {
  color: #ffb400;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.project-modal-github {
  padding: 20px;
  background: rgba(255, 180, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 180, 0, 0.2);
}

.project-modal-github p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.github-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffb400;
  color: #000;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffb400;
}

.github-link-btn:hover {
  background: transparent;
  color: #ffb400;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.4);
}

.github-link-btn i {
  font-size: 1.3rem;
}

/* Make project cards clickable */
.project-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 180, 0, 0.4);
  box-shadow: 
    0 20px 40px rgba(255, 180, 0, 0.15),
    0 0 0 1px rgba(255, 180, 0, 0.1);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .project-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  .project-modal-image img {
    max-height: 400px;
  }
  
  .project-modal-title {
    font-size: 1.5rem;
  }
  
  .github-link-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .project-modal-content {
    padding: 15px;
  }
  
  .project-modal-image img {
    max-height: 300px;
  }
  
  .project-modal-github {
    padding: 15px;
  }
  
  .project-modal-github p {
    font-size: 1rem;
  }
  
  .github-link-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* ===== SIMPLIFIED PROFESSIONAL FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #000 100%);
  color: #ccc;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #ffb400;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 180, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
  position: relative;
  z-index: 2;
}

/* Footer Main Section */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 180, 0, 0.2);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-logo span {
  color: #fff;
  background: #ffb400;
  padding: 2px 8px;
  border-radius: 5px;
}

.footer-tagline {
  color: #ffb400;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-style: italic;
}

.footer-desc {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h3 {
  color: #ffb400;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffb400;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-column a::before {
  content: '▸';
  color: #ffb400;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-column a:hover {
  color: #ffb400;
  padding-left: 5px;
}

.footer-column a:hover::before {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

/* Copyright */
.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: #ffb400;
}

.footer-made {
  color: #888;
  font-size: 0.85rem;
}

.heart {
  color: #ff4757;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 50px 15px 25px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ===== RESPONSIVE DESIGN ===== */

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s ease;
}

/* ACTIVE STATE (CROSS) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== MEDIA QUERIES ===== */

/* Tablets & Mobiles */
@media (max-width: 1024px) {
  .tagline {
    font-size: 60px;
  }
  .main-title {
    font-size: 100px;
  }
  .hero-image img {
    width: auto;
    height: 75vh;
    object-fit: cover;
  }
  .hero-buttons {
  position: absolute;
  right: 10px;
  top: 90%; 
  transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
  animation: fadeInRight 1s ease-out 1s both;
  padding-bottom: 100px;
}
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-container {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffb400;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }

  /* Hero Section */
  .hero {
    height: 100vh;
    padding: 120px 20px 80px;
  }
  .hero-buttons{
 position: absolute;
 top: 580px;
 display: flex;
 flex-direction: row;
  }
  .btn{
    color: #000;
    background-color: white;
  }
  .tagline {
    font-size: 46px;
    padding-bottom: 20px;
  }

  .main-title {
    font-size: 70px;
  }

  .hero-image img {
    width: auto;
    height: 75vh;
    object-fit: cover;
  }

  /* About Section */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 90%;
    margin-bottom:5px;
  }

  /* Projects */
  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  /* Popup */
  .popup {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 40px;
  }

  .main-title {
    font-size: 70px;
  }

  .hero-image img {
    width: auto;
    height: 100vh;
    object-fit: cover;
  }
  .contact-form {
    padding: 25px;
  }
  .contact-links a {
    padding: 8px 16px;
  }
}
/* ===== SKILL MODAL ===== */
.skill-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #1a1a1a, #000);
  border: 2px solid #ffb400;
  border-radius: 25px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(255, 180, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #ffb400;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header i {
  font-size: 3rem;
  color: #ffb400;
  margin-bottom: 15px;
  display: block;
}

.modal-header h2 {
  color: #ffb400;
  font-size: 2rem;
  margin: 0;
}

.skill-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 180, 0, 0.2);
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.detail-label {
  color: #ccc;
  font-weight: 500;
}

.detail-value {
  color: #ffb400;
  font-weight: 700;
}

.skill-description {
  margin-bottom: 25px;
}

.skill-description p {
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 1rem;
}

.related-skills h4 {
  color: #ffb400;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-tag {
  background: rgba(255, 180, 0, 0.15);
  color: #ffb400;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 180, 0, 0.3);
}

/* ===== SKILL LEVEL INDICATORS ===== */
.skill-level {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.level-dots {
  display: flex;
  gap: 4px;
}

.level-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.level-dot.active {
  background: #ffb400;
  transform: scale(1.2);
}

/* ===== PULSING ANIMATION FOR SKILL CARDS ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.3);
  }
}

.skill-category.highlight {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== SKILL COMPARISON VISUALIZATION ===== */
.skills-comparison {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 180, 0, 0.1);
}

.comparison-title {
  color: #ffb400;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.comparison-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.chart-item {
  text-align: center;
}

.chart-bar {
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.chart-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, #ffb400, #ffca56);
  border-radius: 10px;
  height: 0;
  transition: height 1.5s ease-in-out;
}

.chart-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== CERTIFICATIONS BADGES ===== */
.certifications {
  margin-top: 60px;
  text-align: center;
}

.certifications h3 {
  color: #ffb400;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.cert-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 180, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  min-width: 150px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cert-badge:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: #ffb400;
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.2);
}

.cert-badge i {
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 10px;
  display: block;
}

.cert-badge span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
/* ===== IMPROVED CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 180, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 180, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: 25px;
  padding: 40px;
  height: fit-content;
}

.contact-info h3 {
  color: #ffb400;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 180, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  background: rgba(255, 180, 0, 0.1);
  border-color: rgba(255, 180, 0, 0.3);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 180, 0, 0.3);
  font-size: 1.3rem;
  color: #ffb400;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
}

.availability {
  text-align: center;
  padding: 25px;
  background: rgba(255, 180, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 180, 0, 0.1);
}

.availability h4 {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.availability p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Form Section */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: 25px;
  padding: 40px;
}

.contact-form-container h3 {
  color: #ffb400;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffb400;
  background: rgba(255, 180, 0, 0.05);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.2);
}

.form-group textarea {
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: #ffb400;
  color: #000;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #ffca56;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn i {
  font-size: 1.2rem;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 180, 0, 0.2);
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 180, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb400;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}

/* Popup Enhancement */
.popup {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #00c851;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 200, 81, 0.4);
  animation: fadeInOut 4s ease forwards;
  z-index: 9999;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 3%;
  }
  .main-title{
    font-size: 70px;
  }
  .tagline{
    font-size: 50px;
  }
  .contact-info h3,
  .contact-form-container h3 {
    font-size: 1.5rem;
  }
  .hero-buttons {
position: absolute;
right: 90px;
    margin-top: 15px;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 1050px;
  }
.btn {
    min-width: 100px;
    padding: 6px 14px;
    font-size: 10px;
  }

  .contact-method {
    padding: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px 18px;
  }
  
  .submit-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }
  
  .popup {
    right: 20px;
    left: 20px;
    text-align: center;
  }
  .hero-image img{
    height: 75vh;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 60px 3%;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .contact-methods {
    gap: 20px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}
/* Unicode Icons for Contact Section */
.icon-text {
  font-size: 1.3rem;
  display: block;
}

/* Ensure contact icons display properly */
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 180, 0, 0.3);
  font-size: 1.3rem;
}

/* Social links with Unicode */
.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 180, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb400;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}
/* Fix for Tecno Spark 6 Go hamburger */
@media (max-width: 768px) {
  .hamburger {
    width: 28px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px;
  }
  
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }
  
  /* Ensure proper transform on active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}



