body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
  cursor: none;
}

/* Basic CSS for elements */
h1, h2, h3, h4, h5, h6 {
  color: #333;
  margin: 0 0 1rem 0;
}

h1{
  font-size: 2.5rem;
}

h2{
  font-size: 1.8rem;
}

h3{
  font-size: 1.5rem;
}

h4{
  font-size: 1.3rem
}

h5{
  font-size: 1.1rem;
}

h6{
  font-size: 0.9rem;
}

h1::after, .wp-block-heading::after{
  content: '';
    width: 6px;
    height: 6px;
    margin-left: 4px;
    background-color: #ff3366;
    border-radius: 50%;
    display: inline-block;
}

p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
}

li {
  margin: 0 0 0.5rem 0;
}

.wp-block-list{
  padding-left: 5px;
}

.wp-block-list li {
  list-style: none; 
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: #333; 
}

/* Add a custom bullet using Line Awesome */
.wp-block-list li::before {
  content: "\f068"; 
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px; 
  color: #ff3366; 
}

blockquote {
  position: relative;
  font-size: 18px;
  font-style: italic;
  color: #333;
  padding: 20px;
  margin: 20px 0;
}

/* Line Awesome Icon at the Top Right */
blockquote::after {
  content: "\f10e"; 
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  right: 10px;
  font-size: 30px;
  color: #ff3366;
  opacity: 0.6;
}

.wp-block-image img{
  border-radius: 6px;
  width: 100%;
  height: auto;
}

a {
  color: #ff3366;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #333;
}

button, .wp-block-button__link, .submit{
  background-color: #ff3366;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .wp-block-button__link:hover {
  background-color: #333;
  color: #fff;
}

button, a {
  cursor: none;
  position: relative;
}

/* Custom cursor styles */

.custom-cursor, .cursor-dot, .cursor-tail {
  opacity: 1 !important;
  visibility: visible !important;
}

.custom-cursor {
  position: fixed;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1px solid var(--cursor-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s, height 0.2s;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--cursor-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

/* Magnify cursor on hover */
.cursor-grow {
  width: var(--cursor-hover-size);
  height: var(--cursor-hover-size);
  background-color: rgba(255, 71, 87, 0.1);
  mix-blend-mode: difference;
}

/* Cursor tail particles */
.cursor-tail {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
}

.tail-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--cursor-color);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-20%, -20%);
}

p{
  font-size: 1.2rem;
}

a{
  font-size: 1.1rem;
}
.hero-section {
    padding: 4rem 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-content {
    padding-right: 2rem;
  }

  .greeting {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .name {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    position: relative;
    color: #1a1a1a;
  }

  .name::after {
    content: '';
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background-color: #ff3366;
    border-radius: 50%;
    display: inline-block;
  }


  .title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .title::after{
    content: '';
    width: 7px;
    height: 7px;
    background-color: #ff3366;
    display: inline-block;
    margin-left: 3px;
  }

  .cta-button {
    display: inline-block;
    cursor: pointer;
    padding: 1rem 2rem;
    background: #ff3366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 2rem;
    transition: transform 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
  }

  .hero-image {
    position: relative;
    text-align: right;
    width: 400px;
    height: 400px;
    margin-left: auto;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: floatAnimation 6s ease-in-out infinite;
    border: 1px solid #ff3366;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .contact-item:not(:last-child) {
    border-right: #666 1px solid;
  }
  
  .contact-item h4 {
    color: #666;
    margin: 0 0 0.5rem 0;
    font-size: 15px;
  }
  
  .contact-item p {
    color: #333;
    margin: 0;
    font-size: 14px;
  }

  @keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }

  
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-image {
    max-width: 350px;
    max-height: 350px;
    margin: 0 auto;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .container{
    padding: 0 1rem;
    max-width: 100%;
  }

  .name {
    font-size: 2.8rem;
  }

  .title {
    font-size: 2rem;
  }

  .cta-button {
    width: auto;
    padding: 15px 30px;
    text-align: center;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem;
    border-radius: 6px;
    justify-content: center;
    margin-bottom: 3rem;
    background: #f0f0f0;
  }

  .contact-item:not(:last-child) {
    border-right: none;
  }

  .contact-item:nth-child(3) {
    grid-column: span 2; 
    text-align: left;
  }

}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }

  .name {
    font-size: 2.2rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .hero-image {
    max-width: 250px;
    max-height: 250px;
  }
}


.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}

.to-top span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 10px;
  color: #000;
  margin-right: 5px;
}

.progress-container {
  width: 3px; 
  height: 80px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.to-top-bar {
  width: 100%;
  height: 0;
  background-color: #ff3366; 
  position: absolute;
  bottom: 0;
  transition: height 0.3s ease-in-out;
}


:root {
  --cursor-color: #ff4757;
  --cursor-size: 16px;
  --cursor-hover-size: 50px;
  --tail-particles: 10;
}


/* Whta I Do Section */
.what-i-do{
  background: #F9F9FC;
  padding: 5rem 0;
}
.service-card {
  background-color: #fff;
  border-radius: 6px;
  padding: 30px 40px;
  transition: all 0.3s ease;
  height: 200px;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: #000;
}

.service-icon {
  font-size: 50px; 
  margin-bottom: 10px;
  color: #222; 
  transition: color 0.3s ease;
}

.service-icon i{
  font-size: 50px;
}

.service-card:hover .service-icon {
  color: #fff; 
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  transition: color 0.3s ease;
  align-items: center; 
}

.section-description{
  margin-bottom: 3rem;
}


.service-card:hover .service-title {
  color: #fff; 
}

.learn-more {
  display: inline-flex;
  bottom: 2.2rem;
  position: absolute;
  align-items: center;
  text-decoration: none;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card:hover .learn-more {
  color: #fff; 
}

.learn-more span {
  margin-right: 8px;
}

.learn-more i {
  margin-top: 5px;
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}


.owl-nav {
  text-align: center;
  margin-top: 30px;
}

.owl-prev, .owl-next {
  background-color: #fff !important;
  color: #333 !important;
  font-size: 20px !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 10px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
  background-color: #333 !important;
  color: #fff !important;
}



@media screen and (max-width: 768px) {
  
  .title {
      font-size: 32px;
  }
  
  .section-description {
      font-size: 16px;
  }

  .service-card {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid #f0f0f0;
  }
}

@media screen and (max-width: 480px) {
  .title {
      font-size: 28px;
  }

  .service-icon {
      font-size: 40px;
  }
  .service-title {
      font-size: 20px;
  }
  .learn-more {
      font-size: 14px;
  }
}


/*About Section*/
.about-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  gap: 1rem;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.image-wrapper:first-child {
  width: 40%;
}

.image-wrapper:last-child {
  width: 60%;
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.image-stack img:hover {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: 170px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3366;
}

.badge-text h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.badge-text p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.about-content {
  padding-right: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  color: #ff3366;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}



.tabs {
  margin-bottom: 2rem;
}

.tab-navigation {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 0.5rem;
}

.tab-button {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff3366;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button.active {
  color: #ff3366;
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-button:hover {
  color: #ff3366;
  background: none;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.progress-section {
  margin-top: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.progress-title {
  color: #1a1a1a;
  font-weight: 500;
}

.progress-percentage {
  color: #666;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #ff3366;
  width: 75%;
  border-radius: 4px;
  transition: width 1s ease;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.team-member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.team-info h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.2rem;
}

.team-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-stack {
      flex-direction: column;
      height: auto;
    }

    .image-wrapper:first-child,
    .image-wrapper:last-child {
      width: 100%;
      height: 100%;
    }

    .experience-badge {
      bottom: 20px;
      left: 20px;
      padding: 1rem;
    }

  .title {
    font-size: 2.5rem;
  }

  .about-content {
    padding-right: 0;
  }

  .navigation {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding-bottom: 4rem;
  overflow: hidden;
}

.section-description {
  font-size: 16px;
  color: #777;
  max-width: 800px;
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}


.fixed-card {
  width: 100%;
  height: calc(100% - 10px); 
  min-height: 290px;
  max-height: 300px;
  min-width: 300px;
  padding: 70px 40px 40px;
  background-color: #222;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-container {
  width: 100%;
}

.fixed-card-title {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #fff;
}

.fixed-card-text {
  margin-bottom: 30px;
  font-size: 16px;
  opacity: 0.8;
  color: #fff;
}

.fixed-card-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}

.fixed-card-button:hover {
  background-color: #f1f1f1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.9s ease;
  filter: grayscale(100%) brightness(100%);
}

.portfolio-item:hover img:hover {
  transform: scale(1.15);
  transition: transform 0.9s ease;
}

.portfolio-item:hover .portfolio-image {
  filter: grayscale(0%) brightness(100%);
}

.portfolio-info {
  padding: 0;
  background-color: #fff;
}

.portfolio-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 6px;
  color: #222;
}

.portfolio-category {
  color: #777;
  font-size: 14px;
  margin-top: -5px;
}

.owl-nav button {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav button:hover {
  background-color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.owl-prev {
  left: -30px;
}

.owl-next {
  right: -30px;
}

.owl-nav i, .owl-nav svg {
  font-size: 24px;
  color: #333;
}

.owl-dots {
  margin-top: 5px;
}

.owl-theme .owl-dots .owl-dot.active span{
  background: #ff6600 !important;
}

/* Media Queries */
@media (max-width: 1024px) {
  .fixed-card-button {
      padding: 12px 20px;
      font-size: 12;
  }
}
@media screen and (min-width: 768px) {
  .fixed-card {
      width: 25%;
      margin-bottom: 0;
      max-height: 450px;
  }

  .carousel-container {
      width: 75%;
  }

  .portfolio-container {
      flex-wrap: nowrap;
      gap: 20px;
  }
  .owl-prev {
      left: 0;
  }
  
  .owl-next {
      right: 0;
  }
}

@media screen and (max-width: 767px) {
  .fixed-card {
      margin-bottom: 30px;
  }
  
  .section-title {
      font-size: 32px;
  }
  
}


/* My Brands Section */
.brands-section {
  margin: 0 auto;
  padding: 6rem 0;
  background: #F9F9FC;
  display: flex;
}

/* Grid container */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

/* Message block */
.message-block {
  padding-right: 20px;
}

.message-block h2 {
  position: relative;
  display: inline-block;
}


.message-block p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}


/* Logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
  gap: 100px; 
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo item */

.new-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
  border-radius: 3px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
  transition: transform 0.3s ease;
  position: relative;
  gap: 15px; 
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative;
  overflow: hidden;
  width: auto; 
  padding: 1rem 0;
}

.logo-container .logo {
  max-width: 100%;
  width: auto;
  height: 150px !important; 
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.logo-container .owl-carousel .owl-item img {
  max-width: 100%;
  
  width: auto !important;
  height: auto !important; 
}


.logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-item:hover .logo-container::before {
  opacity: 1;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.logo-item:hover .logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.brand-name {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; 
  font-weight: 500;
  color: #333;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.brand-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff3366;
  transition: width 0.3s ease;
}

.brand-name:hover {
  color: #ff3366;
}

.brand-name:hover::after {
  width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
  }

  .message-block {
      padding-right: 0;
      margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .logo-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .logo-item {
      align-items: center;
  }

  .brand-name {
      align-self: center;
  }
}

/* Blog Section */


.view-all {
  font-size: 14px;
  text-decoration: none;
  color: #ff3366;
  font-weight: bold;
  top: 2rem;
  right: 10px;
  position: absolute;
}

.blog-section {
  margin: 0 auto;
  padding: 4rem 0 0;
  overflow: hidden;
  position: relative;
}

.blog-section .owl-carousel{
  display: flex;
}

.blog-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.blog-carousel::-webkit-scrollbar {
  display: none; 
}

.blog-item {
  flex: 0 0 calc(33.333% - 20px); /* Ensure 3 items per row */
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-image {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  border-radius: 6px;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 6px;
  filter: grayscale(70%) brightness(100%);
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(100%);
}

.blog-content {
  padding: 20px 0;
  text-align: left;
}

.blog-content a {
  color: #334155;
  text-decoration: none;
  font-size: 22px;
}
.blog-title {
  text-decoration: none;
  font-weight: 600;
  color: #334155;
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.5s ease;
}

.blog-item:hover .blog-title {
  color: #475569;
  transform: translateY(-5px);
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.blog-author {
  font-weight: 500;
  color: #334155;
  font-size: 17px;
}

/* Carousel Navigation Buttons */
.carousel-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}


@media (max-width: 992px) {
  .blog-item {
      flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .blog-item {
      flex: 0 0 100%;
  }
}

/* Testimonial Section */
.testimonial-section{
  background: #F9F9FC;
  padding: 6rem 0;
}      

.testimonial-section .owl-carousel{
  display: flex;
}

.testimonial-header {
  margin-bottom: 50px;
}

.testimonial-header h2 {
  font-size: 48px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 900;
}

.testimonial-header p {
  color: #777;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

.testimonial-carousel {
  width: 90%;
  margin: auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 6px;
  padding: 40px;
  margin: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  transform: scale(1);
  width: 90%; 
  margin: 0 15px;
}


.owl-item.center .testimonial-card {
  opacity: 1;
  transform: scale(1.1); 
  width: 90%;
}

.owl-item {
  transition: transform 0.5s ease, opacity 0.5s ease;
}


.testimonial-content {
  flex-grow: 1;
  margin-bottom: 30px;
  margin-top: 2rem;
}

.testimonial-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}

.quote-icon {
  position: absolute;
  right: 2rem;
  top: 0;
  font-size: 6rem;
  color: #f0f0f0;
  opacity: 0.9;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  color: #888;
  font-size: 14px;
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background-color: #555;
}

@media only screen and (max-width: 768px) {
  .testimonial-header h2 {
      font-size: 36px;
  }
  
  .testimonial-card {
    padding: 30px; 
    margin: 10px 0;
  }

  .testimonial-carousel {
    width: 90%;
    margin: auto;
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center; 
  padding: 4rem 0;
  width: 100%;
  flex-direction: row; 
  gap: 20px; 
}

.contact-container{
  display: flex;
}
/* Contact details (left block) */
.contact-details {
  flex: 1;
  border-radius: 6px;
  color: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Contact form (bottom block) */
.contact-form {
  flex: 1.2;
  padding: 50px 40px;
  background-color: white;
}

/* Responsive adjustments */
@media (min-width: 900px) {
  .contact-section {
      flex-direction: row; 
  }
}

.details-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.details-subheading {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-container .contact-info{
  margin-top: 0;
}

.contact-container .contact-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-container .contact-info p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Contact form (right side) */

.heading-primary {
  color: #888;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.heading-secondary {
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  gap: 20px; 
}

.form-group {
  flex: 1; 
}


@media (max-width: 600px) {
  .form-row {
      flex-direction: column;
      gap: 10px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #555;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #333;
}

textarea.form-control {
  min-height: 70px;
  resize: vertical;
}
.wpcf7 label{
  font-size: 16px;
  color: #555;
}

.wpcf7 .btn{
  border: 1px solid #ff3366;
  padding: 1rem;
    background: #ff3366;
    color: white;
    border: none;
    border-radius: 6px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7 .btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Required field indicator */
.required::after {
  content: '*';
  color: #666;
  margin-left: 2px;
}


@media (max-width: 900px) {
  .contact-section {
      flex-direction: column;
      padding-bottom: 0;
  }

  .contact-container{
      flex-direction: column;
  }
  
  .contact-details, 
  .contact-form {
      max-width: 100%;
  }
  
  .contact-form {
      padding: 40px 0;
  }
  
  .contact-details {
      padding: 40px 0 0;
  }
}

@media (max-width: 500px) {
  .contact-method {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
  }
  
  
  .contact-container .contact-info {
      text-align: center;
      width: 100%;
  }
  
  .social-links {
      justify-content: center;
  }
}

/* Footer Section */
.footer{
  max-width: 100%;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-content > .footer-section {
  min-width: 150px;
  flex-grow: 1;
}

.logo-section {
  flex: 1.5; 
  max-width: 500px;
  min-width: 450px !important;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 15px;
}

.logo-circle img{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-right: 10px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 600;
}

.footer-description {
  color: #666;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

.social-icon {
  position: relative;
  width: 40px; 
  height: 40px;
  display: inline-block;
}

.icon-svg, .icon-webp {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}

.icon-webp {
  opacity: 0;
}

.social-icon:hover .icon-svg {
  opacity: 0;
}

.social-icon:hover .icon-webp {
  opacity: 1;
  cursor: pointer;
}


.nav-section {
  flex: 1;
  min-width: 180px;
}

.nav-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nav-links {
  list-style: none;
  padding: 0;
}

.nav-links ul{
  margin-block-start: 0;
  padding-inline-start: 0;

}

.nav-link {
  margin-bottom: 12px;
}

.nav-links li{
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.nav-link a:hover {
  color: #000;
}

.footer-section .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  border: none;
}

.footer-section .contact-icon {
  margin-right: 10px;
  width: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.footer-section .contact-item a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.footer-section .contact-item a:hover {
  color: #000;
}

.templates-link {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 5px;
  font-weight: 600;
  border-bottom: 2px solid #000;
  text-decoration: none;
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #666;
}

.footer-bottom a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.help-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  max-width: 300px;
}

.widget-icon {
  background-color: #e8e5ff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #5045e4;
  font-size: 20px;
}

.widget-content {
  flex: 1;
}

.widget-text {
  font-size: 16px;
  margin-bottom: 5px;
}

.widget-link {
  color: #5045e4;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .footer-container {
      width: 100%;
      padding: 3rem 0 0;
      overflow-x: hidden; 
      box-sizing: border-box;
  }

  .footer-content {
      flex-direction: column;
      gap: 20px;
  }

  .logo-section {
      text-align: center;
      margin-bottom: 50px;
      min-width: 200px !important;
  }

  .logo-section,
  .nav-section {
    flex: 1 1 100%;
    max-width: none;
  }

  .footer-section {
      text-align: left;
      box-sizing: border-box;
      margin-bottom: 0;
  }

  .footer-widget{
    max-width: 100%;
  }
  .footer-section .contact-item {
      display: flex;
      align-items: flex-start; 
      text-align: left;
      flex-wrap: wrap;
      word-break: break-word;
  }

  .contact-icon {
      align-items: baseline;
      height: auto;
      flex-shrink: 0; 
  }

  .nav-section {
      flex: 1 1 50%;
      margin-bottom: 20px;
      min-width: 50%;
  }

  .footer-bottom {
      text-align: center;
      margin-top: 20px;
      width: 100%;
      word-wrap: break-word;
  }
}


/* Home Menu Styles */
.home-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 20px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.home-menu-toggle span {
  display: block;
  transition: all 0.3s ease-in-out;
  height: 2px;
  border-radius: 5px;
}


/* Toggle Animation */
@keyframes load {
  0% { transform: translateX(7px); }
  50% { transform: translateX(-3px); }
  100% { transform: translateX(7px); }
}

/* Bounce and Fade Animation */
@keyframes bounceFade {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-5px); opacity: 0.7; }
  100% { transform: translateY(0); opacity: 1; }
}

.home-toggle-1 {
  width: 30px;
  background: #1a1a1a;
  animation: bounceFade 1.2s ease-in-out infinite;
}

.home-toggle-2 {
  width: 25px;
  background: #ff3366;
  animation: bounceFade 1.5s ease-in-out infinite;
}

.home-toggle-3 {
  width: 40px;
  background: #1a1a1a;
  animation: bounceFade 1.8s ease-in-out infinite;
}

/* Close button effect */
.home-menu-toggle.active .home-toggle-1 {
  transform: translateY(8px) rotate(45deg) !important;
  background: #ff3366;
}

.home-menu-toggle.active .home-toggle-2 {
  opacity: 0;
}

.home-menu-toggle.active .home-toggle-3 {
  transform: translateY(-8px) rotate(-45deg);
  background: #ff3366;
}

.home-menu-toggle.active span {
  animation: none;
}

.home-menu-toggle.active .home-toggle-1,
.home-menu-toggle.active .home-toggle-3 {
  width: 30px;
}

.home-menu-toggle.active .home-toggle-1 {
  transform: translateY(9px) rotate(45deg) !important;
}

.home-menu-toggle.active .home-toggle-3 {
  transform: translateY(-9px) rotate(-45deg);
}



/* Fullscreen Menu */
.home-menu {
  right: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  position: fixed;
  display: flex; 
  flex-direction: row;
  justify-content: space-between;
  top: 0;
  background: #f0f0f0;
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 50px;
  overflow-y: auto;
  box-sizing: border-box; 
  align-items: center;
}

.home-menu.active {
  transform: translateX(0);
}

/* Left Column - 40% */
.home-menu .left-column {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 20px;
  box-sizing: border-box;
}

/* Right Column - 60% */
.home-menu .right-column {
  flex: 0 0 58%; 
  max-width: 58%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  overflow: hidden;
}

/* Service Cards */
.home-menu .service-card {
  flex: 1 1 calc(50% - 15px); 
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  cursor: pointer;
}


@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes flip {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(180deg); }
}

.home-menu .service-card:hover .service-icon {
  color: #ff3366; 
  animation: flip 0.4s ease-in-out forwards;
}
/* Active State - Expands into Fullscreen */
.home-menu.active {
  -webkit-clip-path: circle(140% at 96.5% 4%);
  clip-path: circle(140% at 96.5% 4%);
  visibility: visible;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-menu {
    flex-direction: column;
    overflow-y: auto;
    padding: 30px;
  }

  .home-menu .left-column {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .home-menu .right-column {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
  }

  .home-menu .service-card {
    flex: 1 1 100%;
  }
}

/* Reverse Animation */
.home-menu.reverse_anim {
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

/* Centered Menu Items */
.home-menu-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  max-width: 90vw;
}

.home-menu.active .home-menu-container {
  opacity: 1;
}

/* Menu List */
.home-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.home-menu-list li a {
  color: #222;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.home-menu-list li a:hover {
  color: #f0a500;
}

/* Fix for Social Icons & Footer */
.custom-services-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}


/* blog / single page / post */
/* Side Menu Styles */
.sidebar {
  width: 300px;
  background-color: #fff;
  border-right: 1px solid #eee;
  transition: all 0.3s ease;
  z-index: 100;
  height: 100vh;
  top: 0;
  position: fixed;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-header {
  padding: 0 1.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.brand img{
  max-height: 50px;
}

.nav-menu {
  list-style: none;
  padding: 20px 0;
}

.nav-item {
  padding: 10px 20px;
  margin-bottom: 5px;
}

.nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #444;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff3366;
}

.nav-link i {
  font-size: 24px;
  margin-right: 10px;
  color: #ff3366;
}

.user-profile {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-top: 1px solid #eee;
  
}

.user-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: #f1f1f1 3px solid;
  object-fit: cover;
  margin-right: 12px;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.user-email {
  font-size: 0.8rem;
  color: #777;
}


/* Main Content Styles */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem;
  transition: all 0.3s ease;
}


.section {
  margin-bottom: 60px;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.content-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* Mobile menu button */
.menu-toggle {
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 1000;
  position: fixed;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
height: 2px;
background: #3b2886;
margin-bottom: 5px;
border-radius: 5px;
transition: background 0.3s, transform 0.3s;
}

.menu-toggle.active span {
background: #ff3366;
}

.toggle-1{
width: 30px;
}

.toggle-2{
width: 25px;
background: #ff3366 !important;
}

.toggle-3{
width: 40px;
}


.menu-item.has-submenu.active > a::after {
transform: rotate(180deg) !important;
}

.menu-toggle.active .toggle-1 {
transform: rotate(45deg) translate(15px, 5px) !important;
-webkit-animation: none;
animation: none;
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active .toggle-3 {
transform: rotate(-45deg) translate(5px, -5px) !important;
-webkit-animation: none;
animation: none;
}

@media (max-width: 768px) {
  .brand{
    display: flex;
    justify-content: center;
  }

  .brand img{
    max-height: 40px;
  }
}
@media (max-width: 992px) {
  .sidebar {
      transform: translateX(-110%);
      width: 100%;
  }

  .sidebar.active {
      transform: translateX(0);
  }

  .main-content {
      margin-left: 0;
      max-width: 100%;

  }

  .menu-toggle {
      display: flex;
  }
  
}

@media (max-width: 576px) {
  .main-content {
      padding: 15px;
  }

  .section-title {
      font-size: 28px;
  }

  .skills-container {
      flex-direction: column;
  }
}

/* For WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px; /* Thin scrollbar */
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ff3366; /* Gray thumb */
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker on hover */
}

.breadcrumb, .breadcrumb span{
  color: #777;
  margin: 1rem 0;
}

.breadcrumb i{
  color: #ff3366;
}

.breadcrumb a{
 color: #777;
}

.post-content{
  padding: 1rem;
}

.wp-block-gallery figure{
  max-height: 300px;
  width: auto;
}

.wp-block-gallery figure img{
  object-fit: cover;
}

.wp-block-media-text {
  padding: 2rem 0;
}

.wp-block-media-text__media img, .wp-block-media-text__media video{
  border-radius: 6px;
}

textarea#comment {
  width: 100%; 
  height: 100px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical; 
  outline: none;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Focus effect */
textarea#comment:focus {
  border-color: #0073e6;
  box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

.wp-embed{
  margin: 2rem 0;
  width: 100%;
}

.submit{
  padding: 0.5rem 1rem;
  font-size: 1.02rem;
  font-weight: 500;
}

.post-thumbnail {
  text-align: center; 
  margin: 0 0 2rem;
  overflow: hidden; 
}

.post-thumbnail img {
  width: 100%; 
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px; 
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Content */
.popup-content {
  background: #fff;
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

/* Red Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: red;
  color: white;
  border: none;
  font-size: 20px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.popup-close:hover {
  background: darkred;
}

/* Popup Body */
.popup-body {
  padding: 10px;
}


@media (max-width: 768px) {
  .post-content{
    padding: 1rem 0;
  }

  .post-title{
    margin-bottom: 1rem;
  }

  h1{
    font-size: 2rem;
  }

  .post-thumbnail img {
    height: 300px; 
  }

  .post-thumbnail{
    margin-top: 20px;
  }

  .current-post{
    margin-bottom: 30px;
  }
  .logo-section {
    max-width: 100%;
  }
  
}
