/* :root{--accent:#ffffff;--bg:#0b1220;font-family:Inter,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{margin:0;background:var(--bg);color:#e6eef8;position:relative;overflow-y:auto;-webkit-overflow-scrolling:touch};
.navbar{ */

/* :root{--accent:#ffffff; --big:rgba(207, 207, 207, 0.933) ;--bg:#0b1220;font-family:Inter,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
*{box-sizing:border-box}
html,body{height:100%} */
/* body{margin:0;background:var(--bg);color:#e6eef8;position:relative;overflow-y:auto;-webkit-overflow-scrolling:touch} */
#bg-canvas{position:fixed;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}

/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b1220;
  --bg-soft: #0f172a;
  --text-main: #e6eef8;
  --text-muted: #9ca3af;
  --accent: #7b61ff;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}
   .navbar{ background: var(--bg);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar__containter{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    align-items: center;
    max-width: 1300px;
    margin: 0;
    padding: 0;
}

#navbar__logo{
    background-color: white;
    background-image: linear-gradient(to top #ff0844, #ffb1 100);
    text-decoration: none;
    background-size: 100px;
    cursor: pointer;
    align-items: center;
    display: flex;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 1.5rem;
     font-weight: bold;
     padding: 10px;
     position: relative;
}
.dot{
    position: relative;
    top: -10px;
    font-size: 24px;
    color: #9370ff;
    font-weight: bold;
    
}

.fa-gem{
    margin-right: 0.5rem;
    
}

.navbar___menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar__item{
    background-color: white;
    background-image: linear-gradient(to top green, white 100%);
    text-decoration: none;
    background-size: 100%;
    cursor: pointer;
    display: flex;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: bold;
    height: 80px;
    justify-content: space-between;
}

.navbar__item:hover{
    background-color: rgb(109, 106, 106);
    transition: all 0.5s ease-in-out;
}

/* .navbar__button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    font-size: 1rem;
    width: 100%;
    color: antiquewhite;
    justify-content: space-between;
    height: 80px;
} */

.navbar__links{
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 7px 7px;
    border: none;
    outline: none;
    border-radius: 5px;
    color: rgb(231, 238, 236);
    background-color: #ca2c21;
}
.button:hover{
    background-color: rgb(55, 0, 255);
    transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 960px) {
   .navbar__containter{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 1000px; 
    max-width: 1300px;
    padding: 0;
    margin: 0;
   } 

   .navbar___menu{
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 2;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: 1;
    justify-content: center;
    align-items: center;
    font-size: 10rem;
   }

   .navbar___menu.active{
    background-color: var(--bg);
    top: 100%;
    opacity: 2;
    transition: all 0.3s ease;
    z-index: 99;
    height: 75vh;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column; 
   }

   #navbar__logo{
    padding: 25px;
   }
   .navbar__toggle{
    display: block;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
   }
   .navbar__toggle .bar{
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
   }
   .navbar__item{
    width: 100%;
   }
   .navbar__links{
    text-align: center;
    padding: 1rem;
    width: 100%;
    display: table;
   }

   #mobile_menu{
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
   }

   .navbar__button{
    padding-bottom: 2rem;
    border-radius: 10%;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
   }

   .button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    /* height: 1111110px; */
    margin: 0;
    height: 30px;
    border-radius: 4px;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
   }

   .navbar__toggle .bar{
    display: block;
    cursor: pointer;
   }
   #mobile_menu.is-active .bar:nth-child(2){
    opacity: 0;
   }
   #mobile_menu.is-active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg); 
   }
   #mobile_menu.is-active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
   }
} 
.bg-letter {
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 200px;
    font-weight: bold;
    color: #00000010;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
main{
    margin-top: 200px;
    text-align: left;
    padding: 0 20px;
}
.hero h1 ::after,
.hero h2 ::after,
.hero h4 ::after{
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50%, 100% {opacity: 1;}
    25%, 75% {opacity: 0;}
}
h4{
    font-size: 20px;
    color: var(--big);
    margin-bottom: 10px;
}
h1 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 15px;
}
.bold {
    display: block;
}
.about-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-top: 200px;
}
.about-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}
.about-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 20px auto;
}
.download-btn {
    display: inline-block;
    background: linear-gradient(to right, #7B61ff,#A96BFF);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}
.download-btn:hover {
    background: linear-gradient(to right, rgba(59, 59, 59, 0.467),#a29bfe);
}


.experience-section {
    /* background-color: #f7f6ff; */
    padding: 60px 20px;
    text-align: center;
}
.experience-box {
    /* background-color: #f7f6ff; */
    padding: 40px 20px;
    border-radius: 8px;
    display: inline-block;
}
.experience-number {
    font-size: 80px;
    color: #7B61ff;
    font-weight: bold;
    margin: 0;
}
.experience-text {
    margin-top: -10px;
}

.experience-years,
.experience-label {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.experience-label {
    font-weight: 800;
    font-size: 20px;
}

.services-section {
    text-align: center;
    padding: 40px 20px;
    /* background-color: #ffffff; */
}
.services-section h2 {
    font-size: 1.5rem;
    color: var(--big);
    margin-bottom: 10px;
    font-weight: 800;
}
.services-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}
.service-container {
    max-width: 400px;
    width: 100%;
    margin:  40px auto; 
    /* background-color: #ffffff; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    transition: box-shadow 0.3s ease;
}
.service-container:active {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1), 0 2px 
    rgba(0, 0, 0, 0.1);
}
.service-item {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.service-icon {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.service-content h3 {
    color: var(--big);
    font-size: 1.5rem;
    margin: 0;
}
.service-content .service-subtext {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.contact-box a {
    text-decoration: none;
    color: #4f7cff;
    font-weight: bold;
    font-size: 16px;
    gap: 16px;
}
.contact-box img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}
.call-label {
    color: #7B61ff;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}
.phone-number {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.testimonial-section {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    /* background-color: #f4f4f4; */
    margin-top: 50px;
}
.testimonial-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color:var(--big);
    font-weight: 800;
}
.testimonial-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}
.testimonial-slider {
    display: flex;
    width: 300%;
    animation: slide 10s infinite;
    transition: transform 0.5s ease;
}
.testimonial-card {
    width: 33.33%;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
}
.client-img {
    max-width: 300px;
    border-radius: 8%;
    margin-bottom: 10px;
}
.client-review {
    font-style: italic;
    color: #777;
}
@keyframes slide {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-33.33%); }
    66.66% { transform: translateX(-66.66%); }
    100% { transform: translateX(0%); }
}
.works-selection {
    /* background-color: #f9f9f9; */
    padding: 60px 20px;
    text-align: center;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 2px 30px;
}
.section-title {
    
    font-size: 2rem;
    color:var(--big);
    margin-bottom: 20px;
    font-weight: 800;
}
.section-title2 {
     font-size: 2rem;
    color: var(--big);
    margin-bottom: 40px;
    font-weight: 800;
    margin: 30;
}
.container {
    width: min(1100px, 100%);
    margin-inline: auto;
    padding-inline: 2rem;
}
.view-more {
    margin-top: 30px;
    font-size: 1rem;
    color:var(--big);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}
.view-more:hover {
    color: #0056b3;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.works-card {
    /* background-color: #fff; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10 4px 20px rgba(68, 5, 5, 0.1);
    transition: transform 0.3s ease;
}
.works-card:hover {
    transform: translateY(-10px);
}
.work-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.works-card h3 {
    font-size: 1.25rem;
    color:var(--big);
    margin: 15px 0 5px;
}
.works-card p {
    font-size: 0.95rem;
    color: #666;
    padding: 0 15px 20px;
}
.works-link {
    text-decoration: none;
    color: inherit;
}

.contact-section {
    color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    margin-top: 30px;
}
.contact-title{
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--big);
    font-weight: 800;
}
.contact-text {
    font-size: 1rem;
    color: var(--big);
    margin-bottom: 30px;
}
.contact-details p {
    font-size: 1rem;
    color: var(--big);
    margin: 8px 0;
    text-align: center;
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #0056b3;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 15px;
    transition: all 0.25s ease;
}
.back-link:hover {
    color: #000;
    background-color: #3f3f3f;
}
.back-link:active {
    transform: translate(-2px);
}
.footer {
    background-color: #535353;
    color: #eee;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== PROJECTS ===== */
.projects-section {
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.projects-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 97, 255, 0.2);
}

.project-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.project-body {
  padding: var(--space-sm);
}

.project-body h3 {
  margin-bottom: 0.4rem;
}

.project-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.project-tech {
  display: flex;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: var(--accent);
}