/* Greeting from Nadim,don't copy my style rather try hard gain knowledge */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html{
  scroll-behavior:smooth ;
}

body {
  background: linear-gradient(135deg, #0d0d0d, #1a1a2e);
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 8%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
}

nav img {
  width: 90px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 25px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

nav ul li a:hover {
  color: #ff4d4d;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff4d4d;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Lets make header cool?Okay lets do it*/
#header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 100px 10%;
  overflow: hidden;
}

.hero-background {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.header-text {
  max-width: 500px;
  z-index: 10;
  text-align: left;
}

.header-text p {
  font-size: 18px;
  color: #ff6600;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.header-text h1 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00ccff, #33ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 204, 255, 0.7);
}

/* I know I am handsome but need to adjust the bg here */
.profile-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 102, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.profile-image img:hover {
  transform: scale(1.05);
}


.cta-button {
  display: inline-block;
  background: transparent;
  color: #ff6600;
  padding: 12px 25px;
  border: 2px solid #ff6600;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ff6600;
  z-index: -1;
  transition: width 0.3s ease;
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
  .header-text h1 {
    font-size: 50px;
  }
  .profile-image {
    width: 350px;
    height: 350px;
  }
}

@media only screen and (max-width: 768px) {
  nav ul {
    display: none;
  }
  .hero-background {
    flex-direction: column-reverse;
    text-align: center;
  }
  .header-text {
    margin-top: 40px;
    max-width: 100%;
  }
  .profile-image {
    width: 250px;
    height: 250px;
  }
}

@media only screen and (max-width: 480px) {
  .header-text h1 {
    font-size: 36px;
  }
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* ========== Let's kill the About Section ========== */
#about {
  padding: 90px 5%;
  background: #080808;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#about::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 79, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}


.about-col-1 {
  flex: 0 0 38%;
  min-width: 300px;
  position: relative;
}

.about-col-1 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05) brightness(0.98);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-col-1 img:hover {
  filter: grayscale(0%) contrast(1.1) brightness(1.02);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.about-col-2 {
  flex: 0 0 55%;
  min-width: 300px;
}

.sub-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.3;
  background: linear-gradient(90deg, #fff 60%, #ff8a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.sub-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #ff004f, #ff8a00);
  border-radius: 3px;
}

.about-content {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 30px;
  color: #c0c0c0;
}


.tab-titles {
  display: flex;
  margin: 30px 0 25px;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-links {
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #b0b0b0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-links:hover {
  background: rgba(255, 0, 79, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

.tab-links.active-link {
  background: linear-gradient(135deg, #ff004f, #ff8a00);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 0, 79, 0.3);
}


.tab-contents {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-contents.active-tab {
  display: block;
}

.tab-contents ul {
  padding-left: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.tab-contents ul li {
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.65;
  border-left: 2px solid rgba(255, 0, 79, 0.5);
  transition: all 0.3s ease;
}

.tab-contents ul li:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.tab-contents ul li span {
  display: block;
  color: #ff8a00;
  font-weight: 500;
  font-size: 0.93rem;
  margin-bottom: 5px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========For my little little bro's Responsive Design ========== */
@media (max-width: 1100px) {
  .row {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  #about {
    padding: 70px 5%;
  }
  
  .row {
    flex-direction: column;
  }
  
  .about-col-1 {
    max-width: 320px;
    margin: 0 auto 30px;
  }
  
  .about-col-2 {
    width: 100%;
  }
  
  .sub-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .sub-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .tab-contents ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 576px) {
  #about {
    padding: 60px 15px;
  }
  
  .sub-title {
    font-size: 1.8rem;
  }
  
  .tab-titles {
    justify-content: center;
  }
  
  .tab-contents ul {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    font-size: 0.92rem;
  }
}

@media (max-width: 400px) {
  .about-col-1 {
    min-width: 260px;
  }
  
  .tab-links {
    padding: 6px 12px;
    font-size: 0.88rem;
  }
}

#services {
  padding: 80px 0;
  background-color: #080808; 
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 0, 79, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.service {
  background: linear-gradient(145deg, #121212, #1a1a1a);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,0,79,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}


.service i {
  font-size: 60px;
  color: #ff004f;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service p {
  color: #ababab;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}


.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 0, 79, 0.2);
  border-color: rgba(255, 0, 79, 0.15);
}

.service:hover::before {
  opacity: 1;
}

.service:hover i {
  color: #fff;
  transform: scale(1.15) rotate(5deg);
  text-shadow: 0 0 15px rgba(255, 0, 79, 0.5);
}

.service:hover h2 {
  color: #ff4d79;
  text-shadow: 0 0 5px rgba(255, 0, 79, 0.3);
}

.service:hover p {
  color: #d3d3d3;
}


.footer {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to top, #0a0a0a, #111);
  color: #ababab;
  font-size: 15px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff004f, transparent);
}

.footer a {
  color: #ff004f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 0, 79, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-list {
      grid-template-columns: 1fr;
      grid-gap: 30px;
  }
  
  .service {
      padding: 25px 20px;
  }
  
  .service i {
      font-size: 50px;
  }
}

.dark-portfolio {
  background: #080808; 
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dark-portfolio::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.sub-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.sub-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #6c63ff;
  border-radius: 2px;
}

.sub-title span {
  color: #6c63ff;
  text-shadow: 0 0 15px rgba(108, 99, 255, 0.4);
}

.section-description {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.project-card {
  background: linear-gradient(145deg, #121212, #1a1a1a);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #2a2a2a;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.3);
}

.project-card:hover::before {
  opacity: 1;
}

.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.15);
}

.project-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(24, 119, 242, 0.15);
  color: #4e9af1;
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  z-index: 2;
  border: 1px solid rgba(78, 154, 241, 0.2);
}

.project-card:hover .project-badge {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(78, 154, 241, 0.4);
  background: rgba(24, 119, 242, 0.25);
}

.project-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.project-content h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.4s ease;
}

.project-card:hover .project-content h3 {
  color: #6c63ff;
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

.project-stats {
  display: flex;
  gap: 25px;
  margin: 20px 0;
}

.stat {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: #4e9af1;
  transition: all 0.3s ease;
}

.project-card:hover .stat {
  color: #6c63ff;
}

.stat i {
  margin-right: 8px;
  font-size: 1rem;
}

.project-content p {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.4s ease;
}

.project-card:hover .project-content p {
  color: #e0e0e0;
}

.project-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.action-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-btn:hover::before {
  opacity: 1;
}

.action-btn i {
  margin-right: 10px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.action-btn:hover i {
  transform: scale(1.2);
}

.analytics-btn {
  background: rgba(24, 119, 242, 0.1);
  color: #4e9af1;
  border: 1px solid rgba(78, 154, 241, 0.3);
}

.analytics-btn:hover {
  background: rgba(24, 119, 242, 0.3);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
}

.preview-btn {
  background: linear-gradient(45deg, #4e9af1, #6c63ff);
  color: white;
}

.preview-btn:hover {
  background: linear-gradient(45deg, #6c63ff, #4e9af1);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.notebook-btn {
  background: rgba(101, 221, 155, 0.1);
  color: #65dd9b;
  border: 1px solid rgba(101, 221, 155, 0.3);
}

.notebook-btn:hover {
  background: rgba(101, 221, 155, 0.3);
  box-shadow: 0 8px 20px rgba(101, 221, 155, 0.2);
}

.code-btn {
  background: linear-gradient(45deg, #65dd9b, #4e9af1);
  color: #111;
}

.code-btn:hover {
  background: linear-gradient(45deg, #4e9af1, #65dd9b);
  box-shadow: 0 8px 20px rgba(101, 221, 155, 0.3);
}

.template-btn {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.template-btn:hover {
  background: rgba(255, 107, 107, 0.3);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.demo-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff4d79);
  color: #111;
}

.demo-btn:hover {
  background: linear-gradient(45deg, #ff4d79, #ff6b6b);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.portfolio-cta {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.portfolio-cta p {
  color: #999;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(45deg, #6c63ff, #4e9af1);
  color: white;
  border-radius: 35px;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 1.1rem;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn i {
  margin-left: 12px;
  transition: transform 0.4s ease;
}

.cta-btn:hover {
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
  transform: translateY(-5px);
}

.cta-btn:hover i {
  transform: translateX(8px);
}


@media (max-width: 992px) {
  .work-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
  }
}

@media (max-width: 768px) {
  .dark-portfolio {
      padding: 80px 0;
  }
  
  .sub-title {
      font-size: 2.5rem;
  }
  
  .work-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 15px;
  }
  
  .project-image {
      height: 220px;
  }
  
  .project-content {
      padding: 25px;
  }
}

@media (max-width: 576px) {
  .sub-title {
      font-size: 2rem;
  }
  
  .section-description {
      font-size: 1rem;
      padding: 0 15px;
  }
  
  .project-stats {
      flex-wrap: wrap;
      gap: 15px;
  }
  
  .project-actions {
      flex-wrap: wrap;
  }
  
  .action-btn {
      flex-grow: 1;
      justify-content: center;
  }
}

.blog-section {
    padding: 8rem 0;
    background: #000; 
    position: relative;
    overflow: hidden;
  }
  
  .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    z-index: 0;
  }
  
  .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-intro {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6c63ff;
    background: rgba(108, 99, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff; 
  }
  
  .highlight {
    color: #6c63ff;
  }
  
  .section-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: #ccc; 
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background: #6c63ff;
    color: white;
    border-color: #6c63ff;
  }
  
  .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
  }
  
  .article-card {
    background: black; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(226, 232, 240, 0.6);
  }
  
  .article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(108, 99, 255, 0.2);
  }
  
  .article-header {
    position: relative;
  }
  
  .category-pill {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    z-index: 2;
  }
  
  .category-pill.tutorial {
    background: #6c63ff;
    color: white;
  }
  
  .category-pill.trends {
    background: #ff6b6b;
    color: white;
  }
  
  .category-pill.case-study {
    background: #10b981;
    color: white;
  }
  
  .article-image {
    height: 220px;
    overflow: hidden;
  }
  
  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .article-card:hover .article-image img {
    transform: scale(1.08);
  }
  
  .article-body {
    padding: 1.75rem;
  }
  
  .article-body time {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.75rem;
  }
  
  .article-body h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #fff; 
  }
  
  .article-body h3 a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(to right, currentColor, currentColor);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.6s ease;
  }
  
  .article-body h3 a:hover {
    background-size: 100% 1px;
  }
  
  .article-excerpt {
    color: #ddd; 
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .article-footer {
    padding: 0 1.75rem 1.75rem;
  }
  
  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .read-more svg {
    transition: transform 0.3s ease;
  }
  
  .read-more:hover {
    color: #5a52d5;
  }
  
  .read-more:hover svg {
    transform: translateX(3px);
  }
  
  .section-footer {
    text-align: center;
    margin-top: 4rem;
  }
  
  .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: #6c63ff;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
  }
  
  .view-all-btn:hover {
    background: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
  }
  
  
  @media (max-width: 768px) {
    .blog-section {
      padding: 5rem 0;
    }
    
    .article-grid {
      grid-template-columns: 1fr;
    }
    
    .section-controls {
      gap: 0.5rem;
    }
    
    .filter-btn {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
    }
  }
  
  
#contact {
    padding: 80px 0;
    background: #111;
    color: #eee;
  }
  
  #contact .sub-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
  }
  
  #contact .sub-title span {
    color: #6c63ff;
  }
  
  #contact .sub-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #6c63ff;
  }
  
  .contact-left p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #bbb;
    display: flex;
    align-items: center;
  }
  
  .contact-left p i {
    margin-right: 15px;
    color: #6c63ff;
    font-size: 1.2rem;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c63ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
  }
  
  .social-icon:hover {
    background: #6c63ff;
    color: #111;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
  }
  
  .btn-cv {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: #6c63ff;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-cv i {
    margin-right: 10px;
  }
  
  .btn-cv:hover {
    background: #5a52d5;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    transform: translateY(-3px);
  }
  
  .contact-form {
    width: 100%;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 25px;
  }
  
  .form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c63ff;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #222;
    color: #eee;
  }
  
  .contact-form textarea {
    height: 150px;
    padding-top: 20px;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    outline: none;
    background: #252525;
  }
  
  .btn-submit {
    width: 100%;
    padding: 15px;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-submit:hover {
    background: #5a52d5;
    transform: translateY(-3px);
    box-shadow: 0 ;
  }

.copyright {
    background: #0a0a0a;
    padding: 30px 0;
    border-top: 1px solid #222;
    font-family: 'Poppins', sans-serif;
  }
  
  .copyright .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .footer-logo img:hover {
    opacity: 1;
  }
  
  .footer-text p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .footer-text p span {
    color: #6c63ff;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #6c63ff;
  }
  
  .footer-links span {
    color: #444;
    font-size: 0.8rem;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c63ff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
  }
  
  .footer-social .social-icon:hover {
    background: #6c63ff;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
  }

  #year {
    font-weight: 500;
  }
  

  @media (max-width: 768px) {
    .footer-links {
      flex-direction: column;
      gap: 5px;
    }
    
    .footer-links span {
      display: none;
    }
    
    .footer-text p {
      font-size: 0.8rem;
    }
  }
 
@media only screen and (max-width: 1200px) {
    /* For tablets and small laptops */
    .container {
      padding: 0 30px;
    }
    
    .about-col-1, .about-col-2 {
      flex-basis: 100%;
    }
    
    .header-text {
      padding-top: 80px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    /* For smaller tablets */
    #header {
      background-position: right;
    }
    
    .sub-title {
      font-size: 32px;
    }
    
    .tab-titles {
      margin: 15px 0 30px;
    }
    
    .tab-links {
      margin-right: 30px;
      font-size: 16px;
    }
    
    .project-card {
      margin-bottom: 30px;
    }
  }
  
  @media only screen and (max-width: 600px) {
    /* For mobile phones */
    html {
      font-size: 14px;
    }
    
    #header {
      background: none;
    }
    
    .header-text h1 {
      font-size: 28px;
    }
    
    .header-text p {
      font-size: 16px;
    }
    
    nav ul {
      position: fixed;
      right: -200px;
      top: 0;
      width: 200px;
      height: 100vh;
      background: #111;
      z-index: 2;
      transition: right 0.5s;
    }
    
    nav ul li {
      display: block;
      margin: 25px;
    }
    
    nav ul .fas {
      position: absolute;
      top: 25px;
      left: 25px;
      cursor: pointer;
    }
    
    .about-col-1 img {
      width: 80%;
      display: block;
      margin: 0 auto;
    }
    
    .tab-titles {
      justify-content: space-around;
    }
    
    .tab-links {
      margin-right: 0;
      font-size: 15px;
    }
    
    .contact-left, .contact-right {
      flex-basis: 100%;
    }
    
    .copyright p {
      font-size: 12px;
    }
  }
  
  @media only screen and (max-width: 400px) {
 
    .header-text h1 {
      font-size: 24px;
    }
    
    .sub-title {
      font-size: 28px;
    }
    
    .tab-links {
      font-size: 14px;
    }
    
    .project-actions {
      flex-direction: column;
      gap: 10px;
    }
    
    .action-btn {
      width: 100%;
      justify-content: center;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  
  @media only screen and (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
    .header-text {
      padding-top: 40px;
    }
    
    .about-col-1 {
      flex-basis: 40%;
    }
    
    .about-col-2 {
      flex-basis: 55%;
    }
  }
  
 
  @media only screen and (max-height: 500px) and (orientation: landscape) {
    #header {
      height: auto;
      padding-bottom: 40px;
    }
    
    .header-text {
      padding-top: 60px;
    }
  }
 /* Allah hafez its not end,dekhaaa hobee abar code copy kora haram okay? */
