@charset "UTF-8";

@import url("style.css");

/* Case Study Specific Styles - All base styles (header/footer/global) are inherited from style.css */





/* HERO SECTION */

._container{
      max-width: 1250px;
    margin: 0px auto;
}
.hero-section {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 5vw 26px !important;
  font-weight: 600;
  min-height: 550px; 
  box-sizing: border-box; 
}

.moto-title img {
  max-width: 100%; 
  height: auto;
  display: block; 
}

.moto_title {
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  line-height: 1.2; /* Better for responsiveness than a fixed pixel value */
  padding-bottom: 50px; 
}

.title_red {
  color: #F10058;
}

.logo_collab1 {
  padding-bottom: 25px;
  max-width: 100%; /* Ensure the logo also scales */
  height: auto;
}

.hero_button_div {
  margin-top: 24px; /* space under title */
}

.hero_button_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #F10058;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero_button_link:hover {
  background-color: #ca044d;
  color: white;
}




/* Tablet/Smaller Desktop (Viewport width 992px and below) */
@media (max-width: 992px) {
  .hero-section {
    gap: 20px;
    padding: 40px 26px 70px 26px !important;
         min-height: auto; /* Allow height to adjust naturally */
  }

  .moto_title {
      font-size: clamp(28px, 5vw, 42px);
  }
}

/* iPad Mini (portrait ~768px) */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column; 
    align-items: center;
    text-align: center;
     
    min-height: auto; /* let content define height */
  }

  .logo-collab {
    margin-bottom: 20px; /* space between logo/title and image */
  }

  .moto_title {
    font-size: clamp(24px, 5vw, 36px); /* slightly smaller for iPad Mini */
    line-height: 1.3;
    padding-bottom: 30px;
  }

  .logo_collab1 {
    padding-bottom: 15px;
    max-width: 80%; /* scale down logo */
  }

  .moto-title img {
    max-width: 100%; /* scale down image for smaller screen */
    height: auto;
  }
}



/* MOTO SECTION */


.moto_section {
  background-color: white;
 
}
.moto_container{
 min-height: 200px;
 padding: 50px 0px;
    display: flex;
  justify-content: space-between;
  align-items: center;
  
    font-weight: 600;
  gap: 4rem; 
}
.moto_section img {
  max-width: 100%;
  height: auto;
  display: block;
}

.moto_logo,
.rectangle_red {
  transform: scale(0.5);
  flex-shrink: 0; 
}

.moto_text {
  line-height: 1.9;
  color: black;
  font-size: clamp(16px, 1.2vw, 16px);
  font-weight: 400;
  flex-grow: 1; 
}


/* ---------------------------------------------------- */
/* ## Media Queries for Responsiveness */

@media (max-width: 992px) {
  .moto_section {
      gap: 2rem;
      
  }
}

/* Mobile Devices (Viewport width 768px and below) */
@media (max-width: 768px) {
  .moto_container {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
      gap: 15px;
  }
  .moto_section {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
      gap: 15px;
  }
  
  .moto_logo{
      transform: scale(1);
      max-width: 150px;
      margin: 0 auto;
      margin-bottom: 5px;
      order: 0;
      
  }
  .rectangle_red{
    display: none;
  }

  

  .moto_text {
      font-size: 16px; 
      line-height: 1.6;
      padding: 0 10px; /* Add slight horizontal padding to text */
  }
}



/* OUR MISSION */

.section {
  padding: 75px 75px;
}

.container_mission {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: clamp(30px, 5vw, 38px); 
  color: WHite;
  font-weight: 600;
  line-height: 1.9;
}

.accent {
  color:#F10058;
}

.subtitle {
  margin: 1rem 0 3rem;
}

.split {
  display: grid;
  gap: 4rem;
}







@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    position: relative;
  }
  .split::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: #F10058;
    transform: translateX(-50%);
  }
}
.icon{
  margin-top:5px;
}

.icon svg {
  width: 60px;
  height: 60px;
  border: 4px solid #F10058;
  border-radius: 50%;
  padding: 10px;
  background: #ef444433;
  margin-bottom: 1rem;
}

.mission p {
  max-width: 500px;
  margin: auto;
  line-height: 1.6;
  font-weight: 400;
}

.tools h3 {
  margin-bottom: 25px;
  font-weight: 500;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  
}

.card {
  background: #1F2937;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #F10058;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}
/* iPad Mini (~768px) */
@media (max-width: 768px) {
  .split {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2rem;
    text-align: center;
  }

  .mission, .tools {
    text-align: center;
  }

  .mission h3, .tools h3 {
    font-size: clamp(20px, 4vw, 26px);
  }

  .mission p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Tools grid */
  .tools .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
    justify-items: center;
  }

  .tools .grid .card {
    width: 80%;
    padding: 0.75rem 1rem;
    font-size: 15px;
  }

  /* Section padding */
  .section {
    padding: 50px 30px;
  }

  .subtitle {
    font-size: 16px;
  }
}
/* iPad Air Portrait (~820px) */
@media (max-width: 820px) {
  .split {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2.5rem;
    text-align: center;
  }

  .mission, .tools {
    text-align: center;
  }

 .tools h3 {
    font-size: clamp(20px, 4vw, 26px);
  }

  .mission p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Tools grid for portrait */
  .tools .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
    justify-items: center;
  }

  .tools .grid .card {
    width: 80%;
    font-size: 15px;
  }

  .section {
    padding: 50px 30px;
  }

  .subtitle {
    font-size: 16px;
  }
}

/* iPad Air Landscape (~1180px) */
@media (min-width: 821px) and (max-width: 1180px) {
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* side by side */
    gap: 3rem;
    text-align: left;
  }

  .mission, .tools {
    text-align: left;
  }

  .tools h3 {
    font-size: clamp(22px, 3.5vw, 28px);
  }

  .mission p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Tools grid for landscape */
  .tools .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns in landscape */
    gap: 1rem;
  }

  .tools .grid .card {
    width: 100%;
    font-size: 16px;
  }

  .section {
    padding: 60px 50px;
  }

  .subtitle {
    font-size: 16px;
  }
}





/* CHALENGES SECTION */

.challenges-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 75px 75px;
}


.header {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.title {
  font-size: clamp(30px, 5vw, 36px);;
  margin-bottom: 0.5rem;
  
}
.icon-box{
  font-size: 16px;
}
.description-chalenge{
  font-size: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.5;
  color: #cccccc;
  font-weight: 400;
}

.title .accent {
  color:#F10058;
}

.description {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0.5rem auto 10;
}

.challenge-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; 
}


@media (min-width: 768px) {
  .title {
    font-size: clamp(30px, 5vw, 36px);
  }
  .challenge-grid {
      grid-template-columns: repeat(3, 1fr); 
  }
}

.challenge-card {
  background-color: var(--card-bg);
  border: 1px solid #F10058; 
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 1rem 1rem;
    max-width: 500px; /* optional: limit width */
    width: 100%; 
    box-sizing: border-box;

}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.challenge-header {
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  
}

.icon-box {
  background-color: var(--accent-red);
  padding: 0.6rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  line-height: 0; 
  color: white;
}


.icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-text-primary); 
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color:white;
  margin: 0;
  line-height: 1.9rem;
}

.card-text {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 30px;
}

.warning-icon {
  color: #111827; 
}

@media (max-width: 640px) {
  .challenges-section {
    padding: 40px 20px;
  }
  

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

  .challenge-header {
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 1rem;
  }

  .icon-box {
    margin: 0 0 1rem 0;
  }

  .card-title {
    line-height: 1.2;
  }
  .title h2{
    margin-top: 3rem;
  }
}

/* SOLUTION SECTION */

.solution-section {
  background-color: black;
  color: var(--text-color);
  padding: 75px 75px;
  
}



.solution-section h1 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  color:white;
  font-weight: 600;
}

.solution-section .intro {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.5;
  color: #cccccc;
}

.icon_1{
  font-size: 1.7em;
  color: white;
}
.icon_2{
  font-size: 1.7em;
  color: white;
}
.icon_3{
  font-size: 1.7em;
  color: white;
}
.icon_4{
  font-size: 1.7em;
  color: white;
}

.grid-solution{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px; 
}

.card_solution{
  background-color: var(--card-bg);
    padding: 30px;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #F10058;
}

.card_solution:hover{
  transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.card_solution h3{
  font-size: 20px;
    color: var(--accent-color);
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    line-height: 30px;
    color: white;
}

.card_solution ul{
  list-style: none;
    padding: 0;
    margin: 0;
}

.card_solution ul li{
  margin-bottom: 10px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.card_solution ul li::before{
  content: "•";
  color: var(--secondary-accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.icon{
  font-size: 2.5em;
    line-height: 1;
    color: var(--secondary-accent);
}


.cta-aside{
  text-align: center;
    margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #F10058, #F10058);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  transition: opacity 0.3s, transform 0.3s;
  border: none;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}
a.button:hover {
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .solution-section h1 {
    font-size: clamp(30px, 8vw, 42px);
    margin-bottom: 1.5rem;
}
.solution-section {
  padding: 40px 20px;
}
  .solution-section .intro {
      font-size: 1em;
  }
  .grid-solution {
    gap: 20px;
}
.card_solution {
  text-align: center;
  padding: 25px;
}
  .cta-button {
      padding: 12px 30px;
      font-size: 1.1em;
  }
  .card_solution h2 {
    margin-top: 10px;
    border-bottom: none; 
    padding-bottom: 0;
    font-size: 1.10em;
}
.card_solution ul {
  padding: 0; 
  display: inline-block;
  text-align: left; 
}
.card_solution ul li {
  padding-left: 0; 
  text-align: left; 
}
.card_solution ul li::before {
  margin-right: 5px; 
  margin-left: -5px;
}
.cta-button {
  padding: 12px 30px;
  font-size: 1.1em;
}

}

/* RESULT SECTION */

.results-section {
    padding: 0px 26px;
  background-color: white; 
}
.results-section_container{
display: flex;
  gap: 40px; 
  padding: 75px 0px;
}
.left-content {
  flex: 1; 
}

.stats-grid {
  flex: 1; 
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 60px 40px; 
  padding-top: 50px;
}
.overline {
  color: #F10058; 
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}
.main-heading {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 20px;
  color: black;
}

.description  {
  font-size: 16px;
  line-height: 1.9;
  color: black;
  justify-content: center;
}
.testimonial-box {
    border: 1px solid #F10058; 
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    position: relative;
    
}
.rating {
  margin-bottom: 15px;
}
.star {
  color: #FF7F22; 
  font-size: 1.25rem;
  line-height: 1;
}
.author-info {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Pushes author info to the right */
  gap: 10px;
  position: absolute;
  top: 15px;
  right: 30px;
}
.author-name {
  font-weight: bold;
  margin: 0;
  font-size: 16px;
  text-align: right;
  color: black;
}
.author-title {
  font-size:15px;
  color: #717276;
  margin: 0;
  top: 45px; 
  right: 140px;
  text-align: right;
  position: static;
  flex-direction: column;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px;
  object-fit: cover;
}
.testimonial-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 40px;
  color: black;

}


.cta-button-result {
  display: inline-block;
  background: linear-gradient(90deg, #F10058, #F10058);
  color: white;
  padding: 15px 35px;
  margin-top: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  transition: opacity 0.3s, transform 0.3s;
  border: none;
}
.cta_result{
  color: white;

}
.cta_result:hover{
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}



.cta-button-result:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}


.stat-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: black; /* Pink/Red accent for the number */
  line-height: 1;
  margin-bottom: 15px;
}

.plus{
  color: #F10058;
}

.stat-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6F6C8F;
}




/* iPad Mini Portrait (~768px) */
@media (max-width: 768px) {
  .results-section_container{
  padding: 70px 26px;
 flex-direction: column; /* stack left-content and stats */
        gap: 30px;
}
  

  .left-content {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 20px;
    width: 100%;
  }
  

  .stat-item {
    text-align: center;
  }

  .main-heading {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .cta-button-result {
    width: 100%;
    padding: 12px 25px;
    font-size: 1.1em;
    margin-top: 30px;
  }

  .testimonial-box {
    margin-top: 20px;
    padding: 20px;
  }

  .testimonial-text {
    margin-top: 50px;
    font-size: 14px;
  }

  .avatar {
    width: 50px;
    height: 50px;
  }

  .author-info {
    position: static; /* prevent overlapping */
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
  }

  .author-title, .author-name {
    text-align: center;
    position: static;
  }

  .rating {
    justify-content: left;
  }
  .testimonial-box .rating {
    display: flex;
    justify-content: flex-start; /* stars on the left */
    gap: 5px; /* spacing between stars */
    margin-bottom: 15px; /* keep spacing below stars */
  }
}

/* iPad Air Landscape (~820px – 1180px) */
@media (min-width: 769px) and (max-width: 1180px) {
  .results-section {
    flex-direction: column;
      gap: 40px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for landscape */
    gap: 30px 40px;
  }

  .stat-item {
    text-align: center;
  }

  .main-heading {
    font-size: 32px;
  }

  .description {
    font-size: 16px;
  }

  .cta-button-result {
    width: auto;
    padding: 15px 35px;
    font-size: 1.2em;
  }

  .testimonial-box {
    margin-top: 25px;
    padding: 25px;
  }

  .testimonial-text {
    margin-top: 60px;
    font-size: 15px;
  }

  .avatar {
    width: 55px;
    height: 55px;
  }

  .author-info {
    position: absolute;
    top: 15px;
    right: 30px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .author-title, .author-name {
    text-align: right;
    position: static;
  }


}
.testimonial-box .rating {
  display: flex;
  justify-content: left; /* stars on the left */
  gap: 5px; /* spacing between stars */
  margin-bottom: 15px; /* keep spacing below stars */
}







/* Footer */

.footer{
  border-top: 3px solid #1a1a1a;
}

/* Article Page - Blog specific styles */


html, body, * {
  font-family: "Montserrat" !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: rgb(241, 0, 88);
  --background: #000;
  --foreground: #fff;
  --muted: #a0a0a0;
  --card: #0d0d0d;
  --border: #333;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 24px 80px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 128px 24px;
  }
}

/* BLog Post */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(241, 0, 88, 0.1), transparent);
  pointer-events: none;

}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.category {
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
  
}

.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 38px;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #ff4d8d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgb(148, 148, 158);
  font-size: 0.875rem;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  margin-left: 85px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
}

/* Content */
.content {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.intro {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
.affiliate_link{
  color: wheat;

}

@media (min-width: 768px) {
  .intro {
    font-size: 1.5rem;
  }
}

.content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 64px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.closing {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 48px;
}

/* CTA Box */
.cta-box {
  margin-top: 64px;
  padding: 32px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-box {
    padding: 48px;
  }
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-box h3 {
    font-size: 1.875rem;
  }
}

.cta-box p {
  color:rgb(148, 148, 158);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(241, 0, 88, 0.3);
}

.cta-button:hover {
  background-color: rgba(241, 0, 88, 0.8);
  transform: scale(1.05);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer-blog {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-blog {
    flex-direction: row;
    justify-content: space-between;
  }
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  color: rgb(148, 148, 158);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Blog Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(240, 10%, 6%);
  --foreground: hsl(0, 0%, 95%);
  --card: hsl(240, 10%, 10%);
  --card-foreground: hsl(0, 0%, 95%);
  --primary: hsl(338, 100%, 47%);
  --primary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(240, 10%, 20%);
  --muted-foreground: hsl(240, 5%, 60%);
  --border: hsl(240, 10%, 20%);
  --radius: 0.75rem;
  --gradient-card: linear-gradient(135deg, hsl(240, 10%, 12%) 0%, hsl(240, 10%, 8%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(338, 100%, 47%) 0%, hsl(350, 100%, 40%) 100%);
  --shadow-card: 0 4px 24px -4px hsla(0, 0%, 0%, 0.4);
  --shadow-card-hover: 0 12px 40px -8px hsla(338, 100%, 47%, 0.2);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  padding: 4rem 1rem 6rem;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease-out forwards;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

/* Blog Section */
.blog-section {
  padding-bottom: 5rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: hsla(338, 100%, 47%, 0.3);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.meta-dot {
  opacity: 0.5;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.2s;
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 500;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 100%;
}

.read-more svg {
  transition: transform 0.2s;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* Footer */
.footer-blog {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-blog p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Tablet and up */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 1rem 6rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .blog-card {
    flex-direction: row;
  }

  .blog-card-image {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  .blog-card-content {
    padding: 1.5rem;
  }

  .blog-title {
    font-size: 1.5rem;
  }
}



.header_lp {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000; 
  background-color: black;
}

.menu__icon {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  color: var(--foreground);
}

.menu__icon .fa-xmark { display: none; }
.menu-toggle:checked ~ .menu__icon .fa-bars { display: none; }
.menu-toggle:checked ~ .menu__icon .fa-xmark { display: block; }

.menu-toggle {
  display: none;
}


.header__logo {
  position: relative;
  z-index: 1002;
}

.menu__icon {
  display: none;
}

.menu-toggle {
  display: none;
}

@media (min-width: 992px) {
  .header__menu.menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static;
    height: auto;
    background: transparent;
  }

  .menu__list {
    display: flex;
    gap: 30px; 
    list-style: none;
  }
}

@media (max-width: 991px) {
  .menu__body {
      background-color: #111111;
    }
  .menu__icon {
    display: flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
}

.menu-item-dropdown:hover .dropdown__menu{
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.menu-item-dropdown:hover .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition-delay: 0s !important;
}
.menu-item-dropdown .dropdown {
    position: absolute ;
    left: -20% ;
    margin-top: 5px ;
    background-color: #192734 ;
    border-radius: 3px ;
    min-width: 160px ;
    z-index: 9999 ;
    white-space: nowrap ;
    opacity: 0 ;
    visibility: hidden ;
    transform: translateY(5px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
}
.dropdown__menu li{
padding: 0;
}
.dropdown__link{
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  color: rgba( 255, 255, 255, 0.85 ) ;
  text-decoration: none;
  transition: background-color 0.2s ease, color  0.2s ease;
  white-space: nowrap; 
}

.dropdown__link:hover{
  background-color: #f10058;
  color: #ffffff;
}
._no-webp .footer{
  background: url("../img/footer_bg.png") center/cover no-repeat; }

.footer {
  border-top: 3px solid #1a1a1a;
  padding-top: 30px;
  padding-bottom: 35px;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo img {
  width: 164px;
}

.footer__link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__button {
   padding-left: 24px;
  padding-right: 24px;
}


@media (max-width: 991px) {
  footer{
    padding: 40px 0px !important;
  }
footer .dropdown{
      flex-direction: column;
}

  .header__menu {
    position: static;
  }

  .menu__body {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
       padding: 90px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .menu-toggle:checked ~ .header__menu .menu__body {
    right: 0;
  }

  .menu__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .menu__link {
    font-size: 18px;
    color: white;
  }

  .header__button {
    display: none;
  }

  .menu__icon {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1150px){
.menu__link {
  font-size: 15px;
}
.menu__list {
  gap: 20px !important;
}
.menu-item-dropdown {
  width: auto;
}
}

@media (min-width: 479.98px) {
  .footer__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer__list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__social-link {
    font-size: 28px;
    color: #b9b9b9;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .footer__social-link._icon-instagram{
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icons/ri_instagram-fill.svg) 50% 50%/ 30px 30px no-repeat;
    transition: all 0.3s ease 0s;
  }
    .footer__social-link._icon-instagram:hover{
     background: url(../img/icons/ri_instagram-w-fill.svg) 50% 50%/ 30px 30px no-repeat;
  }
  .footer__social-link:not(:last-child) {
    margin: 0px 0px 25px 0px !important;
  }
}

@media (min-width: 479.98px) and (any-hover: hover) {
  .footer__social-link:hover {
    color: #fff;
  }
}

@media (max-width: 1078px) {
    .footer {
    padding-top: calc(24px + 6 * ((100vw - 320px) / 758));
  }

  .footer {
    padding-bottom: calc(28px + 7 * ((100vw - 320px) / 758));
  }

  .footer__logo img {
    width: calc(96px + 68 * ((100vw - 320px) / 758));
  }

  .footer__link {
    font-size: calc(10px + 8 * ((100vw - 320px) / 758));
  }
}

@media (min-width: 479.98px) and (max-width: 1078px) {
  .footer__list li:not(:last-child) {
    margin-bottom: calc(8px + 7 * ((100vw - 320px) / 758));
  }

  .footer__social-link {
    font-size: calc(18px + 10 * ((100vw - 320px) / 758));
  }
}

@media (any-hover: hover) {
 
  .footer__link:hover {
    color: rgba(241, 0, 88, 1);
  }

  .footer__button:hover {
    color: #fff;
   }

}

._webp .footer{ background: url(../img/footer_bg.webp) center/cover no-repeat; }


footer .dropdown li{
  padding: 8px;
  margin-bottom: 0px !important;
}

@media (min-width: 550px) {
.footer__menu .menu-item-dropdown{
  align-items: flex-start !important;
}
}
@media (max-width: 550px) {
  .footer__social {
  display: none;
}
footer .dropdown li{
  padding: 0px;
  margin-bottom: 0px !important;
  
}
footer .footer__list li{
 text-align: center;
  margin: 0px !important;
}
    .footer__button{
    display: none;
  }
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
.footer__link {
    font-size: 12px;
  }
  .footer__logo {
    margin: 0px 0px 22px 0px;
  }

  .footer__menu {
    margin: 0px 0px 25px 0px;
    width: 100%;
    
  }
    .menu-item-dropdown {
        width: 100% !important;
              
    }
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer__list li:not(:last-child) {
    margin: 0px 19px 0px 0px;
  }
}

@media (max-width: 992px) {
      .menu-item-dropdown .dropdown {
        position: static;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #192734;
        border-radius: 8px;
        width: 70%;
        max-width: 230px;
        margin: 0.4rem auto 0 auto;
        padding: 6px 0;
        opacity: 0;
        visibility: hidden;
        transform: translate(-5px);
        transition: all 0.3s ease;
        z-index: 9999;
    }
    .menu-item-dropdown.active .dropdown {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
}