* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Syncopate', sans-serif;
}


body {
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #1a1a1a;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

header .logo:hover {
  transform: scale(1.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ff4fdc;
  transform: scale(1.1);
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background: #ededed;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
  color: black;
  letter-spacing: 4px;
}

.hero-text h1 span {
  background: #ff4fdc;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 30px;
  transition: background 0.3s ease;
}



h1.small-text{
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    color: #111;
    background: none;
    padding: 0;
}

.side-heading{
    text-align: left;
    margin-left: 50px;
    font-weight: bold;
    font-size: 6 rem;
}

.hero-text h1 span:hover {
  background: #e23dc7;
}
.hero-text p {
  margin-top: 20px;
  font-size: 14px;
  color:black;
}

.hero img {
  max-width: 700px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.hero img:hover {
  transform: scale(1.05);
}


.intro {
  text-align: center;
  padding: 60px 10%;
  background: #1a1a1a;
}

.intro h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.intro p {
  font-size: 14px;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}


.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 10%;
  background: #111;
}

.about img {
  width: 50%;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.about img:hover {
  transform: scale(1.05);
}

.about-text {
  width: 50%;
}

.about-text h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 14px;
  color: #aaa;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff4fdc;
  color: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #e23dc7;
  transform: scale(1.05);
}


.footer {
  background: #f5f5f5;
  text-align: center;
  padding: 60px 10%;
  color: #111;
}

.footer h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
  text-align: right;
  margin-bottom: 40px;
  margin-right: 80px;
  margin-top: 30px;
}



@media(max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .about-text {
    max-width: 100%;
    width: 100%;
  }

  .about {
    flex-direction: column;
  }

  .about img {
    width: 100%;
  }
}

.section-two {
  width: 100%;
  padding: 60px 10%;
  text-align: center;
  background-color: white;
}

.intro-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.intro-text p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 40px;
}


.pink-card {
  display: flex;
  flex-wrap: wrap;
  padding:15px;
  box-sizing:border-box
  margin:0 auto;
  background: #fab9d7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 0 auto 70px;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  padding: 10px;
  border-radius: 25px;
  margin:0 auto;
}

.card-image {
  flex: 1 1 40%;
}

.card-content {
  flex: 1 1 60%;
  padding: 40px;
  text-align: left;
}

.card-content .tag {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-aling: center;
}

.card-content p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 25px;
  text-aling:center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #444;
  transform: translateY(-3px);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.recent-work h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: black;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.work-card {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
  color: black;
}

.work-card img {
  width: 100%;
  display: block; 

}

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


@media (max-width: 768px) {
  .pink-card {
    flex-direction: column;
  }

  .card-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero img {
    width: 100%;
    margin-top: 15px;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
    margin-bottom: 15px;
  }

  .about-text {
    padding: 0 10px;
  }

  .pink-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .pink-card img {
    width: 100%;
    margin-bottom: 15px;
  }

  .work-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .side-heading {
    font-size: 1.5rem;
  }
}


@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .intro h2 {
    font-size: 1.2rem;
  }

  .work-gallery {
    grid-template-columns: 3,1fr;
  }

  header nav ul li a {
    font-size: 0.9rem;
  }
}


nav ul {
  display: flex;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  right: 20px;
  position: absolute;
  top: 20px;
  z-index: 1100;
  cursor: pointer;

}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f8f7f7;
  border-radius: 2px;
  color: white;
}


@media (max-width: 768px) {
  nav ul {
    display: none;  
    flex-direction: column;
    background:rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 260px;
    padding: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  }

  nav ul li{
margin: 10PX 0;
  }
  
  nav ul li a{
    color: rgb(14, 14, 14);
    text-decoration: none;
  }
  nav ul.active {
    display: flex; 
  }

  .hamburger {
    display: flex; 
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #040404;
  color: #fff;
  text-align: center;
}


.icons-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 20px 0;
  font-size: 14px;
  color: #aaa;
}

.metrics-title {
  text-align: left;
  margin: 20px 60px;
  font-size: 18px;
  color: #fff;
}

.metrics-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 60px;
}

.metrics-left {
  flex: 1;
  text-align: left;
}

.metrics-left .star {
  font-size: 80px;
  margin: 0;
  color: #ddd;
}

.metrics-left .small-text {
  width: 250px;
  font-size: 12px;
  color: #aaa;
}

.metrics-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

.stat h2 {
  font-size: 48px;
  margin: 0;
  color: #fff;
}

.stat p {
  font-size: 12px;
  margin: 0;
  color: #bbb;
}


.images-section {
  margin-top: 60px auto 0;
  position: relative;
  height: 350px;
  max-width: 1000px;
  width: 90%;
}

.img {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.img1 {
  left: 5%;
  top: 60px;
  width: 200px;
  transform: rotate(-10deg);
  z-index: 1;
}

.img2 {
  left: 50%;
  top: 0;
  width: 320px;
  z-index: 2;
  transform: translate(-50%);
}

.img3 {
  right: 5%;
  top: 80px;
  width: 250px;
  transform: rotate(8deg);
  z-index: 1;
}

.text-section {
  margin-top: 10px;
}

.tag {
  background: #444;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  cursor: default;
}

.text-section h3 {
  font-weight: normal;
  line-height: 1.5;
  margin-top: 10px;
}

.learn-btn {
  display: flexbox;
  margin-top: 10px;
  background: linear-gradient(to right, #a855f7, #ec4899);
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  justify-content: center;
}


@media (max-width: 1024px) {
  .metrics-box {
    flex-direction: column;
    align-items: center;
    margin: 20px;
  }

  .metrics-left .small-text {
    width: 100%;
    text-align: center;
  }

  .images-section {
    height: 250px;
  }

  .img1 { width: 140px; }
  .img2 { width: 200px; }
  .img3 { width: 160px; }
}

@media (max-width: 600px) {
  .stat h2 {
    font-size: 28px;
  }

  .metrics-left .star {
    font-size: 40px;
  }

  .metrics-left .small-text {
    font-size: 11px;
  }

  .images-section {
    height: 200px;
  }

  .img1 { width: 100px; }
  .img2 { width: 150px; }
  .img3 { width: 120px; }

  .text-section {
    margin-top: 100px;
    padding: 0 15px;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: rgb(0, 0, 0);
  color: #fff;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
.card {
  background: #1f1f22;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}


.testimonials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.testimonial {
  background: #1f1f22;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.testimonial h3 {
  margin: 0 0 5px;
}
.testimonial p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}


footer {
  background: #111;
  padding: 30px;
  color: #bbb;
  text-align: center;
}
.footer-links{
  justify-content: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  text-align: left;
}
.footer-content div {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}
.footer-content h2, .footer-content h3 {
  color: #fff;
}
.footer-links {
  margin: 10px 0;
  font-size: 14px;
  text-align: center;
}
.copy {
  font-size: 12px;
  color: #777;
}
.avatar{
  width: 60px;
  height: 60px;
  border-radius: 50%;   
  border: 3px solid #f5f0e6;
  margin-bottom: 10px;
  object-fit: cover;    
}

.stars {
  color: #a50197;   
  font-size: 18px;
  margin: 5px 0 10px;
  letter-spacing: 2px; 
}

@media (max-width: 992px) {
  .cards {
    justify-content: center;
  }
  .card {
    width: 45%;  
  }
  .testimonials {
    flex-direction: column;
  }
  .testimonial {
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

footer {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  color: #f4a01a;
}


@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}


@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}