
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    justify-content: center;
  }

  html{
      scroll-behavior: smooth;
  }

  body {
    background: #fff;
    color: #333;

  }


  #header {
    background-size: cover;
    background-position: right;

  }


  .container {
    padding: 10px 10%;
  }


  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin-top: -30px;
    /* background-color: lightblue; */
  }



  /* Logo positioning */
  .logo {
    height: 40px;
    width: auto;
    margin-left: 0;
  }


  nav ul {
    display: flex;
    align-items: center;
  }

  nav ul li {
    list-style: none;
    margin: 10px 20px;
  }

  nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
    position: relative;
    gap: 20px;
  }

  nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  /* Mobile menu icons - hidden by default */
  #menu-icon, #close-icon {
    display: none;
  }

  @media only screen and (max-width: 600px) {
    #menu-icon {
      display: block !important;
    }

    nav ul.active #close-icon {
      display: block !important;
    }
  }

  /* Header Text */
  .header-text {
    margin-top: 80px;
    font-size: 20px;
    text-align: center;
  }

  .header-text h1 {
    font-size: 40px;
    margin-top: 20px;
  }

  @media only screen and (min-width: 768px) {
    .header-text {
      margin-top: 150px;
      font-size: 30px;
      text-align: left;
    }

    .header-text h1 {
      font-size: 60px;
    }
  }

  .header-text span {
    color: grey;
  }

  /* Image inside header – optional positioning */
  .my-img {
    position: absolute;
    left: 60%;
    top: 200px;
    width: 300px;
    height: 300px;
    display: none; /* Hidden by default, show on larger screens */
  }

  @media only screen and (min-width: 1024px) {
    .my-img {
      display: block;
    }
  }

  /* About Section */
  #about {
    padding: 40px 0;
    color: #555;
  }

  @media only screen and (min-width: 768px) {
    #about {
      padding: 80px 0;
    }
  }

  .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .about-col-1 {
    flex-basis: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  @media only screen and (min-width: 768px) {
    .about-col-1 {
      flex-basis: 35%;
      margin-bottom: 0;
    }
  }

  .about-col-1 img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
  }

  .about-col-2 {
    flex-basis: 100%;
    text-align: center;
  }

  @media only screen and (min-width: 768px) {
    .about-col-2 {
      flex-basis: 60%;
      text-align: left;
    }
  }

  .sub-title {
    font-size: 40px;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
  }

  @media only screen and (min-width: 768px) {
    .sub-title {
      font-size: 60px;
    }
  }

  .tab-titles{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 40px;
  }

  @media only screen and (min-width: 768px) {
    .tab-titles {
      justify-content: flex-start;
    }
  }

  .tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor:pointer;
    position: relative;
  }

  .tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
  }

  .tab-links:hover::after {
    width: 50%;
  }

  .tab-links.active-link::after{
    width: 50%;
  }

  .tab-content ul li{
    list-style: none;
    margin: 10px 0px;
  }

  .tab-content{
    display: none;

  }

  .tab-content.active-tab{
    display: block;

  }

  /* ------------------services-------------------- */

  #services{
    padding: 30px 0;
  }

  .services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
  }

  .services-list div{
      background: lightblue;
      padding: 40px;
      font-size: 13px;
      font-weight: 300;
      border-radius: 10px;
      transition: background 0.5s, transform 0.5s;

  }

  .services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
  }

  .services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .services-list div a{
    text-decoration: none;
    color: darkblue;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
  }

  .services-list div:hover{
    background: lightskyblue ;
    transform: translateY(-10px);
  }

  /* ------------------Portfolio--------------------------- */

  #portfolio{
    padding: 50px 0px;
  }

  .work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
  }

  .work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .work img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: inline-block;
    transition: transform 0.5s;
  }

  .layer{
    width: 100%;
    height: 0;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.5s;
  }

  .layer h3{
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    order: 1;
  }

  .layer p{
    color: white;
    order: 3;
  }

  .layer a{
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    order: 2;
  }

  .work:hover img{
    transform: scale(1.1);
  }

  .work:hover .layer{
    height: 100%;
    padding: 20px 24px;
  }

  #lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
  }

  #lightbox.active {
    display: flex;
  }

  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
  }

  #lightbox iframe {
    width: min(92vw, 1200px);
    height: min(80vh, 675px);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    background: #000;
  }

  #lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

  #lightbox .prev,
  #lightbox .next {
    position: absolute;
    top: 50%;
    font-size: 50px;
    padding: 10px;
    color: white;
    cursor: pointer;
    user-select: none;
  }

  #lightbox .prev { left: 5%; }
  #lightbox .next { right: 5%; }

  .btn3{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border-radius: 20px;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    background-color: black;
    color: white;
    font-weight: bold;
    font-family: "Arial", Sans-serif;
    text-decoration: none;
    transition: background 0.5s, transform 0.5s;

  }

  .btn3:hover{
    background: lightskyblue ;
    transform: scale(1.1);
  }

  /* -----------------------3 Steps--------------------- */


  .containerss {
  max-width: 900px;
  text-align: center;
  background: linear-gradient(to right, #1a1a1a, #4b0082);
  border-radius: 15px;
  padding: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.title {
  font-size: 3em;
  margin-bottom: 40px;
  color: #fff;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  padding: 20px 0;
}

.step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: background 0.5s, transform 0.5s;
  max-width: 300px;
  margin: 10px auto;
}

.step:hover {
  transform: translateY(-10px);
}

.step img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.step-title {
  font-size: 1.5em;
  margin: 10px 0;
  color: #000;
}

.step-description {
  font-size: 1em;
  color: #666;
}

.containerss h1 {
  color: #fff;
}

.to {
  color: lightblue;
}


  /* ------------------------------contact------------------- */

  /* .contact-left{
    flex-basis:35%
  } */

  .contact-right{
    flex-basis:60%
  }

  .contact-left p{
    margin-top: 30px;
  }

  .contact-left p i{
    color: gray;
    margin-right: 15px;
    font-size:25px;
  }

  .social-icons{
    margin-top: 30px;
    justify-content: center;
    text-align: center;
    margin-right: 45px;
  }

  .social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
  }

  .social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px)
  }

  .contact-right form{
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  @media only screen and (min-width: 768px) {
    .contact-right form {
      margin-left: 100px;
    }
  }

  @media only screen and (min-width: 1024px) {
    .contact-right form {
      margin-left: 250px;
    }
  }

  form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: lightblue;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
  }

  form button, form .btn3 {
    display: block;
    margin: 20px auto;
  }


  /* --------------------------Boook--------------------- */


  /* body{
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fdf6ff;
    display: flex;
    justify-content: center;
    padding: 40px;
  } */

  .container-book {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }

  @media only screen and (min-width: 768px) {
    .container-book {
      flex-direction: row;
      padding: 40px;
      margin-right: 60px;
    }
  }

  .box {
    border-radius: 25px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    color: #000;
    transition: transform 0.3s ease;
  }

  .box:hover {
    transform: translateY(-15px);
  }

  .contact {
    background: #f6baff;
  }

  .book {
    background: #b800c6;
    color: #fff;
  }

  .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  /* Text */
  h2 {
    margin: 10px 0;
    font-size: 24px;
  }

  p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Button */
  .btn2 {
    background: white;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
  }

  .btn2:hover {
    background: lightblue;

  }

  /* --------------copyright------- */

  .copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-weight: bold;
    margin-top: 20px;
    background: lightblue;

  }
 
  /* Make website mobile-friendly */
@media only screen and (max-width: 600px) {

  /* General container padding */
  .container {
    padding: 0 15px;
  }

  /* Navigation improvements */
  nav {
    margin-top: 0;
    padding: 15px 0;
  }

  .logo {
    height: 35px;
    margin-left: 0;
  }

  nav ul {
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    display: flex;
    padding: 80px 20px 20px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    font-size: 20px;
    display: block;
    padding: 10px;
  }

  /* Make row stack vertically */
  .row {
    flex-direction: column;
    align-items: center;
  }

  /* Adjust text column */
  .about-col-2 {
    width: 100%;
    text-align: center;
  }

  /* About section buttons */
  .btn3 {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 30px;
    font-size: 14px;
  }

  #portfolio .btn3 {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Header text */
  .header-text {
    margin-top: 60px;
  }

  .header-text h1 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  /* Services grid */
  .services-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .services-list div {
    padding: 30px 20px;
  }

  .services-list div h2 {
    font-size: 24px;
  }

  /* Portfolio work grid */
  .work-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  /* 3 Steps section */
  .steps {
    flex-direction: column;
    padding: 10px;
    margin-left: 0;
    gap: 20px;
  }

  .containerss {
    margin: 20px 10px;
    padding: 30px 20px;
  }

  .title, .containerss h1 {
    font-size: 1.8em;
  }

  .step {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .step-title {
    font-size: 1.3em;
  }

  .step-description {
    font-size: 0.95em;
  }

  /* Contact section */
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    flex-basis: 100%;
    max-width: 100%;
  }

  .contact-right form {
    width: 100%;
    margin: 0;
  }

  form input, form textarea {
    font-size: 14px;
  }

  form input {
    padding: 10px;
    margin: 8px 0;
  }

  form textarea {
    padding: 10px;
    margin: 8px 0;
    min-height: 80px;
  }

  form button.btn3, form .btn3 {
    display: block;
    width: auto;
    margin: 20px auto;
    text-align: center;
    padding: 10px 25px;
  }

  /* Social icons */
  .social-icons {
    margin-right: 0;
    margin-top: 20px;
  }

  .social-icons a {
    font-size: 26px;
    margin: 0 10px;
  }

  /* Copyright */
  .copyright {
    padding: 20px 10px;
    font-size: 12px;
  }
}

/* Tablet and medium screens */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .header-text h1 {
    font-size: 48px;
  }

  .sub-title {
    font-size: 48px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .containerss {
    padding: 30px;
  }

  .steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex: 1;
    min-width: 45%;
  }

  .contact-right form {
    margin-left: 50px;
  }
}

/* Original media query cleanup */
@media only screen and (max-width: 600px) {
  .btn3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}