* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0; 
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #6701ffc8, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: -5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
   margin-left: 650px;
}

.nav-menu a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #6be4ff;
}

nav ul {
  display: flex;
  gap: 32px; /* yahan apni marzi ka gap px me do */
  list-style: none;
  margin: 0;
  padding: 0;
}
 
nav ul li {
  margin-right: 32px;
}

nav ul li:last-child {
  margin-right: 0; 
}

/* Hero Section */
.hero {
  height: auto;
  background: linear-gradient(135deg, #e00f0f 0%, #c25fa1 100%);
  display: flex;
  align-items: flex-start; 
  justify-content: center; 
  text-align: left;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  padding-top: 200px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

/* Heading with highlight */
.hero h1 {
  font-size: 3.8rem; 
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  line-height: 1.2;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #2b0404, #000000);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
.hero p {
  font-size: 1.7rem; 
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.hero-buttons {
  margin-top: 20px;
  
  
}

.hero-buttons .cta-button {
  display: inline-block;
  padding: 1.8rem 1.8rem; 
  font-size: 1.3rem; 
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-right: 15px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .cta-button.primary {
  background: linear-gradient(45deg, #000000, #fff4f4);
  color: white;
}

.hero-buttons .cta-button.secondary {
  background: linear-gradient(45deg, #000000, #fff4f4);
  border: 2px solid white;
  color: white;
}

.hero-buttons .cta-button:hover {
  transform: translateY(-3px);
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.hero-stats .stat h3 {
  font-size: 3rem; 
  font-weight: bold;
  color: white;
}

.hero-stats .stat p {
  font-size: 1rem; 
  color: rgba(255, 255, 255, 0.8);
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Portfolio Section */
.portfolio { 
  padding-bottom: 5rem;
 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 0px; 
  padding-top: 20px;
}

.section-title h2 {
  font-size: 4rem; 
  color: #fff;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.4rem; 
  color: #888;
}


/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 1rem 1.6rem;
  background: transparent;
  color: #fff;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.portfolio-item video,
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover video,
.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: #888;
  margin-bottom: 1rem;
}

.portfolio-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: #fff;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 107, 0.9);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .play-overlay {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.hidden {
  display: none;
}


.load-more-wrapper {
  display: flex;
  justify-content: flex-end; /* Right align */
  margin-right: -21rem; /* Right se thoda gap */
  margin-bottom: 1rem;
}


.load-more-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #4a4aff;
  background: transparent;
  border: 2px solid #4a4aff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.load-more-btn:hover {
  background: #4a4aff;
  color: white;
  transform: scale(1.05);
}


/* === ABOUT SECTION -=== */
.about {
    padding: 12rem 0; 
    background: #f8fbfd;
}

.about-visual {
  align-self: start;               
  justify-self: end;               
  margin-top: clamp(8px, 1vw, 16px); 
  width: 100%;                     
  max-width: 400px;                
}


.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
}

.about-description {
    font-size: 1.25rem; 
    line-height: 1.75;
    margin-bottom: 2.5rem;
    color: #555;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about h2 {
    font-size: 48px; /* heading ko bada kiya */
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: left; 
    margin-left: -3.5px;
}

.about p {
    font-size: 1.1rem; /* paragraph thoda bada */
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.feature {
    background: #fff;
    border-radius: 14px; 
    padding: 1.5rem 1.75rem; 
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2rem; 
    color: #6c63ff;
    min-width: 50px;
}

.feature h3 {
    font-size: 1.4rem; 
    margin-bottom: 0.35rem;
}

.feature p {
    font-size: 1.15rem; 
    margin: 0;
    color: #666;
}

.skills-chart {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 400px;
}

.skill {
    margin-bottom: 20px;
}

.skill:last-child {
    margin-bottom: 0;
}

.skill-name {
    font-weight: 600;
    margin-bottom: 6px;
}

.skill-bar {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #6c63ff, #7a72ff);
}

.skill-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
    max-width: 500px;
}


.skill-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.skill span {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.progress-bar {
    height: 6px;
    background: #f3f5f7;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #4facfe, #7367f0);
    border-radius: 10px;
}

/* === CONTACT SECTION === */
.contact {
    padding: 6rem 0;
    background: #fff;
}

.section-header h2.section-title {
    font-size: 3rem; 
}

.section-description {
    font-size: 1.3rem; /* Subtitle bigger */
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: #f8fbfd;
    border-radius: 14px;
    padding: 2rem; /* Bigger box */
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(0,0,0,0.06);
}

.contact-item i {
    font-size: 2.4rem; /* Bigger icons */
    color: #6c63ff;
    min-width: 50px;
}

.contact-item h3 {
    font-size: 1.4rem; /* Bigger label */
    margin-bottom: 0.4rem;
}

.contact-item p {
    font-size: 1.15rem; /* Bigger details */
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #f8fbfd;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 1.25rem 1.5rem; /* Bigger padding */
    font-size: 1.15rem; /* Bigger text */
}

.contact-form textarea {
    min-height: 180px; /* Taller textarea */
}

.contact-form button {
    background: #6c63ff;
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    border: none;
    font-size: 1.15rem; /* Bigger button text */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #5a52d8;
}

.section-description {
    font-size: 1.3rem; 
    color: #666;
    margin-bottom: 6.8rem; 
}

.section-header h2.section-title {
    font-size: 3rem; 
    margin-bottom: 7rem; 
    margin-top: 20px; /
}

.section-header {
    margin-top: -100px !important; 
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-primary);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.modal-header {
    padding: 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.video-tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}



/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff6b6b;
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Footer */
/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 90px;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-logo span {
    color: #0528d6c8
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #00ff9d;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #00ff9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom i {
    color: red;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
}









