@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Inter:wght@400;500&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161f1a;
  --accent-green: #00ff88;
  --text-primary: #fff;
  --text-secondary: #e0e0e0;
}

/* Global */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}
header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 30%, var(--accent-green) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* About */
#about .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#about img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-green);
  box-shadow: 0 0 30px #00ff8860, 0 8px 30px #000b;
  transition: transform 0.3s;
}
#about img:hover {
  transform: scale(1.05);
}

/* Section Titles */
section {
  padding: 58px 0;
}
section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}
section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), #6c5ce7);
  border-radius: 2px;
}

/* Software Intro */
.software-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.13rem;
  opacity: 0.9;
}

/* Software Cards */
.software-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 710px;
  margin: 0 auto;
}
.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 32px;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 4px 20px #00000040;
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px #00000050;
}

/* Circular Progress */
.skill-svg-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  transform: rotate(-90deg);
}
.progress-ring-bg {
  stroke: rgba(255,255,255,0.1);
  stroke-width: 6;
  fill: none;
}
.progress-ring {
  stroke: var(--accent-green);
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 238.76;
  stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 1.2s ease-out;
}

/* Logo */
.skill-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  background: #141f19;
  box-shadow: 0 0 10px #00ff8888;
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(22, 31, 26, 0.25);         /* semi-transparent glassy color */
  border-radius: 20px;
  box-shadow: 0 4px 20px #00000040;
  backdrop-filter: blur(5px);                /* <-- adds glass blur effect */
  -webkit-backdrop-filter: blur(14px);        /* for Safari */
  border: 1.5px solid rgba(255,255,255,0.10); /* subtle border for glass edge */
  transition: transform 0.3s, box-shadow 0.3s;
}


/* Skill Info */
.skill-info {
  width: 100%;
}
.skill-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.skill-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Reviews */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 28px;
  max-width: 980px;
  margin: auto;
}
.review-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px #00000040;
}
.review-card p {
  font-style: italic;
  color: var(--text-secondary);
}
.review-card span {
  color: var(--accent-green);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Video Gallery */
#video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  gap: 22px;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 16px;
}
.video-card {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow: 0 4px 18px #00000040;
  overflow: hidden;
}
.video-card iframe {
  width: 100%;
  height: 210px;
  border: none;
}

/* Contact */
#contact {
  text-align: center;
  background: rgba(17, 17, 17, 0.4);         /* semi-transparent */
  backdrop-filter: blur(5px);               /* glass blur */
  -webkit-backdrop-filter: blur(5px);
  padding: 58px 0;
  border: 1px solid rgba(255,255,255,0.05);
}

#contact p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.17rem;
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1bb55b; /* darker green */
  color: #ffffff;     /* white text */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px #1bb55b44, 0 0 30px #1bb55b33;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-link img {
  width: 24px;
  height: 24px;
  filter: none;
}
.whatsapp-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px #1bb55b55, 0 0 36px #1bb55b44;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 750px) {
  .skill-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .skill-svg-wrap {
    margin-bottom: 16px;
  }
}
body {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary)); /* optional overlay */
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  /* Remove or comment out any previous background-image/direct background URL here if present */
}

/* Add a ::before pseudo-element to display the image and control its opacity */
body::before {
  content: "";
  position: fixed;      /* covers the whole viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('images/background.jpg') center center/cover no-repeat;
  opacity: 0.2;         /* adjust this value: 0.1 = very light, 1 = fully visible */
  z-index: -1;          /* make sure it's behind all content */
  pointer-events: none; /* so it doesn't break any clicks */
}
/* Portfolio Section Styling */
.portfolio-intro, .thumbnails-intro, .ai-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Category Containers */
.video-categories, .thumbnail-categories, .ai-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.video-category, .thumbnail-category, .ai-tools-section, .ai-comparison-section {
  margin-bottom: 60px;
}

/* Category Titles */
.category-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
}

/* Video Grids */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Thumbnail Grid */
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 16px;
}
.thumbnail-card {
  background: rgba(22,31,26,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px #00000040;
  transition: transform 0.3s, box-shadow 0.3s;
}
.thumbnail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px #00000060;
}
/* Make thumbnail images full width, auto height */
.thumbnail-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Thumbnail Info */
.thumbnail-info {
  padding: 16px;
}
.thumbnail-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.thumbnail-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* AI Section */
.ai-grid, .comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ai-card {
  background: rgba(22, 31, 26, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s;
}

.ai-card:hover {
  transform: translateY(-4px);
}

.ai-tool-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.ai-description {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
/* AI Section General */
.ai-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* AI Tools & Comparison Containers */
.ai-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-tools-section,
.ai-comparison-section {
  margin-bottom: 60px;
}

/* Category Titles for AI Sections */
.ai-tools-section .category-title,
.ai-comparison-section .category-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.ai-tools-section .category-title::after,
.ai-comparison-section .category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
}

/* Grid Layout for AI cards */
.ai-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Individual AI Tool Card */
.ai-card {
  background: rgba(22, 31, 26, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px #00000040;
  color: var(--text-primary);
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px #00000070;
}

/* AI Tool Name */
.ai-tool-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 12px;
}

/* AI Description Text */
.ai-description {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 1rem;
}

/* Responsive Adjustments for smaller screens */
@media (max-width: 768px) {
  .ai-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
.video-card {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow: 0 4px 18px #00000040;
  overflow: hidden;
  max-width: 600px;      /* adjust as you like for layout */
  margin: 0 auto;
  position: relative;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  background: #000;
  border: none;
  min-height: 300px;     /* optional: minimum height for big screens */
}
.video-grid,
.thumbnail-grid,
.ai-grid,
.comparison-grid,
.reviews-container {
  gap: 40px;      /* Pehle 20-24px tha, ab 40px ya jitna chahe badha do */
  margin-bottom: 40px;  /* Section ke andar grids ke baad aur gap ho */
}

/* Agar aur bhi categories jaise .software-list, .skill-card ho grid style mein, toh un par bhi apply kar sakte ho */
.video-grid,
.thumbnail-grid,
.ai-grid,
.comparison-grid,
.reviews-container {
  gap: 40px;           /* Pehle 20-24px hota hai, ab 40px ya jitna you like */
  margin-bottom: 40px; /* Grid ke baad bhi spacing */
}
.video-category,
.thumbnail-category,
.ai-tools-section,
.ai-comparison-section {
  margin-bottom: 72px;  /* Default 60px hota hai, ab 72px ya zyada kar do */
}
/* ==== Premium Glassy/Dark Neon Scrollbar ==== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 14px;
  background: transparent;  /* outer area transparent */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #222 70%, #00ff88 120%);
  border-radius: 10px;
  border: 4px solid rgba(22, 31, 26, 0.45); /* glassy border, matches your card bg */
  box-shadow: 0 2px 16px #00ff8880, 0 1.5px 6px #000a;
  transition: background 0.25s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00ff88 40%, #1e272e 120%);
}

/* Optional slim inner track for full glass-blur effect */
::-webkit-scrollbar-track {
  background: rgba(22, 31, 26, 0.16); 
  border-radius: 10px;
  box-shadow: inset 0 1px 6px #0008;
}

/* Firefox (limited but works for color/width) */
* {
  scrollbar-width: thin;
  scrollbar-color: #00ff88 #161f1a;
}
:root { --scrollbar-thumb: #00ff88; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--scrollbar-thumb), #1e272e 120%);
  border-radius: 10px;
  border: 4px solid rgba(22,31,26,0.45);
  box-shadow: 0 2px 16px #00ff8890;
  transition: background 0.3s;
}
::-webkit-scrollbar { width: 14px; background: transparent; }
::-webkit-scrollbar-track {
  background: rgba(22,31,26,0.16);
  border-radius: 10px;
}
* { scrollbar-color: var(--scrollbar-thumb) #161f1a; }

.about-quote {
  font-style: italic;
  color: #b1ffca;
  margin-top: 24px;
  display: block;
  font-size: 1.08rem;
}
