* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}


html {
  scroll-behavior: smooth;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 50px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}
.background-text {
  position: absolute;
  top: 35%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(0, 115, 255, 0.065);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-weight: 800;
}
.background-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 114, 255, 0.1) 5px, transparent 5px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: -1;
}
.content {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content .header-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .header-line h1 {
  font-size: 2.5rem;
  color: #0072ff;
  margin-right: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.content .header-line hr {
  width: 385px;
  height: 3px;
  border: none;
  background-color: #0072ff;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.content h2, .content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-transform: uppercase;
}
.content h2 {
  font-size: rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}
.content p {
  font-size: 1.3rem;
  color: #000000;
  font-weight: 500;
  margin-right:155px;
  font-weight: 600;
  margin-top: 10px;
}
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  margin-left: -7.2vw;
}
.buttons button {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #0072ff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #0072ff;
  /* background-color: #0072ff; */
}
.buttons button:hover {
  background-color: #0c334d;
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 126, 95, 0.4);
}
.image-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@keyframes moveUpDown {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); } 
  100% { transform: translateY(0px); }
}

.developer-img {
  animation: moveUpDown 2s infinite ease-in-out;
}
.developer-img {
  width: 600px;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}
.developer-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 30px;
  }
  .content .header-line h1 {
  font-size: 2.8rem;
  color: #0072ff;
  margin-right: -20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;

}
.content .header-line hr {
  /* width: 385px; */
  /* height: 3px; */
  border: none;
  background-color: #0072ff;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.content h2,
.content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-transform: uppercase;
  text-align: center;
  margin-right: 20px;
}

/* FIXED PARAGRAPH */
.content p {
  font-size: 1rem;   /* 👈 font-size use kar */
  line-height: 1.6;    /* 👈 sidhi line ke liye */
  max-width: 500px;    /* 👈 line break control */
  margin: 10px auto 0;
  font-weight: 600;
}

/* FIXED HEADING */
.content h2 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
  padding-right: 15px;
}


  .content, .image-container {
    width: 100%;
    text-align: center;
  }
  .background-text {
    font-size: 6rem;
    left: 2%;
    display: none;
  }
  .content .header-line {
    flex-direction: column;
  }
  .content .header-line hr {
 width: 300px;
  }

  .buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  margin-left: -1vw;
}
.buttons button {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid #0072ff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #0072ff;
  /* background-color: #0072ff; */
}
}






/* about section start */


.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  background-image: url(.//body-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.about-content {
  padding: 40px;
}
.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}
.about-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-image img {
  max-width: 100%;
  height: auto;
  width: 100%; /* Adjust the size of the image */
  display: block;
  margin: auto;
}
.btn-download {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #0072ff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #0072ff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.btn-download:hover {
  background-color: #0c334d;
  color: #fff;
  transform: translateY(-7px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 126, 95, 0.4);
}






/* service-section start */



.main-service{
  font-family: Arial, sans-serif;
  /* background-color: #ffffff; */
  /* color: #f92222; */
  overflow-x: hidden;
  margin-top: 50px;
  background-color: #FAF9FB;
  
}
.services-header {
  text-align: center;
  margin-top: 40px;
}
.services-header h1 {
  font-size: 3rem;
  color: #111111;
  /* font-weight: bold; */
  font-weight: 700;
}
.services-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}
.services-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px;
  /* background-color: #f9f9f9; */
  border-radius: 20px;
  margin: 0px auto;
  max-width: 1300px;
  
}
.service-card {
  background-color: #83d4f126;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border-top: 4px solid #2b4a70;
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 114, 255, 0.2);
  background-color: #ffffff;
}
.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
.service-card h3 {
  color: black;
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .services-section {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
  }
  .services-header {
  text-align: center;
  margin-top: -10px;
}
}






    /* body {
            background-color: #ffffff;
            color: #000;
        } */
        .experience-header {
          text-align: center;
          margin-top: 40px;
          padding-bottom: 40px;
      }
      .experience-header h1 {
          font-size: 3rem;
          color: #111111;
          font-weight: 700;
      }
      .experience-header p {
          font-size: 1.1rem;
          color: #555;
          margin-top: 10px;
      }
      .timeline {
          position: relative;
          padding: 20px 0 20px;
          font-family: Arial, sans-serif;
      }
      .timeline::before {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          width: 4px;
          height: 100%;
          background: #00adb5;
          transform: translateX(-50%);
      }
      .timeline-item {
          position: relative;
          margin: 20px 0;
          padding: 10px;
          width: 50%;
      }
      .timeline-item:nth-child(odd) {
          left: 0;
          text-align: right;
      }
      .timeline-item:nth-child(even) {
          left: 50%;
          text-align: left;
      }
      .timeline-dot {
          position: absolute;
          top: -10px;
          left: 100%;
          width: 20px;
          height: 20px;
          background: red;
          border-radius: 50%;
          transform: translateX(-50%);
          z-index: 1;
      }




          /* Skills Section */
    .skills {
      padding: 60px 0;
      background-color: #faf9fb;
    }

    .skill-box {
      background-color: #f8f9fa;
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid #dbe7ff;
      height: 100%;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    /* Hover effect – all sides */
    .skill-box:hover {
      transform: translateY(-8px);
      border-color: #0072FF;
      box-shadow:
        0 0 0 2px rgba(13, 110, 253, 0.15),
        0 15px 40px rgba(13, 110, 253, 0.25);
    }

    .skill-box h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #0072FF;
      transition: transform 0.3s ease;
    }

    .skill-box:hover h3 {
      transform: translateY(-2px);
    }

    .skill-box p {
      font-size: 0.9rem;
      margin-bottom: 10px;
      opacity: 0.6;
    }

    .skill-box span {
      font-size: 0.85rem;
      margin-bottom: 5px;
      display: block;
      text-align: right;
      color: #000;
      font-weight: 600;
    }

    .progress {
      height: 8px;
      border-radius: 0px;
      background-color: #e9ecef;
      overflow: hidden;
    }

    .progress-bar {
      height: 90%;
      background-color: #0072FF;
      border-radius: 50px;
      width: 0;
      transition: width 1.2s ease-in-out, box-shadow 0.3s ease;
    }

    .skill-box:hover .progress-bar {
      box-shadow: 0 0 12px #0072FF(13, 110, 253, 0.6);
    }







    /* ======================
   SECTION HEADING
====================== */
.section-heading {
  padding: 100px 0 50px;
}

.main-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.sub-title {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* ======================
   PROJECTS SECTION
====================== */
.projects {
  padding-bottom: 70px;
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 260px; /* smaller box */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,110,253,0.25),
    rgba(13,110,253,0.95)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px; /* reduced */
  opacity: 0;
  transition: 0.4s ease;
}

.project-overlay h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.project-overlay a {
  align-self: flex-start;
  padding: 8px 24px;
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
}

.project-overlay a:hover {
  background: #fff;
  color: #0d6efd;
}

/* Hover Effects */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }
  .project-card img {
    height: 220px;
  }
}






       .contact-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 10%;
            /* background-color: #FAF9FB; */
        }

        .contact-content {
            max-width: 500px;
        }

        .contact-content small {
            color: #2563eb;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .contact-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #111827;
        }

        .contact-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #4b5563;
        }

        /* Illustration Area */
        .contact-illustration {
            width: 420px;
            max-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-illustration img {
    width: 100%;
    height: auto;
    max-width: 420px;
    object-fit: contain;
}


        @media (max-width: 900px) {
            .contact-section {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
        }








/* MAIN CARD */
.contact-card{
    max-width:1100px;
    margin:auto;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    border-radius:16px;
    padding:50px;
    display:flex;
    gap:50px;
    color:#fff;
    margin-bottom: 50px;
}

/* LEFT INFO */
.contact-info{
    flex:1;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:35px;
}

.info-icon{
    width:42px;
    height:42px;
    background:rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.info-text h4{
    font-size:18px;
    margin-bottom:5px;
}

.info-text p{
    font-size:15px;
    opacity:0.9;
}

/* RIGHT FORM */
.contact-form{
    flex:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:18px;
    border:none;
    border-radius:6px;
    font-size:15px;
    outline:none;
}

.contact-form textarea{
    resize:none;
    height:120px;
}

.contact-form button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:6px;
    background:#ffffff;
    color:#1e40af;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#dbeafe;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-card{
        flex-direction:column;
    }
}



        .info-text a:hover{
    text-decoration: underline;
    opacity: 0.85;
}



.footer{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    padding:30px 0px 20px;
    text-align:center;
    color:#fff;
}
.footer p{
    font-size:15px;
    margin:10px 0;
}
.social-icons{
    display:flex;
    justify-content:center;
    gap:16px;
    margin:25px 0;
}
.social-icons a{
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,0.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}
.social-icons a:hover{
    background:#fff;
    color:#efefef;
    transform:translateY(-4px);
}
.designer span{
    color:#dbeafe;
}
.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:48px;
    height:48px;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 22px rgba(37,99,235,0.45);
}


