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


body {
  font-family: Arial, sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

/* Header */
.header {
    background-color: #fff;
  width: 100%;
  /* border-bottom: 1px solid #eee; */
  box-shadow:
  0 12px 30px rgba(124, 58, 237, 0.35);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1111;
}

/* Centered Container */
.header-container {
  max-width: 1200px;
  margin: auto;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.logo img {
  width: 70px;
  height: auto;
  display: block;
}


/* Navbar */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #7c3aed;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav a:hover{
    color: #000;
}

.bg{
    width: 100%;
    background-color: #CBC3E3;
}
.hero {
    max-width: 1200px;
    margin: auto;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  position: relative;
  
}
.hero>div{
    width: 50%;
}

.hero div h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero div h1 span{
    color: #6f2cf3;
}

.hero p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
  line-height: 1.5;
}
.hero p span{
    font-size: 20px;
    font-weight: bold;
    color: #6f2cf3;
}
.img-move{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    bottom: 100px;
    right: 150px;
    background: #f3862c;
    box-shadow: 0 4px 12px rgba(243, 134, 44, 0.3);
    overflow: hidden;
}
.img-move img{
    width: 100%;
    height: 100%;

}
.img-move2{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    bottom: 120px;
    right: 430px;
    background: #f3862c;
    box-shadow: 0 4px 12px rgba(243, 134, 44, 0.3);
    overflow: hidden;
}
.img-move2 img{
    width: 100%;
    height: 100%;
}

/* Resume Button */
.resume-btn {
  margin-top: -30px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #6f2cf3;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.resume-btn:hover {
  background: #f1f5f9;
}

/* Modal Background */
.resume-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2222;
}

/* Modal Box */
.resume-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}



.hero-avatar {
  display: flex;
  justify-content: center;
  
}

.hero-avatar img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  background: #7c3aed;
  /* padding: 10px; */
  box-shadow:
  rgba(124, 58, 237, 0.35) 0px 14px 28px,
  rgba(124, 58, 237, 0.2) 0px 8px 10px;
}

.hero-foot{
    width: 100%;
    padding: 0px 24px;
    /* margin: auto; */
}
.hero-foot-container{
    max-width: 1200px;
    margin: auto;
}
.hero-foot-container img{
    width: 1152px;
    height: 350px;
    object-fit: contain;
}


.about {
  background: #7c3aed;
  color: #fff;
  text-align: center;
  padding: 120px 20px ;
}

.about-content {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Skills Section Wrapper */
.skills {
  background: #f8fafc;
  padding-bottom: 120px;
  padding-top: 50px;

}

.skills h2{
    text-align: center;
    padding: 0px 0px 20px 0px;
    color: #6f2cf3;
}

/* Cards Container */
.skills-wrapper {
  max-width: 1200px;
  margin: auto; 
  display: flex;
  gap: 10px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  /* overflow: hidden; */
}

/* Individual Card */
.skill-card {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  transition: 300ms;
}

.skill-card:last-child {
  border-right: none;
}

/* Icon */
.icon {
  width: 64px;
  height: 64px;
  background: #6ee7b7;
  border-radius: 50%;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: #0f172a;
}

/* Heading */
.skill-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

/* Description */
.skill-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

/* Highlight Label */
.skill-card span {
  display: block;
  font-weight: 600;
  color: #6f2cf3;
  margin-bottom: 8px;
}

/* Hover Effect (Subtle & Professional) */
.skill-card:hover {
  background: #CBC3E3;
}

/* Responsive (Mobile) */
@media (max-width: 900px) {
  .skills-wrapper {
    flex-direction: column;
    margin-top: -60px;
  }

  .skill-card {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .skill-card:last-child {
    border-bottom: none;
  }
}


.work {
  padding: 40px 20px;
  text-align: center;
}

.work h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.work-sub {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
}

.work-sub a {
  color: #6f2cf3;
  text-decoration: none;
  font-weight: 500;
}

/* Cards layout */
.work-cards {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* Individual card */
.work-card {
  flex: 1;
  height: 240px;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}

.work-card img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    transform: scale(1);
    transition: 600ms;
}
.work-card span{
    color: #f3862c;
    position: absolute;
    top: 0;
    left: 10px;
}
.live-preview {
  background: #fff;
  color: #2dd4bf;
  border: 2px solid #2dd4bf;
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 10px;
}

/* Hover effect */
.live-preview:hover {
  background: #2dd4bf;
  color: #000;
}


.card-3 span{
    color: #fff;
}

.work-card img:hover{
    transform: scale(1.2);
}

.slider {
    max-width: 1200px;
    margin: auto;
  overflow: hidden;
  padding: 80px 0;
  background: #f8fafc;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 300px;
  height: 200px;
  margin: 0 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.faq {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #6f2cf350;
}

.faq-answer p {
  padding: 20px 24px;
  color: #475569;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}




.contact-form {
  max-width: 520px;
  margin: 40px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 10px;
}

/* Inputs & Select */
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  outline: none;
  transition: all 0.3s ease;
}

/* Focus State */
.contact-form input:focus,
.contact-form select:focus {
  border-color: #6f2cf3;
  box-shadow: 0 0 0 3px rgba(111, 44, 243, 0.15);
}

/* Placeholder */
.contact-form input::placeholder {
  color: #94a3b8;
}

/* Select arrow fix */
.contact-form select {
  background-color: #fff;
  cursor: pointer;
}

/* Submit Button */
.contact-form button {
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #6f2cf3;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button Hover */
.contact-form button:hover {
  background: #5b21b6;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(111, 44, 243, 0.35);
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .contact-form {
    padding: 24px;
  }
}



.footer {
  background: #6f2cf3;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.footer h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
}
.footer-time {
  font-weight: 600;
  color: #ffd6ff;              /* soft highlight */
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Subtle glow on hover */
.footer-time:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}


html {
  scroll-behavior: smooth;
}
section, div, form {
  scroll-margin-top: 100px;
}