    .img-height > img{
   object-fit:cover;
    }
    .grid-container {
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      }

    .grid-container img {
      width: 100%;
      border-radius: 10px;
      display: block;
    }

    .grid-text h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .grid-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ccc;
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 3rem;
      }

      .grid-container {
        grid-template-columns: 1fr;
      }
    }


.container {
      display: flex;
      flex-wrap: wrap;
      padding: 0 5%;
      justify-content: space-between;
      align-items: flex-start;
    }
    .left, .right {
      flex: 1;
      min-width: 300px;
      margin: 10px;
    }
    .left h1 {
      font-size: 48px;
      font-weight: 900;
      color: black;
      display: inline-block;
      padding: 10px 20px;
      margin: 0 0 20px;
    }
    .left p {
      font-size: 18px;
      line-height: 1.6;
      margin: 10px 0;
    }
    .highlight {
      font-weight: bold;
    }
    .orange {
      color: #f7931e;
      margin-top: 20px;
    }
    .hashtag {
      font-size: 32px;
      font-weight: 900;
      margin: 30px 0 20px;
    }
    .hashtag span {
      color: #9050eb;
    }
    .hashtag .orange-text {
      color: #ffdd17;
    }
    .download-btn {
      background: #9050eb;
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      font-size: 16px;
		margin-left:50px;
    }
  .custom-form {
  width: 100%;
  max-width: 700px;
  position: static !important;
  margin-left: auto;
 margin-right: -50px;
  padding: 20px;
}
@media (max-width: 767px) {
.custom-form {
        max-width: 100%;
        padding: 15px;
        /* margin: 40px auto 0 auto; */
        position: relative !important;
        margin-right: -25px;
        margin-top: 30px;
    }
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.full {
  flex-direction: column;
}

input, textarea {
  flex: 1;
  padding: 10px 5px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-bottom-color: #1e63d8;
}

textarea {
  resize: vertical;
  height: 100px;
}

.submit-btn {
/*   background: #ffdd17;
    color: black; */
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
    .submit-btn {
      background: #00bfff;
      color: white;
      border: none;
      padding: 14px 30px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .form-field input {
        width: 100%;
      }
    }
@media (max-width: 767px) {
.download-btn {
    background: #9050eb;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
	margin-left: 0;
}
		}
@media (max-width: 600px) {
  .latest-works h1 {
    margin-top: 100px;
  }
}

  .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .blog-card {
      display: flex;
      flex-direction: column;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      background-color: #fff;
      transition: transform 0.2s;
    }

    .blog-card:hover {
      transform: translateY(-4px);
    }

    .blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }

    .blog-title {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 10px;
      color: #111;
    }

    .blog-desc {
      font-size: 15px;
      line-height: 1.5;
      color: #444;
    }

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

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9050eb;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  margin-top: 15px;
 }

.read-more:hover {
  background-color: #ffdd17;
	color:black;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 86, 179, 0.4);
}

    @media (max-width: 768px) {
      .blog-content {
        padding: 15px;
      }
    }
.single-post-container {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #fff;
}

.post-title {
  font-size: 45px;
    margin-bottom: 10px;
    color: white;
    margin-top: 100px;
}

.post-meta {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.post-content p {
  margin-bottom: 18px;
	color:white;
}
.page-loader{
                position: fixed;
                inset: 0;
                z-index: 9999999999;

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

                background: #222222;

                opacity: 0;
                visibility: hidden;
                
                transition: all ease 500ms;
            }

            .page-loader.is-loading{
                opacity: 1;
                visibility: visible;
            }

            .page-loader__logo-wrap{
                overflow: hidden;

                width: 300px;
                aspect-ratio: 160/30;
                
                transition: all ease 250ms;
            }
            
            @keyframes slide {
                    0% {
                        translate: 0%;
                    }
                    100% {
                        translate: 0 -100%;
                    }
                    
                }

            .page-loader__logo{
                width: 100%;
                height: 100%;
                object-fit: contain;

                animation: slide 1500ms ease infinite;
            }
            .accordion__header-main-text span{
                font-weight: 300;
            }
