/* Base Styles */
:root {
    /* --background: #d7deee; */
    --background: #0f172a;
    --foreground: #f8fafc;
    --card: #1e293b;
    --card-foreground: #f8fafc;
    --primary: #3b82f6;
    --primary-foreground: #f8fafc;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #3b82f6;
    --accent-foreground: #f8fafc;
    --destructive: #f43f5e;
    --destructive-foreground: #f8fafc;
    --border: #1e293b;
    --input: #1e293b;
    --ring: #2563eb;
    --radius: 0.75rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: ;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  button, input, textarea {
    font: inherit;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .vbt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: center;
  }
  .vbt a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

 
  /* Digital Grid Background */
  .digital-grid {
    position: relative;
    /* new for por */
    display: flex;
    flex-direction: row-reverse;
  }
  
  .digital-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(0, 132, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 132, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    /* background-repeat: no-repeat; */
    z-index: -1;
  }
  
  /* Mouse Follower */
  .mouse-follower {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    background-color: rgb(4, 41, 226);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
   
    filter: blur(1px);
    
  }
  

  /* Animations */

  

  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  
  .text-gradient, .tech-gradient {
    background-image: linear-gradient(to right, #793bf6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  .btn-primary:hover {
    background-color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-round {
    border-radius: 9999px;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 20%;
    height: 100%;
    left: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    /* border: 1px solid ; */
  }

  /* desk toogle */
 .desk-tog{
  font-size: 36px;
  position: absolute;
  right: 0;
  z-index: 999;
  cursor: pointer;
 }

 .desk-tog-2, .bxs-chevron-right-square {
  display: none;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  font-size: 36px;
  z-index: 999;
  left: 20px;
  top: 30px;
 }
 .mob-tog {
  display: none;
  visibility: hidden;
  /* cursor: pointer; */
  /* position: fixed; */
  font-size: 36px;
  color: white;
  z-index: 999;
  left: 20px;
  top: 30px;
}


  .navbar-container {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 2rem;
  }
  .navbar-container h2 {
    text-align: center;
    margin-top: 10px;
  }
  
  .navbar-container a img {
    border-radius: 100%;
    border: 4px solid #2563eb;
  }

  .navbar-container p {
    text-align: center;
    margin: 20px 0px -10px 0px;
  }
  

  .connet {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .connet a i{
    font-size: 40px;
    color: #f6f7f9;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
  }
  
  .nav-links a {
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    justify-content: space-between;
    position: relative;
    padding: 10px;
    border-radius: var(--radius);
  }
  
  /* .nav-links .active a {
    color: var(--primary);
    background-color: #94a3b8;

  } */

  .nvlinks .active {
    color: var(--primary);
    background-color: #94a3b8;
  }

  /* Active link style */
nav a.active {
  background-color: #c8dcf1;  /* You can change the background color */
  color: rgb(17, 20, 237);
}

.nav-links a:nth-child(1) {
  /* visibility: hidden; */
}

.nav-links a:nth-child(7) {
  /* visibility: hidden; */
  /* display: none; */
}
.nav-links a:nth-child(8) {
  /* visibility: hidden; */
  /* display: none; */
}


  .nav-links a i {
    font-size: 28px;
    order: 1;
  }
  

  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
  }

 /* New for por */
 main {
  width: 80%;
  order: -1;
}



  /* HERO SECTION */

  .hero {
    width: 600px;
    /* background-color: aquamarine; */
  }

  .hero h2 {
    font-size: 46px;

  }
  .hero p{
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;

  }

  .hero a {
    margin-top: 30px;
    font-size: 20px;
    color: #fff;
    display: inline-block
    align-items: start;
    gap: 10px;
    text-decoration: none;
  }

  .abt-res{
    margin-left: 40px;
  }

  .abt-res a{
    margin-left: 10px;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
    align-items: center;
    background-color: #2d394d;
  }
  
  /* Section Styles */
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
  }


  /* EXPERIENCE */
  .experience {
    margin-left: 30px;
    margin-right: 30px;
    /* height: 400px; */
    /* background-color: #94a3b8; */
    padding: 0;
  }
  .exp-filter {
    width: 100%;
    display: flex;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    border-radius: var(--radius);
    /* border: 2px solid blue; */
    border: 2px solid white;
    /* background-color: #94a3b8; */
    background-color: #062954;
    gap: 10px;
    padding: 5px;
  }
  .exp-btn {
    padding: 10px 50px;
    border-radius: 5px;
    width: 50%;
    font-size: 18px;
    transition: .2s linear;
    font-weight: 600;
    background-color: #0f172a;
    cursor: pointer;
  }



  #filter-buttons .exp-btn.active {
    background-color: #adc5f0;
    color: #044ff0;
}
#filterable-cards .ex.hide {
    display: none;
  }


  #filterable-cards{
    width: 100%;
    height: 100%;
    /* border: 2px solid red; */
  }

  .ex {
    margin-top: 10px;
    border: 0.1px solid #044ff0;
    padding: 20px;
    border-radius: var(--radius);
    /* height: 90px; */
  }
  .xex {
    margin-top: 10px;
    border: 0.1px solid #044ff0;
    padding: 20px;
    border-radius: var(--radius);
    /* height: 90px; */
  }

  .ex2,.ex2{
    display: none;
  }


  /* WORk */
.work-1 {
  display: flex;
  gap: 15px;
  max-width: 800px;
}
.work-1 > img{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}

.work-details p{
  color: #94a3b8;
}
.work-details h1{
  margin: 5px 0px;
}
.work-details h2{
  color: #94a3b8;
  font-size: 18px;
  font-weight: 300;
}

.work-details ul {
  color: #d4dbe4;
  padding: 0;
  margin: 0;
  list-style: disc;
}
.work-details ul li{
  padding: 2px 10px;
  margin-left: 20px;
  display: list-item;
  
}
.work-details ul li::marker{
  font-size: 24px;
}
  
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(65, 135, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .service-link {
    font-weight: 500;
    color: var(--primary);
    transition: color 0.2s ease;
  }
  
  .service-link:hover {
    color: #2563eb;
  }

/* STACK */
.tech-stacks{
  width: 100%;
  margin:0 auto;
}
.tech-stacks h2 {
  margin-bottom: 50px;
}
.stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  
}



/* mob */
.mobil-t{
  display: none;
  visibility: hidden;
}

.stack svg {
  width: 100px;
  height: 100px;
  padding: 20px;
  border: 0.001px solid rgba(198, 217, 247, 0.141);;
  margin: auto 10px;
  border-radius: 0.75rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  position: relative;
  
}
/* .stack svg::before {
  content: "React JS";
  position: absolute;
  top: 100px;
  left: 50px;
  transform: translateX(-50%);
} */

.stack-svg {
  display: inline-block;
  margin-bottom: 30px;
  cursor: text;
  position: relative;
}

.stack-svg::after {
  content: "HTML";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  font-size: 14px;
  color: rgb(253, 253, 253);
  z-index: 10;
}

.stack-svg:hover::after {
  opacity: 1;
  visibility: visible;
}

.stack-svg:nth-child(2)::after {
  content: "CSS";
}
.stack-svg:nth-child(3)::after {
  content: "JavaScript";
}
.stack-svg:nth-child(4)::after {
  content: "React JS";
}
.stack-svg:nth-child(5)::after {
  content: "Figma";
}
.stack-svg:nth-child(6)::after {
  content: "Fire Base";
}
.stack-svg:nth-child(7)::after {
  content: "WordPress";
}
.stack-svg:nth-child(8)::after {
  content: "Framer";
}
.stack-svg:nth-child(9)::after {
  content: "Git";
}
.stack-svg:nth-child(10)::after {
  content: "Webflow";
}


/* Soft Skills */
.softskill h2{
  /* text-align: center; */
  margin-bottom: 40px;
}
.softskill-grid ul{
  margin-left: 20px;
  list-style: disc;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.softskill-grid ul li {
  text-wrap: nowrap;
}

  
  /* Portfolio Section */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .portfolio-item {
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  }
  
  .portfolio-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  
  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
  }
  
  .portfolio-content {
    padding: 1.5rem;
  }
  
  .portfolio-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
  }
  
  .portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .portfolio-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }

  .tech-tag {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tech-tag .tags{
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 400;
    text-wrap: nowrap;
    color: #fff;
    background-color: #2d394d;
  }
  
  .portfolio-link {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.875rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    background: linear-gradient(to bottom, var(--background), rgba(30, 41, 59, 0.7));
  }
  
  .testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(65, 135, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .quote-mark {
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    opacity: 0.5;
    color: var(--primary);
  }
  
  .testimonial-content p {
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  .testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .testimonial-author p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
   
  

/* CONTACT SECTION NEW */

/* Contact Section 2 */
.contact {
  /* background-color: rgba(12, 14, 22, 0.5); */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method h4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.contact-method p {
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.form-success h3 {
  margin-bottom: 1rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  /* background-color: rgba(21, 27, 39, 0.5); */
  padding: 4rem 0;
}

.cta-container {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

.cta-container h2 {
  margin-bottom: 1rem;
}

.cta-container p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-content {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: white;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

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


  
  /* Footer */
  .footer {
    background-color: #0f172a;
    color: var(--foreground);
    padding: 4rem 0 2rem;
    position: relative;
    
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .footer-info {
    max-width: 300px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background-image: linear-gradient(to right, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .footer-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  .footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }
  
  .footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .footer-links li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  
  .footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .footer-legal a:hover {
    color: var(--primary);
  }
  
  .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  
  .scroll-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .section-title {
      font-size: 2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }

    .about-content,
    .contact-container{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 0 0 33.333%;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
      grid-template-columns: 1fr;
  }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .navbar-container {
      padding: 0 1.5rem;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--background);
      transition: right 0.3s ease;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 100;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-links {
      flex-direction: column;
      align-items: center;
    }
    
    .menu-toggle {
      display: flex;
      z-index: 101;
    }
    
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .hero-subtitle {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-buttons {
      justify-content: center;
    }

       /* des */
.des-t{
  display: none;
  visibility: hidden;
}
.mobil-t{
  display: block;
  visibility: visible;
  
}
    
    
    .portfolio-grid,
    .testimonials-carousel {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .footer-legal {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .navbar {
      max-width: 350px;
  
    }
    .container {
      padding: 0 1.5rem;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero {
      padding: 6rem 0 3rem;
    }

     .vbt a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }


    /* des */
.des-t{
  display: none;
  visibility: hidden;
}
.mobil-t{
  display: block;
  visibility: visible;
  
}

.stack svg {
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 0.001px solid rgba(198, 217, 247, 0.141);;
  margin: auto 10px;
  border-radius: 0.75rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  position: relative;
  
}
    
    section {
      padding: 3rem 0;
    }
    
    .stats-card {
      position: relative;
      width: 100%;
      bottom: 0;
      right: 0;
      margin-top: -2rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }

    section {
      padding: 4rem 0;
  }
  
  .cta-buttons {
      flex-direction: column;
  }
  
  .stat {
      flex: 0 0 100%;
  }
  }
  