@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Karla', sans-serif;
}

:root {
  --primary-header: #0063f5;
      --primary-light-header: #2c8fff;
      --accent-header: #0063f5;
      --dark-header: #0a0a14;
      --light-header: #f0f5ff;
      --text-header: #e0e0e0;
    --white-color: #fff;
    --bg-color: #fff;
    --gray-color: #ccc;
    --primary: #0063f5;
    --secondary: #00e5ff;
    --dark: #0c0c14;
    --light: #ffffff;
    --card-bg: rgba(18, 18, 32, 0.8);
    --card-hover: rgba(30, 30, 60, 0.9);
    --primary-skill: #0063f5;
    --primary-glow-skill: #4cc9ff;
    --bg-dark-skill: #0a0a0f;
    --bg-light-skill: #f0f0f5;
    --text-dark-skill: #e0e0e0;
    --text-light-skill: #151520;
    --card-dark-skill: #151520;
    --card-light-skill: #ffffff;

    --dark-bg: #0d0d12;
      --darker-bg: #070709;
      --primary-red: #0063f5;
      --primary-red-glow: #4cc9ff;
      --text-light: #f2f2f2;
      --text-dim: #a0a0a8;
      --accent-blue: #4cc9ff;
      --accent-purple: #9f6eff;
      --success: #36e47e;
      --error: #ff4757;
      --input-bg: rgba(40, 40, 50, 0.7);
  }

  /* =====  Header section start ===== */

  .hero-header{
    background-color: var(--dark-header);
      color: var(--text-header);
      overflow-x: hidden;
  }

  .header-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  /* Nav Bar Styles */
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 7px 3rem;
    z-index: 100;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 20, 0.7);
  }
  
  .nav-scrolled {
    padding: 0 3rem;
    box-shadow: 0 5px 20px rgba(0, 99, 245, 0.15);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, var(--primary-header), var(--accent-header)); */
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .logo-img::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--dark-header);
    border-radius: 8px;
    transform: rotate(45deg);
    display: none;
  }
  
  .logo-img::after {
    content: '</>';
    position: relative;
    color: var(--light-header);
    font-weight: bold;
    font-size: 1rem;
    z-index: 1;
    display: none;
  }
  
  .logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-light-header), var(--accent-header));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
  }
  
  .nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-header);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-header), var(--accent-header));
    transition: width 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--light-header);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .active-link {
    color: var(--light-header);
  }
  
  .active-link::after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-header);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    min-height: 100vh;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 4rem auto 0 auto;
    width: 100%;
  }
  
  .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  
  .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
  }
  
  .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 99, 245, 0.4) 0%, rgba(10, 10, 20, 0) 70%);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
  }
  
  .orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 0, 255, 0.3) 0%, rgba(10, 10, 20, 0) 70%);
    bottom: 100px;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
  }
  
  @keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
    100% { transform: translate(0, 0); }
  }
  
  .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(240, 245, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(240, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
  }
  
  .particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(240, 245, 255, 0.2);
    border-radius: 50%;
  }
  
  .hero-content {
    width: 60%;
    z-index: 2;
    animation: fadeIn 1s ease-out forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .greeting {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-light-header);
  }
  
  .dev-name {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-header) 0%, var(--primary-light-header) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .job-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-header);
    position: relative;
    display: inline-block;
  }
  
  .job-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-header), var(--accent-header));
    bottom: -10px;
    left: 0;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .primary-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-header), var(--accent-header));
    color: var(--light-header);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 99, 245, 0.3);
  }
  
  .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: left 0.6s ease;
    z-index: -1;
  }
  
  .primary-btn:hover::before {
    left: 100%;
  }
  
  .secondary-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-header);
    border: 2px solid var(--primary-header);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .secondary-btn:hover {
    background: rgba(0, 99, 245, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 99, 245, 0.1);
  }
  
  .hero-stats {
    display: flex;
    gap: 3rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-light-header), var(--accent-header));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-header);
  }
  
  .hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 90%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 70%;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  
  .floating-graphic {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 99, 245, 0.05), rgba(125, 0, 255, 0.05));
    border: 1px solid rgba(240, 245, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* animation: float-graphic 8s ease-in-out infinite; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .floating-graphic img{
    height: auto;
    width: 106%;
    /* position: absolute;
    top: -11px; */
  }
  
  .graphic-1 {
    width: 66%;
    height: auto;
    top: 35px;
    left: 5%;
    animation-delay: 0s;
    border-radius: 50%;
  }
  
  .graphic-2 {
    width: 40%;
    height: 30%;
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
  }
  
  .graphic-3 {
    width: 30%;
    height: 20%;
    top: 20%;
    right: 0;
    animation-delay: 2s;
  }
  
  @keyframes float-graphic {
    0% { transform: translateZ(0) translateY(0) rotate(0); }
    50% { transform: translateZ(20px) translateY(-20px) rotate(5deg); }
    100% { transform: translateZ(0) translateY(0) rotate(0); }
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .scroll-indicator:hover {
    opacity: 1;
  }
  
  .scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .scroll-icon {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 1200px) {
    .hero-content {
      width: 50%;
    }
    
    .dev-name {
      font-size: 3rem;
    }
    
    .hero-image {
      width: 50%;
    }
  }
  
  @media screen and (max-width: 992px) {
    .nav-container {
      padding: 1.5rem 2rem;
    }
    
    .nav-scrolled {
      padding: 1rem 2rem;
    }
    
    .hero-section {
      padding: 0 2rem;
    }
    
    .hero-content {
      width: 100%;
      padding-top: 6rem;
    }
    
    .dev-name {
      font-size: 2.8rem;
    }
    
    .hero-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      min-height: 100vh;
      padding: 0 3rem;
      max-width: 1400px;
      margin: 4rem auto 0 auto;
      width: 100%;
    }

    .hero-content{
      width: 100%;
      padding: 0;
    }

    .hero-image{
      width: 100%;
      position: relative;
      height: 50vh;
    }
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      flex-direction: column;
      background-color: rgba(10, 10, 20, 0.95);
      backdrop-filter: blur(10px);
      width: 280px;
      height: 100vh;
      padding: 6rem 2rem 2rem;
      gap: 2rem;
      transition: right 0.4s ease;
      z-index: 100;
    }
    
    .nav-links.show-menu {
      right: 0;
    }
    
    .mobile-menu-btn {
      display: block;
    }
    
    .hero-content {
      padding-top: 5rem;
    }
    
    .dev-name {
      font-size: 2.5rem;
    }
    
    .job-title {
      font-size: 1.25rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .hero-stats {
      gap: 1.5rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }
  
  @media screen and (max-width: 576px) {
    .nav-container {
      padding: 1.25rem 1.5rem;
    }
    
    .nav-scrolled {
      padding: 0.75rem 1.5rem;
    }
    
    .hero-section {
      padding: 0 1.5rem;
    }
    
    .logo-text {
      font-size: 1.25rem;
    }
    
    .dev-name {
      font-size: 2.25rem;
    }
    
    .hero-stats {
      flex-wrap: wrap;
      gap: 1.5rem 2rem;
    }
    
    .stat-number {
      font-size: 1.75rem;
    }
    
    .orb-1 {
      width: 300px;
      height: 300px;
    }
    
    .orb-2 {
      width: 200px;
      height: 200px;
    }
  }

  
  /* =====  Header section end ===== */


  /* whatsapp button style start */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { box-shadow: 0px 0px 10px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0px 0px 20px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0px 0px 10px rgba(37, 211, 102, 0.5); }
}

.whatsapp-btn {
    animation: pulse 1.5s infinite;
}

  /* whatsapp button style end */

/* About section */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
}
.feature {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: end;
}
.feature-item-2{
  text-align: start;
}
.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 2rem;
  margin: 5px 0;
  color: var(--bg-light-skill);
}
.feature-item p {
  font-size: 1.1rem;
  color: #494949;
  max-width: 290px;
  font-weight: 500;
  color: var(--bg-light-skill);
}
.feature-center img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}
@media (max-width: 975px) {
  .features {
      flex-direction: column;
  }
  .feature {
      width: 100%;
      align-items: center;
  }
  .feature-center img {
      max-width: 250px;
  }
}

.why-choose-us-main-container{
  background: var(--bg-dark-skill);
}

.choose-header{
  text-align: center;
  padding-top: 100px;
}

.choose-header h1{
  font-weight: bold;
  font-family: sans-serif;
  color: white;
  text-shadow: 0 0 5px var(--light);
}


/* <!-- ===============  Project style start  ================= --> */

.our-project-section{
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

.projects-section {
  position: relative;
  padding: 8rem 1rem;
  min-height: 100vh;
  overflow: hidden;
}

.glow-bg {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: -1;
}

.glow-1 {
  background: var(--primary);
  top: 10%;
  left: -10%;
  animation: float 15s ease-in-out infinite alternate;
}

.glow-2 {
  background: var(--secondary);
  bottom: 10%;
  right: -10%;
  animation: float 18s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(5%, 5%);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.6s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(107, 34, 255, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  perspective: 1000px;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
  transform-style: preserve-3d;
  height: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--card-hover);
}

.project-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  width: 100%;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-thumb img {
  transform: scale(1.1);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(12, 12, 20, 0.8));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
}

.project-info {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.project-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}

.project-card:hover .project-title {
  transform: translateX(7px);
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.tech-tag {
  padding: 0.3rem 0.8rem;
  background: rgb(0 0 0 / 10%);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-link:hover {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-link i {
  font-size: 1.2rem;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 3;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project {
  padding: 0.8rem 1.8rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: 0.1s;
  z-index: 4;
}

.project-card:hover .view-project {
  transform: translateY(0);
  opacity: 1;
}

.view-project:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(107, 34, 255, 0.4);
}

.circle-decoration {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 5%;
  right: 10%;
  animation: rotate 90s linear infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  animation: rotate 60s linear infinite reverse;
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.section-indicator {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.indicator-line {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
}

.indicator-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.light-beam {
  position: absolute;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: beam-grow 3s ease-in-out infinite alternate;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@keyframes beam-grow {
  from {
      height: 0;
      opacity: 0.3;
  }
  to {
      height: 100px;
      opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .section-indicator {
      display: none;
  }
  
  .projects-section {
      padding: 4rem 1rem;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
  
  .projects-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
  }
  
  .project-card {
      height: 400px;
  }
  
  .filter-container {
      margin-bottom: 2rem;
  }
  
  .filter-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
      grid-template-columns: 1fr;
  }
  
  .project-card {
      height: auto;
  }
  
  .project-thumb {
      height: 180px;
  }
}

/* Cursor Effect */
.cursor-follow {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border 0.3s;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-inner {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.dark-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dark-overlay.show .lightbox {
  opacity: 1;
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.close-lightbox:hover {
  background: rgba(255, 255, 255, 0.2);
}

.project-title::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.4s ease;
}

.project-card:hover .project-title::before {
  width: 50px;
}

.grid-noise {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

/* <!-- ===============  Project style end  ================= --> */


/* <!-- ===============  Technical skill style start  ================= --> */

.technical-skill-first-container{
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: var(--bg-dark-skill);
  color: var(--text-dark-skill);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.technical-skill-first-container.light-mode{
  background-color: var(--bg-light-skill);
      color: var(--text-light-skill);
}

.skill-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}


.skills-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.skills-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.skills-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: var(--primary-skill);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary-glow-skill);
}

.skills-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.skill-category {
  background-color: var(--card-dark-skill);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.light-mode .skill-category {
  background-color: var(--card-light-skill);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-skill);
  box-shadow: 0 0 15px var(--primary-glow-skill);
}

.skill-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.light-mode .skill-category:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.skill-category-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.light-mode .skill-category-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.skill-category-icon {
  margin-right: 10px;
  font-size: 1.3rem;
  color: var(--primary-skill);
}

.skill-item {
  margin-bottom: 2rem;
  position: relative;
}

.skill-item:last-child {
  margin-bottom: 0;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.skill-name {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.skill-percentage {
  color: var(--primary-skill);
  font-weight: 700;
  font-size: 1rem;
}

.skill-progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.light-mode .skill-progress-container {
  background-color: rgba(0, 0, 0, 0.1);
}

.skill-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-skill), var(--primary-glow-skill));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
  position: relative;
  box-shadow: 0 0 10px var(--primary-glow-skill);
}

.skill-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.circular-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.circular-skill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.circular-skill.visible {
  opacity: 1;
  transform: scale(1);
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.circular-progress svg {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.circular-progress circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transform-origin: center;
}

.circular-progress .bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.light-mode .circular-progress .bg {
  stroke: rgba(0, 0, 0, 0.1);
}

.circular-progress .progress {
  stroke: var(--primary-skill);
  stroke-dasharray: 0 339.292;
  transition: stroke-dasharray 2s cubic-bezier(0.1, 0.5, 0.1, 1);
  filter: drop-shadow(0 0 5px var(--primary-glow-skill));
}

.circular-value {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-skill);
}

.circular-skill-name {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-tag {
  background-color: rgb(0 0 0 / 10%);
  color: var(--primary-skill);
  border: 1px solid var(--primary-skill);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-tag:hover {
  background-color: var(--primary-skill);
  color: var(--bg-dark-skill);
  box-shadow: 0 0 10px var(--primary-glow-skill);
}

.light-mode .tech-tag:hover {
  color: var(--bg-light-skill);
}

/* Responsive styles */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .circular-skills {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .skills-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .circular-skills {
    grid-template-columns: 1fr;
  }
  
  .skills-title {
    font-size: 1.8rem;
  }
  
  .skill-header-container {
    padding: 1rem;
  }
}

/* Sci-fi decorative elements */
.decoration {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.deco-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 2px solid var(--primary-skill);
  border-radius: 50%;
  animation: circle 4s infinite alternate;
}

.deco-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 200px;
  border: 2px solid var(--primary-skill);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: circle 6s infinite alternate-reverse;
}

.deco-3 {
  top: 40%;
  right: 10%;
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary-skill);
  transform: rotate(30deg);
  animation: rotate 20s linear infinite;
}

@keyframes circle {
  0% {
    box-shadow: 0 0 10px var(--primary-glow-skill);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 30px var(--primary-glow-skill);
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation class for scroll reveal */
.skill-category.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Final touches and glitch effect */
.glitch-effect {
  position: relative;
  overflow: hidden;
}

.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-effect::before {
  color: #0ff;
  z-index: -1;
}

.glitch-effect::after {
  color: #f0f;
  z-index: -2;
}

.glitch-effect:hover::before {
  animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.glitch-effect:hover::after {
  animation: glitch-anim2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
}

@keyframes glitch-anim {
  0% {
    transform: translate(0);
    opacity: 0.3;
  }
  20% {
    transform: translate(-5px, 5px);
    opacity: 0.5;
  }
  40% {
    transform: translate(-5px, -5px);
    opacity: 0.3;
  }
  60% {
    transform: translate(5px, 5px);
    opacity: 0.5;
  }
  80% {
    transform: translate(5px, -5px);
    opacity: 0.3;
  }
  100% {
    transform: translate(0);
    opacity: 0.3;
  }
}

@keyframes glitch-anim2 {
  0% {
    transform: translate(0);
    opacity: 0.3;
  }
  20% {
    transform: translate(5px, -5px);
    opacity: 0.5;
  }
  40% {
    transform: translate(5px, 5px);
    opacity: 0.3;
  }
  60% {
    transform: translate(-5px, -5px);
    opacity: 0.5;
  }
  80% {
    transform: translate(-5px, 5px);
    opacity: 0.3;
  }
  100% {
    transform: translate(0);
    opacity: 0.3;
  }
}

/* <!-- ===============  Technical skill style end  ================= --> */


/* <!-- ===============  Get in touch start  ================= --> */


  .getinTouch-container{
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    transition: background-color 0.3s ease;
  }
  
  .get-in-touch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  
  .light-mode .contact-section {
    background-color: var(--light-darker-bg);
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  /* Form Styles */
  .contact-form {
    padding: 30px;
    background: var(--darker-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 58, 76, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 255, 0.2);
  }
  
  .light-mode .contact-form {
    background: var(--light-darker-bg);
    border: 1px solid rgba(255, 58, 76, 0.2);
  }
  
  .section-title-1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
  }
  
  .section-title-1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    transition: width 0.3s ease;
  }
  
  .section-title-1:hover::after {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--primary-red);
    transition: color 0.3s ease;
  }
  
  .light-mode .form-group label {
    color: var(--primary-red);
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .light-mode .form-control {
    background: var(--light-input-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-text);
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red-glow);
  }
  
  .form-control.error {
    border-color: var(--error);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
  }
  
  .error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .error-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
    /* background: var(--input-bg); */
  }
  
  .sendbtn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .sendbtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
  }
  
  .sendbtn:hover {
    box-shadow: 0 0 15px var(--primary-red-glow);
  }
  
  .sendbtn:hover::after {
    width: 300px;
    height: 300px;
  }
  
  /* Contact Info */
  .contact-info {
    padding: 30px;
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(13, 13, 18, 0.5);
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .light-mode .contact-method {
    background: rgba(220, 220, 235, 0.5);
  }
  
  .contact-method:hover {
    transform: translateX(10px);
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .contact-method:hover .contact-icon {
    transform: rotate(360deg);
    background: var(--accent-blue);
  }
  
  .contact-text h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-red);
  }
  
  .light-mode .contact-text h4 {
    color: var(--primary-red);
  }
  
  .contact-text p {
    margin: 5px 0 0;
    color: var(--text-dim);
  }
  
  .light-mode .contact-text p {
    color: var(--light-text);
  }
  
  /* Footer Styles */
  footer {
    background: #070709;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  
  .light-mode footer {
    background: #e0e0e5;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--primary-red);
  }
  
  .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
  }
  
  .footer-col h3:hover::after {
    width: 100%;
  }
  
  .about-text {
    color: var(--text-dim);
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .light-mode .about-text {
    color: var(--light-text);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
  }
  
  .light-mode .footer-links a {
    color: var(--light-text);
  }
  
  .footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-red);
    padding-left: 20px;
  }
  
  .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(25 86 163 / 25%);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-icon:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-red-glow);
  }
  
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--light-text);
  }
  
  .footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
  }
  
  .mode-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-red-glow);
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .mode-switch:hover {
    transform: rotate(180deg);
  }
  
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .section-title-1 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-method {
      flex-direction: column;
      text-align: center;
    }
    
    .contact-icon {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }
  
  /* Animation classes */
  .fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Neon glow effect */
  /* .neon-glow {
    text-shadow: 0 0 5px var(--primary-red), 0 0 10px var(--primary-red), 0 0 20px var(--primary-red);
  } */
    

/* <!-- ===============  Get in touch end  ================= --> */
