 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
a{
  text-decoration: none !important;
}
body {
  background: #FFFF;
  color: #111;
}
h1{
  font-family: 'Inter', sans-serif;
  font-size: 65px;
  font-weight: bold;
  color: #141414;
}
h2{
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #141414;
}
h3{
   font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #141414;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #595959;
}
.black-color{
  font-size: 18px;
  font-weight: 500;
  color: #141414;
}
/* Navbar
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 8%;
  background-color: ;
} */

/* Navbar wrapper */
.top-nav {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

/* Pill container */
.nav-container {
  background: rgba(245, 245, 245, 0.2);
  backdrop-filter: blur(12px);
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.6);
mix-blend-mode: 'plus-lighter';
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-container a{
  text-decoration: none;
  color:rgba(20, 20, 20, 1);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  gap: 6px;
}

/* .icon {
  background: black;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  padding: 5px;
} */
 .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000; /* grey circle */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* white icon */
.white-icon img {
  width: 30px;
  height: 30px;
}

/* Button */
.nav-btn {
  background: black;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #333;
}

.btn {
  padding: 8px 16px;
  border-radius: 20px;
  background: black;
  color: white;
  border: none;
}

/* CONTAINER ðŸ”¥ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.regain-article a{
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(20, 20, 20, 1);
  margin-right: 10px;
  text-decoration:none;
}
.hero {
   position: relative;
  background: url('../images/herobackground_img.png') no-repeat center/cover;
  /* min-height: 100vh;  */
  padding: 150px 0; /* ðŸ”¥ top-bottom space */
  overflow: hidden;
}

/* FLEX LAYOUT */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 550px;
  z-index: 2;
}

/* RATING */
.rating-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rating-number {
  font-size: 48px;
  font-weight: bold;
  margin-right: 10px;
}

.stars {
  color: #FFA320;
}

.review-text {
  font-size: 14px;
  color: #595959;
}

/* HEADING ðŸ”¥ */
.hero-content h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  color: #595959;
  margin-bottom: 25px;
}

/* IMAGE */
.hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  /* max-width: 650px; */
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ðŸ”¥ TABLET */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 44px;
  }

   .hero-image {
    width: 45%;
  }
}

/* ðŸ”¥ MOBILE */
@media (max-width: 768px) {
  .cta {
    flex-direction: column !important;
    text-align: center;
    gap:0px !important;
    padding: 0px !important;
  }
 .cta-text{
  order:1 !important;
 }
  .cta-img {
    order: 2 !important;
    margin-top: 40px;
  }
  .phone{
    width: 425px !important;
    position: relative !important;
    top:0px !important;
  }
  .top-nav{
        padding: 0px 15px;
  }
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .rating-box {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 90px 0px 0px 0px;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .justify{
    text-align: justify;
  }
  .hero-content {
    margin: 15px;
  }

  .hero-image {
        position: relative;
        width: 100%;
        /* margin-top: 40px; */
    }
    .feature1, .features-wrapper{
      padding: 30px 15px !important;
    }
    .feature{
      padding: 0px !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
  .rating-number {
    font-size: 32px;
  }
}
/* Laptop */
@media (min-width: 1024px) { 
   .hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: bold;
    color: #141414;
  }
  .hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 650px;
}
}
/* ðŸ”¥ LARGE SCREENS */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }

  .hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    font-weight: bold;
    color: #141414;
  }
   .hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1400px !important;
  }
  .hero {
    padding: 165px 0px;
  }
    .hero-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 900px;
    }
  }
 /* @media (min-width: 1920px) {
    .hero-image {
        position: relative;
        right: 0;
        width: 55%;
        max-width: 650px;
    }
} */
/* Icons */
.icons {
  display: flex;
  justify-content: space-around;
  padding: 50px 8%;
  background: #FFFF;
  text-align: center;
}
/*Feature1*/
.feature1 {
  padding: 60px 20px; /* side me thoda spacing mobile ke liye */
}

.feature-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap; /* responsive */
}

/* Individual Feature Box */
.feature {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.featureicon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featureicon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature h3{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #141414;
}
/* Responsive */
@media (max-width: 900px) {
  .feature1 {
    flex-wrap: wrap;
  }
  .feature {
    flex: 1 1 45%;
  }
}

@media (max-width: 768) {
  .features h2 {
    font-size: 26px !important;
  }
  .card h3, .feature h3 {
    font-size: 22px p !important;
  }
  .feature1 {
    flex-direction: column;
  }
}
/* Features */
 .features-wrapper {
  padding: 60px 8%;
  background: #fff;   /* FULL WIDTH WHITE */
  text-align: center;
}

.features h2{
   font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #141414;
  /* margin-bottom: 2rem; */
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px 0px;
}

.card {
  text-align: center;
  transition: 0.3s;
  border: none !important;
}

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

/* Hidden cards */
.hidden {
  display: none !important;
}
 .img-box {
  width: 100%;
  height: 350PX;              
  background: #eaeaea;
  border-radius: 24px;
  overflow: hidden;          
  display: flex;
  align-items: flex-start;    
  justify-content: center;
  padding: 30PX 0px 0;
}

.img-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.card h3 , .feature h3{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #141414;
  margin-top: 8px;
  margin-bottom: 8px;

}

.card p , .feature p{
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #595959;
}

/* Button */
.more-btn {
  text-align: center;
  margin-top: 40px;
}

.more-btn button {
  background: none;
  border: none;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  color: #111;
}

/* Responsive */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
  .grid{
    margin: 0px;
  }
  .img-box {
    padding: 20PX 0px 0;
  }

  .img-box img {
    width: 100%;
    max-width: 50px;
    height: auto;
  }
}
/* Laptop */
@media (min-width: 1024px) { 
  .img-box {
  padding: 45PX 0px 0;
}

.img-box img {
  width: 100%;
  max-width: 220px;
  height: auto;
}
}
@media (min-width: 1400px) {
   .img-box {
  padding: 30PX 0px 0;
}

.img-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
}
@media (min-width: 1700px) {
     .img-box {
  padding: 25PX 0px 0;
}

.img-box img {
  width: 100%;
  max-width: 360px;
  height: auto;
}
}
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .img-box {
  padding: 15px;
  height: auto;
}

.img-box img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
}

/*Transform Phone*/
.cta-bg{
  background-color: #F2F2F2;
  overflow: hidden;
}
.cta {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0px;
}

/* LEFT */
.cta-text {
  flex: 1;
}

.cta-text h2{
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #141414;
}

/* LIST */
.cta-list {
  list-style: none;
}

.cta-list li {
  margin-bottom: 10px;
  color: #333;
}

.cta-list li::before {
  content: "âœ”";
  margin-right: 10px;
}

/* RIGHT */
.cta-img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* PHONE */
/* .phone {
  width: 260px;
  position: absolute;
  top: -130px;
  z-index: 2;
} */
.phone{
    width: 600px;
    /* max-width: 912px; */
    position: absolute;
    top: -230px;
    z-index: 2;
}
.features-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #333;
  font-size: 16px;
}

/* features*/
.features-list li::before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: #000;   /* black circle */
  color: #fff;        /* white tick */

  font-size: 12px;
  flex-shrink: 0;
}
/* CURVED BACKGROUND */
.cta-img {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.curve-wrap {
position: absolute;
    width: 720px;
    height: 720px;
    top: -395px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}
.circle1 {
  stroke: url(#gradDarkToLight);
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 420;
  transform: rotate(0deg);
  transform-origin: 300px 300px;
}
.circle2{
    stroke: url(#gradLightToDark);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 1500 100;
    transform: rotate(1deg);
    transform-origin: 18px 100px;
}
.curve-wrap svg {
  position: relative;
  top: 60px;
  width: 100%;
  height: 100%;
}
/* .curve-svg {
  position: absolute;
  top: -328px;
  width: 850px;
  height: 850px;
  opacity: 0.6;
  pointer-events: none;
} */

.curve-svg svg {
  width: 100%;
  height: 100%;
}
.circle {
  position: absolute;
  border-radius: 50%;
}
/* .info-card {
    position: relative;
    min-width: 125px;
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0));
    backdrop-filter: blur(36px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(29, 29, 29, 0.1), 0 2px 10px rgba(29, 29, 29, 1), inset 0 1px 0 rgba(245, 245, 245, 0.2);
    z-index: 3;
} */
/* .info-card p, span{
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0px !important;
}
.info-card h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px !important;
} */
.right-info{
  position: relative;
  top: 101px;
  left: 85px;
}
.left-info{
  position: relative;
  bottom: -5px;
  right: 85px;
}
/*  */
/* 
.circle1 {
  width: 420px;
  height: 420px;
}

.circle2 {
  width: 300px;
  height: 300px;
}

.circle3 {
  width: 200px;
  height: 200px;
} */

/* DOTS */
/* .dot {
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  position: absolute;
}

.dot1 {
  top: 20%;
  left: 10%;
}

.dot2 {
  bottom: 20%;
  right: 10%;
} */

/* SMALL INFO BOX */
.info-box {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info1 {
  top: 20%;
  left: -40px;
}

.info2 {
  bottom: 20%;
  right: -40px;
}

/* RESPONSIVE */
@media (max-width: 768) {
 
  .cta-text h1 {
    font-size: 32px;
  }
  .cta-text h2 {
    font-size: 26px !important;
  }
 

  .info1 {
    left: 0;
  }

  .info2 {
    right: 0;
  }
}


/* Reviews */
.review{
  padding: 80px 0;
  background-color: #ffff;
  position: relative;
}
.review::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;

  /* ðŸ”¥ main magic */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    #fff 100%
  );

  pointer-events: none;
}
.reviews-section {
  margin: 0 auto;
  text-align: center;
}
.rating-badge {
  display: inline-block;
  background: #000;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 1.2rem;
}
.reviews-section h2 {
   font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 2rem;
}
/* Review Cards Layout */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.review-card {
  background: #FFFF;
  border: 1.5px solid #eaeaea;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 365px;
  text-align: left;
  transition: all 0.2s ease-in-out;
}
.review-card:hover {
  transform: translateY(2px);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */
  background-color: #F2F2F2;
}
/* Stars */
.stars {
  color: #FFA320;
  letter-spacing: 2px;
}
/* Text styling */
.review-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
  color: #111;
}
.review-card span {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 0.9rem;
}
/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .reviews-grid {
    gap: 15px;
  }
}
@media (max-width: 700px) {
  .review-card {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .reviews-section h2 {
    font-size: 1.6rem;
  }
  .review-card {
    padding: 16px;
  }
}
@media (min-width: 1700px) {
.review-card {
  max-width: 435px;
}
}
/* Data Privacy */
.dataprivacy{
  padding: 60px 8%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.grid-bg {
  position: absolute;
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%) perspective(800px) rotateX(65deg);
  width: 50%;
  height: 561px;
border-radius: 100%; /* ðŸ”¥ circle shape */
  overflow: hidden;   /* ðŸ”¥ cut edges */
  background-image: 
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px);

  background-size: 45px 48px;

  opacity: 0.6;
}

.dataprivacy-content h1{
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #141414;
}
.dataprivacy-content p{
  max-width: 500px;
  margin: 0 auto; 
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  text-align: center;
}
.dataicon{
   width: 70px;
  height: 70px;
  background: black;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
}
/* Reclaim*/
.reclaim-wrapp{
  padding: 60px 8%;
  background-color: #FFFF;
}
.reclaim {
  margin: 40px auto;
  background:#F2F2F2 url('../images/reclaimbg.svg') no-repeat right center;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.reclaim-left{
  padding: 30px;
}
.reclaim-left h2{
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #141414;
}
.reclaim img{
 position: relative;
 top: 39px;
}
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: black;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  transition: 0.3s;
}

.appstore-btn:hover {
  background: #222;
}

.apple-logo {
  font-size: 22px;
}

.text small {
  display: block;
  font-size: 10px;
  line-height: 1;
}

.text strong {
  font-size: 16px;
  line-height: 1.2;
}
/* Footer */
footer {
  /* margin-top: 60px; */
  padding: 60px 8% 20px 8%;
  background-color: #FFFF;
}
.footer-line{
  padding: 20px 0px 0px 0px;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 20px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 12px;
  color: #595959;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
footer {
  text-align: center;
}

  .dataprivacy h1 {
    font-size: 26px;
  }

  .reclaim {
    flex-direction: column;
    text-align: center;
  }

  .reclaim img {
    width: 180px;
  }

  .footer-top {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

/* ðŸ“± RESPONSIVE */
@media(max-width: 1024px){
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 1400px){
  .reclaim {
    padding: 40px;
    gap: 20px;
  }
}
@media(min-width: 1700px){
    .reclaim {
    padding: 50px;
    gap: 100px;
  }
  .reclaim img{
 position: relative;
 top: 50px;
}
}

/* @media(max-width: 768px){
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .icons {
    flex-direction: column;
    gap: 20px;
  }
} */


/*Articles*/
/* Sidebar */
.article{
   max-width: 1200px;
  margin: auto;
  padding: 120px 0;
}
.article-wrapper{
  display: flex;
  /* padding: 50px 0; */
  gap: 40px;
}
.article h1{
  font-size: 50px;
  font-weight: 700;
}
.divider {
    width: 100%;
    height: 1px;
    margin: 50px 0px;
    background-color: #ddd;
}
/* Sidebar */
.sidebar {
  width: 280px;
}

.sidebar h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.menu {
  list-style: none;
  /* border-left: 2px solid #e5e5e5; */
  position: relative;
}

.menu li {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  color: rgba(20, 20, 20, 0.5);
  position: relative;
  left:-22px;
}

/* Active */
.menu li.active {
  color: rgba(20, 20, 20, 1);
  font-weight: 600;
}
.menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 6px;              /* 👈 your requirement */
  background: rgba(242, 242, 242, 1);;
  border-radius: 30px;     /* 👈 rounded top & bottom */
}
.menu li.active::before {
  content: "";
  position: absolute;
  left: -10px; /* ✔ perfect alignment */
  top: 0;
  width: 6px;
  height: 100%;
  background: rgba(20, 20, 20, 1);
  border-radius: 30px; 
}

/* Content */
.content {
  flex: 1;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

/* Card */
.article-card {
    background: url('../images/articlebg.png') no-repeat center/cover;
    border-radius: 30px;
    padding: 20px;
    margin: 20px 0px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    text-align: center;
    /* gap: 20px; */
}
.tab h2{
  font-size: 42px;
  font-weight: 700;
}
.tab h3{
  font-size: 32px;
  font-weight: 600;
}
.tab h4{
  font-size: 26px;
  font-weight: 600;
}
.tab p{
  font-size: 16px;
  margin-bottom: auto;
}
.color-black{
  font-weight: 600;
  color: rgba(20, 20, 20, 1) !important;
}
.color-blue{
  color: rgba(55, 99, 253, 1);
}
#tab6 li a{
  color: #37352f66;
  text-decoration-color: #37352f66 !important;
  text-underline-offset: 10%;
  text-decoration:underline !important;
}
.card-border{
  padding: 15px;
  border: 1.5px solid rgba(20, 20, 20, 0.1);
  border-radius: 20px;
}
.note-box {
    border-left: 4px solid #333;
    padding: 15px 20px;
    margin: 20px 0;
}

/* LEFT */
/* .article-left {
    max-width: 40%;
} */

/* IMAGES */
/* .article-images {
    display: flex;
    gap: 15px;
} */

.article-images img {
    width: 140px;
    border-radius: 20px;
}

/* ========================= */
/* 📱 TABLET (<= 992px) */
/* ========================= */

@media (max-width: 992px) {
    .article-card {
        padding: 30px;
    }

    .article-left h2 {
        font-size: 26px;
    }

    .article-images img {
        width: 110px;
    }
}

/* ========================= */
/* 📱 MOBILE (<= 768px) */
/* ========================= */

@media (max-width: 768px) {

    .article-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .article-left {
        max-width: 100%;
    }

    .article-arrow {
        transform: rotate(90deg);
    }

    .article-images {
        justify-content: center;
    }

    .article-images img {
        width: 100px;
    }
}

/* ========================= */
/* 📱 SMALL MOBILE (<= 480px) */
/* ========================= */

@media (max-width: 480px) {

    .article-left h2 {
        font-size: 22px;
    }

    .article-images img {
        width: 85px;
    }

    .logo-box {
        width: 40px;
        height: 40px;
    }

    .logo-box img {
        width: 20px;
    }
}
.article-left   h2{
  font-size: 42px;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {

  .article-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .menu {
    display: flex;
    overflow-x: auto;
    border-left: none;
    border-bottom: 2px solid #e5e5e5;
  }

  .menu li {
    white-space: nowrap;
  }

  .menu li.active::before {
    display: none;
  }

  .menu li.active {
    border-bottom: 3px solid black;
  }
}
.articles-control {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(242, 242, 242, 1);
  border-radius: 30px;
}

.articles-control h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(20, 20, 20, 1);
}
.article-text{
    margin-bottom: 20px;
}

.article-text a{
  font-size: 22px;
  font-weight: 600;
  color: rgba(20, 20, 20, 1);
  text-decoration: none;
}