* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at 85% 55%, #d9c2ff 0%, #f6eefe 35%, transparent 65%),linear-gradient(90deg, #eef4ff 0%, #fdecef 100%);   
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 75px 5px 80px;  
    top: 0;                
    left: 0;
    width: 100%;  
    z-index: 1000; 
    position: fixed;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.logo{
  color:#000;
  font-size:35px;
   font-weight:750;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 30px; 
}
.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #9333ea; 
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 5%;
    gap: 15px;
  }
  .nav-links {
    gap: 18px;
    margin-right: 0;
    align-items: center;
  }
  .navbar img{
    width:40%;
  }
}
@media (max-width: 1024px) {
  .name {
    font-size: 64px;
    line-height: 1.1;
  }
  .intro {
    font-size: 30px;
  }
  .subtitle {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 30% 8% 5% 8% !important;
  } 
  .hero-content {
    align-items: center;
        gap: 0 !important;
  }
  .services-list {
    flex-direction: column !important;
  }
  .my-works {
    padding: 130px 5% !important;
  }
  .name {
    font-size: 46px;
    margin-left: 0;
  }
  .white {
    margin-left: 0;
  }
  .icon-bar {
    justify-content: center;
    font-size: 28px;
  }
  .view-btn {
    margin-left: 0;
  }
}

/*hero-section*/
.hero {
  display: flex;
  gap:30px;
  height: 100vh;
  align-items: center;
  padding:5% 8% 5% 8%;
  position: relative;
  overflow: hidden;
}
.imghero{
  text-align: center;
  margin-left: 10%;
}
.imghero svg{
    width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap:20px;
  max-width: 900px;
  z-index: 1;
}
.intro {
  color: #000;
  font-size: 38px;
  font-weight: 600;
}
.name {
  font-size:82px;
  font-weight: 800;
  line-height:67.2px;
  color:#9333ea;
  margin:0px 0px 10px 11px;
}
.subtitle {
  font-size: 28px;
  color: #9aa0a6;
  line-height: 1.5;
  font-weight:700;
}
.white {
  color: #000;
  font-weight: 600;
  margin-left: 14px;
  font-size: 22px;
}
.icon-bar {
  display: flex;
  gap:5px;
  font-size:35px;
  color: #7B61FF; 
  justify-content: left;
}

.about-image {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;              /* spacing between logos */
  justify-content: center; /* center the rows */
}

.about-image > div {
  flex: 0 0 calc(33.333% - 32px); /* 3 per row */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 80px;   /* control logo size */
  width: 100%;
  height: auto;
}

.icon-bar i {
  padding: 12px;
  transition: 0.3s;
}
.icon-bar i:hover {
  background-color: #7B61FF;
  color: white;
  transform: translateY(-5px);
}
.view-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius:12px;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content; 
  margin-left: 10px;
  text-decoration: none;
}
.view-btn i {
  font-size:23px;
}
.view-btn:hover {
  border:2px solid #7B61FF;
  color: #000;
  background-color: #fff;
}

/*about-section*/
.about-section {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  padding:40px 10% 0 10%;
  gap: 60px;
}
.about-left {
  flex: 1;
}
.about-text h1 {
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  background: linear-gradient(90deg, #7b61ff, #5aa9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-right {
  flex: 2;
  color: #2d3a4b;
  font-size: 20px;
  line-height: 1.8;
}
.about-right p {
  margin-bottom: 20px;
}
.highlight {
  color: #7b61ff;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .about-left h1 {
    font-size: 56px;
  }
  .about-right {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about-left h1 {
    font-size: 42px;
    white-space: normal;
  }
  .about-right {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .intro {
    font-size: 24px;
  }
  .name {
    font-size: 34px;
  }
  .subtitle {
    font-size: 18px;
  }
  .icon-bar {
    font-size: 24px;
  }
  .view-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/*about*/
.about {
  padding:0 10% 50px 10%;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.about-text {
  flex: 1;
  font-size: 20px;
  line-height: 1.8;
  color: #4a5568;
}
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.image-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #7c4dff, #b388ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid white;
}
/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text {
    font-size: 18px;
  }
  .image-circle {
    width: 250px;
    height: 250px;
  }
}

/*projects*/
.projects {
  padding:46px 8% 90px 8%;
  text-align: center;
}
.section-title {
  font-size:65px;
  font-weight: 700;
  margin-bottom: 50px;
  white-space: nowrap;
  background: linear-gradient(90deg, #7b61ff, #5aa9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-container {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.card {
  background: white;
  width: calc(33.33% - 27px); 
  min-width: 300px;
  border-radius: 25px;
  cursor: pointer;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card img {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
}
.card-content {
  text-align: left;
  margin-top: 20px;
}
.card-content h3 {
  font-size: 22px;
  margin-bottom: 9px;
}
.desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}
.card-stats h4 {
  margin-top: 4px;
}
@media(max-width: 992px){
  .card {
    width: calc(50% - 20px); 
  }
}
@media(max-width: 600px){
  .card {
    width: 100%; 
  }
}

/*contact*/
.contact-wrapper {
  display: flex;
  justify-content: center;
  padding:40px 20px; 
  margin-top: 30px;
}
.contact {
  width:93%;
  max-width: 1200px;
  padding: 80px 8%;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #0f2a14, #000000 65%);
  color: white;
  display: flex;
  align-items: center;
}
.contact-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.contact-left {
  max-width: 600px;
}
.contact-left h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-left p {
  font-size:15px;
  color: #bbb;
  margin-bottom: 60px;
   white-space: normal;
}
.email {
  color: #78ff00;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 18px;
}
.email:hover{
  border-bottom:2px solid #78ff00;
}
.input-group {
  position: relative;
  margin-bottom: 40px;
}
.input-group input,.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #666;
  padding: 12px 0;
  color: white;
  font-size: 14px;
  outline: none;
  resize: none;
}
.input-group textarea {
  height: 110px;
}
.input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
}
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -12px;
  font-size: 12px;
  color: #ffffff;
}
.contact-button {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: none;
  padding:22px 50px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.contact-button:hover {
  background: #fffffff5;
  opacity: 0.9;
}

/*footer*/
.footer {
    padding: 25px 0px 25px 0px;  
}
.footer-inner {
    width: 100%;
    max-width: 1225px;  
    margin: auto;
    padding: 0 40px;
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.footer-inner::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 40px;
    width: calc(100% - 80px); 
    height: 1px;
    background: #22222297;
}
.footer-left {
    display: flex;
    gap: 34px;
    margin-top: 20px;
}
.footer-left a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-left a:hover {
    color: #9333ea;
}
.footer-right p {
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    color: #111;
}
@media (max-width: 992px) {
.footer-inner {
    padding: 0 25px;
}
.footer-inner::before {
    left: 25px;
    width: calc(100% - 50px);
}
.footer-left {
    gap: 20px;
    flex-wrap: wrap; 
    }
}
@media (max-width: 600px) {
.footer-inner {
    flex-direction: column;   
    align-items: flex-start;  
    gap: 10px;
    padding: 0 18px;
}
.footer-inner::before {
    left: 18px;
    width: calc(100% - 36px);
    top: -10px;
}
.footer-left {
    flex-direction: row;
    gap: 12px;
    margin-top: 15px;
}
.footer-left a {
    font-size: 14px;
}
.footer-right p {
    font-size: 14px;
    margin-top: 5px;
  }
}

.fadeinletters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.gsap-logos > div {
  opacity: 0;
  transform: scale(0.6) translateY(30px);
}


/*project1 css*/
html {
  scroll-behavior: smooth;
}
.card {
    text-decoration: none;
    color: #000;
    display: block;
}
.my-works {
    background-color: #c79aa01f;
    padding: 80px 5%;
}
.works-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}
.works-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    display: block;
}

.works-image iframe {
    width: 36vw;
    height: 330px;
    display: block;
}

.works-content {
    max-width: 500px;
}
.works-content .view-btn{
	color:#fff;
	text-decoration:none
}
.works-content .view-btn:hover{
	color:#000;
}
.works-content h1 {
    font-size: 40px;
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.works-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #5b3f79;
    margin-bottom: 30px;
}
.works-content a {
    color: #5b3f79;
    text-decoration: underline;
}
.talk-btn {
    padding: 15px 40px;
    font-size: 16px;
    background-color: #b573b484;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}
.works-image img {
  transition: 0.5s;
}

.talk-btn:hover {
    background-color: #b573b492;
}
@media (max-width: 992px) {
.works-container {
    flex-direction: column;
    text-align: center;
}
.works-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
.works-content h1 {
    font-size: 38px;
}
.works-content p {
    font-size: 16px;
}
.talk-btn {
    padding: 12px 30px;
  }
}

.portfolio {
    background-color: #826bbe0f;
    padding: 100px 5%;
    text-align: center;
}

/* Header */
.portfolio-header h1 {
    font-size: 60px;
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.portfolio-header p {
    max-width: 800px;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #5b3f79;
    margin-bottom: 60px;
}

/* GRID LAYOUT */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
}

/* CARD STYLE */
.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    aspect-ratio: 16 / 10; /* Makes it rectangular */
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image nicely cropped */
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.screenshots-project1{
  justify-content: center;
}

.screenshots-project1 .portfolio-card{
  background: #fff;
}

.screenshots-project1 .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps image nicely cropped */
    display: block;
    transition: transform 0.5s ease;
}

.screenshots-project2 .portfolio-card{
  background: #fff;
}

.screenshots-project2 .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps image nicely cropped */
    display: block;
    transition: transform 0.5s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }

    .portfolio-header h1 {
        font-size: 40px;
    }

    .portfolio-header p {
        font-size: 16px;
    }
}

.about-section {
    background-color: #f1e5ed; 
    padding: 60px 20px;
    text-align: center;
}
.image-side img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.image-side {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.text-side p{
   color: #5b3f79;
   line-height:27px;
   margin-top: 10px;
}
.text-side h2{
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 65px;
}
.image-side img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.text-side {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5b3f79;
}
.credit {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1.5rem;
    font-style: italic;
}
@media (max-width: 768px) {
.flex-wrapper {
    flex-direction: column;
    gap: 30px;
}
.text-side {
    text-align: center;
}
.text-side h2 {
    font-size: 2.4rem;
  }
}
.services {
    background: #dfe3e6;
    padding: 80px 5%;
}
.services-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}
.services-image img {
    width: 420px;
    border-radius: 50%;
    display: block;
}
.service-card p{
  line-height:28px;
}
.service-card {
  transition: 0.3s;
  border-radius: 12px;
}
.services-title {
    text-align: center;
    font-size: 60px;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-list {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}
.service-card {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #ececec;
    padding: 9px 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: 500;
}
.service-card .icon img{
  height:50px;
}
.icon {
    width: 68px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}
@media (max-width: 992px) {
.services-container {
    flex-direction: column;
    text-align: center;
}
.service-card {
    width: 100%;
    justify-content: center;
}
.services-image img {
    width: 300px;
  }
}
@media (max-width: 500px) {
.service-card {
    font-size: 16px;
    padding: 20px;
  }
}
.key-features {
    padding: 80px 5%;
    background: #f7f7fb;
    text-align: center;
}
.section-heading {
    font-size: 65px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-card {
    background: #dfe3e6;
    padding: 35px 25px;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}
.feature-icon {
    font-size: 34px;
    margin-bottom: 15px;
}
.feature-card h3 {
    margin-bottom: 10px;
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size:30px;
}
.feature-card p {
    color: #5b3f79;
    line-height: 1.5;
    font-size:16px;
}
.feature-card {
  transition: 0.3s;
  border-radius: 15px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (max-width: 1200px) {
  .feature-card {
      width: 220px;
  }
}
@media (max-width: 992px) {
.section-heading {
    font-size: 36px;
}
.feature-card {
    width: 45%;
  }
}
@media (max-width: 768px) {
.feature-card {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 480px) {
.key-features {
    padding: 60px 20px;
}
.section-heading {
    font-size: 28px;
}
.feature-card {
    padding: 25px 20px;
}
.feature-icon {
    font-size: 28px;
  }
}
.footer {
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.controls{
  display: flex;
  justify-content: space-between;
  margin-top:1rem;
}
.controls a{
  color:#5b3f79;
  transition:0.3s ease;
  text-decoration: none;
}
.controls a:hover{
  opacity:0.5;
}


/*project4 css new add for images*/
.retail-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 50px 0;
}
.retail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.retail-block {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s ease;
}
.retail-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.works-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px; 
    margin: auto;
}
.works-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.retail-img {
    width: 100%;
    height: 346px;
    object-fit: cover;
    display: block;
}
.retail-content {
    padding: 20px;
    text-align: left;
}
.retail-content h2 {
    background: linear-gradient(90deg, #7b61ff, #5aa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom:10px;
}
.retail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.retail-section {
    background: linear-gradient(135deg, #f4f6f9, #eef2f7);
}
@media (max-width: 992px) {
.retail-grid {
        grid-template-columns: 1fr 1fr;
}
.retail-img {
        height: 180px;
}
.retail-content h2 {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
.retail-grid {
        grid-template-columns: 1fr;
}
.retail-wrapper {
        padding: 50px 15px;
}
.retail-img {
        height: 160px;
}
.retail-content p {
        font-size: 14px;
    }
  .video-frame {
            width: 89vw !important;
        height: 50vw !important;
}
.portfolio {
    padding: 0 5% 50px 5%;
}
}
@media (max-width: 400px) {
.retail-img {
        height: 140px;
}
.retail-content h2 {
        font-size: 18px;
}
.retail-content p {
        font-size: 13px;
    }
}

.video-frame{
  width: 60vw;
  height: 33.8vw;
}

.project1 .retail-img {
    object-fit: contain !important;
}