body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #f5f5f5;
    overflow-x: hidden;
  }
  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal overflow */
    width: 100%;
  }
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 0rem; 
    position: fixed;
    width: 100%;
    z-index: 10;
    background: rgba(15, 15, 15, 0.9);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5f5f5;
  }
  #hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
    margin: 0rem 6rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
  }
  
  .hero-text {
    max-width: 50%;
  }
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #e5e5e5;
  }
  .hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b5b5b5;
  }
  .cta {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: background 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
  }
  
  .cta:hover {
    background: #fff;
    color: #0f0f0f;
  }
  .hero-image {
    width: auto;
    height: 70vh;
    border-radius: 20px;
    background-size: cover;
  }
  @media (max-width: 1024px) {
    #hero {
      flex-direction: column;
      padding: 50px 20px;
      margin: 0;
    }
    .hero-text {
      max-width: 100%;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 3rem;
    }
    .hero-image {
      width: 60%;
      margin-top: 20px;
    }
  }
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2.5rem;
    }
    .hero-text p {
      font-size: 1rem;
    }
    .hero-image {
      width: 80%;
      height: auto;
    }
  }
  /* blobs  */
  /* blobs  */
  /* blobs  */

  .blob-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Ensure it's behind the hero text and image */
    overflow: hidden;
  }
  
  .blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.7), rgba(0, 204, 255, 0.7));
    filter: blur(100px);
    opacity: 0.8;
    animation: blob-move 10s infinite alternate ease-in-out;
  }
  
  

  /* circle button  */
  /* circle button  */
  /* circle button  */
  .button {
    cursor: pointer;
    border: none;
    background: #7808d0;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 80%;
    left: 50%;
    display: grid;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 600;
    transform: translate(-50%, -50%);
  }
  
  @media (max-width: 425px) {
    .button {
      top: 60%;
      left: 80%; /* Adjusted left position */
      transform: translate(-50%, -50%); /* Change the transform to adjust its position correctly */
    }
    .button__circle {
        width: 30px;
        height: 30px;

      }
  }
  
  
  .button__text {
    position: absolute;
    inset: 0;
    animation: text-rotation 8s linear infinite;
  
    > span {
      position: absolute;
      transform: rotate(calc(15deg * var(--index)));
      inset: 2px;
    }
  }
  
  .button__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    color: #7808d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
  }
  
  .button__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
  }
  
  .button:hover {
    background: #000;
    transform: scale(1.05);
    transform: translate(-50%, -50%)

  }
  
  .button:hover .button__icon {
    color: #000;
  }
  
  .button:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
  }
  
  .button:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
  }
  
  
  @keyframes text-rotation {
    to {
      rotate: 360deg;
    }
  }
  
  /* about  */
  /* about  */
  /* about  */
  #story-section {
    padding: 60px 6rem;
    color: #f5f5f5;
  }
  .story-title{
    text-align: center !important;
    font-size: 4rem !important;
  }
  .story-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .story-part.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  
  .story-part.reverse .split {
    direction: ltr;
  }
  
  .story-part .split {
    padding: 20px;
  }
  
  .story-part h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .story-part p {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  
  .story-part .split.right lottie-player {
    width: 100%;
    max-width: 600px;
    height: 100%;
  }
  
  @media (max-width: 1024px) {
    .story-part {
      grid-template-columns: 1fr;
    }
  
    .story-part .split {
      text-align: center;
    }
  
    .story-part h2 {
      font-size: 3rem;
    }
  
    .story-part p {
      font-size: 1.5rem;
    }
  
    .lottie-scroll {
      width: 100%;
      max-width: 400px;
      height: 300px;
      margin: 20px auto;
    }
    .story-part.reverse {
      grid-template-columns: 1fr;
      direction: ltr;
    }
  }
  
  @media (max-width: 768px) {
    .story-part h2 {
      font-size: 2.5rem;
    }
  
    .story-part p {
      font-size: 1.2rem;
    }
  
    .lottie-scroll {
      height: 200px;
    }
  }
  
  
  /* services  */
  /* services  */
  #services {
    position: relative;
    padding: 150px 20px;
    color: #f5f5f5;
    overflow: hidden;
    text-align: center;
  }
  
  .background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .background-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-out;
  }
  
  .fade-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    pointer-events: none;
  }
  
  .fade-top {
    top: 0;
    background: linear-gradient(to bottom, black, transparent);
  }
  
  .fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
  }
  
  .services-header h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .services-header p {
    font-size: 1.8rem;
    color: #bbb;
    margin-bottom: 60px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    position: relative;
    padding: 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .service-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1.2rem;
    color: #ddd;
  }
  @media (max-width: 768px) {
    .services-header h2 {
      font-size: 2.5rem;
    }
    
    .services-header p {
      font-size: 1rem;
    }
  }
  /* projects  */
  /* projects  */
  /* projects  */
  #projects {
    padding: 50px 20px;
    color: white;
  }
  
  .projects-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .projects-header h2 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 800;
  }
  
  .projects-header p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .project-card {
    position: relative;
    height: 60vh;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5); /* Brighter on hover */
  }
  
  .project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease, filter 0.5s ease;
    filter: brightness(50%);
  }
  
  .project-card:hover .project-image {
    transform: scale(1.2);
    filter: brightness(70%);
  }
  
  .project-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
  }
  
  .project-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .project-tools {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tag {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    color: white;
    transition: background 0.3s ease;
  }
  
  .project-card:hover .tag {
    background: rgba(255, 255, 255, 0.75);
    color: #000000;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
  
    .project-card {
      height: 50vh;
    }
  }
  
  @media (max-width: 768px) {
    .projects-header h2 {
      font-size: 2.5rem;
    }
  
    .projects-header p {
      font-size: 1.2rem;
    }
  
    .project-title {
      font-size: 1.5rem;
    }
  
    .project-tools {
      font-size: 1rem;
    }
  }
  
  /* graphics */
  /* graphics */
  /* graphics */
  #graphic-gallery {
    padding: 60px 20px;
    background: #111;
    color: white;
  }
  
  .gallery-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* desktop */
    gap: 16px;
  }
  
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr); /* mobile */
    }
  }
  
  .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    /* background: #222; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
  }

  /* skills  */
  /* skills  */
  #skills {
    padding: 60px 20px;
    color: white;
  }
  
  .skills-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .skills-header h2 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .skills-header p {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
  }
  
  .skills-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .skills-column .skill-item:last-child {
    border-bottom: none;
  }
  
  /* .skills-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
  } */
  
  .skill-item i,
  .skill-item img {
    font-size: 2rem;
    width: 32px;
    height: 32px;
  }
  
  .custom-icon {
    width: 32px;
    height: 32px;
  }
  @media (max-width: 768px) {
    .skills-header h2 {
      font-size: 2.5rem;
    }
    .skills-header p {
      font-size: 1rem;
    }
  }
  @media (max-width: 768px) {
    .skills-grid {
      grid-template-columns: 1fr;
    }
  
    .skills-grid::before {
      display: none;
    }
  }
   
  /* footer  */
  /* footer  */
  /* footer  */
  /* Main Styles */

  @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
  
  #contact-section {
    text-align: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .intro-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 0.05rem;
  }
  
  .big-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 8rem;
    font-weight: 800;
    text-transform: uppercase;
    overflow: hidden;
  }
  
  .big-text .firstname, .big-text .lastname {
    display: flex;
    gap: 10px;
  }
  
  .big-text span {
    display: inline-block;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
  }
  
  .big-text span:hover {
    transform: scaleX(1.8);
    letter-spacing: 0.1rem; /* Slight adjustment to spacing for smoother visual */
  }
  
  .social-links {
    margin-top: 30px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .social-links a {
    color: #f5f5f5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    color: #7808d0;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .social-links svg {
    width: 24px;
    height: 24px;
    fill: #f5f5f5; /* Default color */
    transition: fill 0.3s ease;
  }
  
  .social-links a:hover svg {
    fill: #7808d0; /* Change color on hover */
  }
  
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .big-text {
      flex-direction: column;
      font-size: 6rem;
    }
  
    .big-text span {
      font-size: 5rem;
    }
  
    .social-links {
      font-size: 1.3rem;
      gap: 15px;
    }
  
    .social-links a {
      width: 100%;
      justify-content: center;
    }
  
    .social-links i {
      font-size: 1.8rem;
    }
   
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .contact-link {
    color: #f5f5f5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
  }
  
  .contact-link:hover {
    color: #7808d0;
  }
  
  .contact-link i {
    font-size: 1.8rem;
  }
  
  

  /* blogs  */
  /* blogs  */
  /* blogs  */
  #blog-preview {
  padding: 0rem 6rem;
  color: white;
}

#blog-preview .section-title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  display: flex;
  flex-direction: row;
  background-color: #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: white;
  transition: transform 0.2s ease;
  position: relative;
  height: 350px; /* Fixed card height */
}

.blog-card:hover {
  transform: scale(1.02); /* Slight zoom on hover for the card */
}

.blog-image {
  width: 45%;
  height: 100%; /* Ensure image covers the full card height */
  object-fit: cover;
  overflow: hidden; /* Ensure the image doesn't overflow */
  position: relative; /* Allow child elements to be controlled */
  transition: transform 0.3s ease; /* Smooth transition for the image zoom effect */
  z-index: 1; /* Ensure it's above other content */
}

.blog-image img {
  width: 100%; /* Ensure image takes the full width */
  height: 100%; /* Ensure image takes the full height */
  object-fit: cover; /* Keep the aspect ratio intact */
  transition: transform 0.3s ease; /* Smooth transition for the image zoom effect */
}

.blog-image:hover img {
  transform: scale(1.4); /* Zoom effect on hover */
}

.blog-content {
  width: 55%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-excerpt {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 12px;
}

.blog-meta {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 0.85rem;
  color: #777;
}

/* CTA Button */
.cta {
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: background 0.3s ease;
  margin-top: 40px;
  text-decoration: none;
  text-align: center;
}

.cta:hover {
  background: #fff;
  color: #0f0f0f;
}

.more-blogs {
  text-align: center;
}

/* Remove anchor tag decoration */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-card {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    flex-direction: column;
    height: auto; /* Allow cards to adjust height in single column layout */
  }

  .blog-image,
  .blog-content {
    width: 100%;
  }

  .blog-meta {
    position: static;
    margin-top: 12px;
    text-align: right;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  
  #blog-preview {
    padding: 0rem 3rem;
    color: white;
  }
}
@media (max-width: 7425px) {
  
  #blog-preview {
    padding: 0rem 1rem;
    color: white;
  }
}

/* contact form  */
/* contact form  */
#contact-form-block {
  padding: 6rem 10%;
  color: #fff;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.styled-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .input-row {
    flex-direction: row;
  }
}

.input-row input,
.styled-contact-form textarea {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  font-size: 1rem;
}

.styled-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  align-self: center;
  padding: 0.75rem 2.5rem;
  border: 2px solid #fff;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: white;
  color: black;
}

#thankYouMessage {
  font-size: 1.2rem;
  font-weight: 500;
  color: #66ff99;
  margin-top: 2rem;
}