
@font-face {
  font-family: 'Outfit';
  src: url('/font/Mona-Sans.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}
/* html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
} */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: sans-serif;
  color: white;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo {
  width: 40px;
  height: 40px;
}

nav {
  display: flex;
  gap: 40px;
  font-size: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 4px;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  
  top: 24px;
  right: 24px;
  z-index: 100;
  transition: all 0.3s ease;
}

.menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Toggle to X icon */
.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}

.menu-icon.active span:nth-child(2) {
  transform: rotate(-45deg) translateY(-5px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 99;
  display: none;
  padding: 60px 80px;
  overflow-y: auto;
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.menu-overlay.active {
  display: block;
   animation: fadeRight 0.6s ease forwards;
}
.menu-content, .menu-column, .menu-column h2, .menu-column ul, .menu-column li {
  animation: fadeRight 0.6s ease forwards;
}

.menu-logo img {
  width: 40px;
  margin-bottom: 40px;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}
 .three-col-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px 40px;
}

 .menu-column {
  min-width: 250px;
}

.menu-column h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -1.6px;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li {
  font-size: 1.1rem;
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -1.6px;
  margin-bottom: 14px;
  color: #fff;
  cursor: pointer;
}

.menu-column li.faded {
  opacity: 0.5;
}

.hero {
  text-align: center;
  position: relative;
  padding: 120px 20px;
}

.hero::before {
  content: 'VISION';
  position: absolute;
  top: -45px;
  left: 0;
  font-size: 25vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: center;
  z-index: 0;
}

.hero::after {
  content: 'VISION';
  position: absolute;
  top: 660px;
  left: 0;
  font-size: 25vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: center;
  z-index: 0;
}

/* background img */
.vision-bg {
  font-size: 25vw;
  font-weight: 900;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/gif.gif') center center / cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: #d4bebe00;
  white-space: nowrap;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
/* end */

.content-overlay {
  position: relative;
  z-index: 2;
}

.headline {
  font-size: 11vw;
  line-height: 1.115em;
  font-weight: 800;
  margin-top: 86px;
  font-family: "Mona Sans", sans-serif;
}

.headline span {
  display: block;
  font-family: "Mona Sans", sans-serif;
   
   letter-spacing: -9.9px;
}

.headline-p {
  font-size: 1.2rem;
  line-height: 1.639em;
  font-weight: 400;
  color: #e9e9e9;
  width: 58%;
  margin: 20px auto;
  font-family: "Mona Sans", sans-serif;
   letter-spacing: -0.9px;
}

/* button */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.btn {
  padding: 18px 32px;
  height: 53px;
  background-color: white;
  color: black;
  font-weight: 800;
  line-height: 1em;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
   font-family: "Mona Sans", sans-serif;
   letter-spacing: -0.9px;
}
.btns {
  padding: 18px 32px;
   height: 53px;
  background-color: white;
  color: black;
  font-weight: 400;
  line-height: 1em;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  font-size: 19px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e4e4e4;
}

.btns.outline {
  background-color: transparent;
  color: white;
  border: 2px solid rgb(28, 28, 28);
   font-family: "Mona Sans", sans-serif;
   letter-spacing: -0.9px;
}

.btn.outline:hover {
  background-color: white;
  color: black;
}
.btn:hover
 {
  background-color: #e4e4e4;
  color: black;
  transform: scale(1.06);  /* Zoom in */
}
.btns:hover
 {
  background-color: transparent;
  color: rgb(225, 222, 222);
  transform: scale(1.06);  /* Zoom in */
}


.btn,
.btns.outline {
  transition: all 0.3s ease;
  transform: scale(1);  /* Default scale */
}


/* our story */
.our-story {
  padding: 220px 80px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.story-number {
  font-family: "Mona Sans", sans-serif;
  width: 70px;
  height: 70px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.story-title-bar {
  display: block;
  align-items: flex-end; /* 👈 aligns items at the bottom */
  gap: 30px;
  margin-top: 20px;   /* fine-tune spacing if needed */
}

.story-title-bar .line {
  height: 1px;
  width: 130vh;
  background-color: #333;
  margin-bottom: 3px; /* optional tweak if label still isn't bottom-aligned */

}

.story-title-bar .labels {
  color: #e9e9e9;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1rem;
  margin-top: 23px;
  font-family: "Open Sans", sans-serif;
}


.story-content {
  display: flex;
  justify-content:space-between;
  gap:50px;
  flex-wrap: wrap;
}

.story-content .left {
  flex: 1;
  min-width: 300px;
}

.story-content .right {
  flex: 1.5;
  min-width: 200px;
  margin-top: 32px;
}

.story-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
   font-family: "Mona Sans", sans-serif;
   letter-spacing: -3.9px;
  margin-bottom: 50px;
}

.story-content p {
  font-size: 1rem;
  letter-spacing: -0.9px;
  line-height: 1.4;
  margin-bottom: 11px; 
  font-family: "Mona Sans", sans-serif;
  color: #f1f1f1;
  
}

.story-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid white;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 400;
   font-family: "Mona Sans", sans-serif;
   letter-spacing: -0.9px;
  line-height: 1em;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  
  margin: 60px 20px;
}

.story-btn:hover {
  
  color: rgb(210, 210, 210);
  transform: scale(1.05);
}

/* video */
.story-video {
  margin-top: 40px;
  text-align: center;
}

.story-video video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


/* our process */
.section-heading {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 80px;
      margin-top: -157px;
      padding: 0px 80px;
    }

    .circle-number {
      width: 76px;
      height: 73px;
      border: 1px solid #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 20px;
    }

    .section-line {
      height: 1px;
      background-color: #333;
      flex-grow: 1;
      margin-left: -22px;
    }

    .label {
   color: #e9e9e9;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1rem;
  font-family: "Open Sans", sans-serif;
  margin-top: -89px;
  padding: 0px 169px;
    }


    .main-content {
      text-align: center;
      margin-top: 14px;
    }

    .main-title {
      font-size: 72px;
      line-height: 1.115em;
      font-weight: 800;
      margin-bottom: 30px;
    font-family: "Mona Sans", sans-serif;
   letter-spacing: -4.9px;
  margin-bottom: 50px;
    }

    .main-subtext {
      font-size: 18px;
      font-weight: 400;
      color: #bcbcbc;
      line-height: 1.3;
      max-width: 800px;
      font-family: "Mona Sans", sans-serif;
      margin: 0 auto;
      letter-spacing: -0.9px;
    }

    /* card sec */
    
    .card-section {
      display: flex;
      gap: 40px;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .process-card {
      background-color: #111;
      border-radius: 20px;
      padding: 40px 30px;
      width: 350px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .card-one {
      height: 380px;
      margin-top: 106px;
    }

    .card-two {
      height: 410px;
      margin-top: 76px;
    }

    .card-three {
      height: 454px;
      margin-top: 26px;
    }

    .process-number {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 80px;
      font-weight: 400;
      opacity: 1;
      color: white;
      font-family: 'Outfit', sans-serif;

    }

    .process-title {
      font-size: 28px;
      font-weight: 600;
      margin-top: auto;
      font-family: "Mona Sans", sans-serif;
      letter-spacing: 0.1px;
      
    }

    .process-desc {
      margin-top: 15px;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.2;
      color: #ccc;
      font-family: "Mona Sans", sans-serif;
      letter-spacing: -0.9px;
      width: 331px;
      
    }

    /* our services */
    
    .services-wrapper {
      display: flex;
      flex-direction: column;
      gap: 80px;
      padding: 50px 80px;
    }

    .services-header {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .services-circle {
      width: 80px;
      height: 80px;
      border: 1px solid #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 600;
    }

    .services-line {
      height: 1px;
      background-color: #333;
      flex-grow: 1;
    }

    .services-label {
      font-size: 20px;
      font-weight: 600;
      color: #e9e9e9;
      line-height: 1rem;
      letter-spacing: .08em;
      font-family: "Open Sans", sans-serif;
      margin-top: -99px;
      padding-left: 96px;
    }

    .services-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
    }

    .services-texts {
      max-width: 900px;
    }

    .services-title {
      font-size: 90px;
      font-weight: 800;
      margin-bottom: 20px;
        font-family: "Mona Sans", sans-serif;
   letter-spacing: -5.9px;
  
        line-height: 1.2;
      
    }

    .services-description {
      font-size: 22px;
      color: #ccc;
     font-family: "Mona Sans", sans-serif;
    letter-spacing: -0.9px;
    line-height: 1.2;
    }

   .services-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-left: auto; /* 👈 pushes buttons to right */
  font-family: "Mona Sans Wide", sans-serif;
}


    .btn-contact,
    .btn-browse {
      font-size: 18px;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 400;
      letter-spacing: -0.9px;
      line-height: 1em;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.3s ease;
      font-family: "Mona Sans Wide", sans-serif;
    }

    .btn-contact {
      background: #fff;
      color: #040404;
      border: 1px solid #fff;
      font-family: "Mona Sans Wide", sans-serif;
    }

    .btn-browse {
      background: transparent;
      color: #fff;
      border: 1px solid #333;
    }

    .btn-contact:hover {
      background-color: #ccc;
    }

    .btn-browse:hover {
      border-color: #fff;
    }


    /* documentation */
    
     
     /* — Section Container — */
  .doc-section {
  position: relative;
  width: 100%;
  height: 35vh;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  padding-bottom: 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #403e3e;
  transition: height 4s ease, border-bottom 0.6s ease;
}

    
   /* — Video Background — */
.doc-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 4s ease, height 4s ease, top 4s ease;
  z-index: 1;
}
.doc-section:hover {
  height: 55vh; /* Increase card height on hover */
  border-bottom: none;
}

.doc-section:hover .doc-video {
  opacity: 0.4;
  height: 100%;
  top: 0;
}

    /* — Plus Button — */
    .doc-plus-btn {
      position: absolute;
      top: 45%;
      right: 40px;
      transform: translateY(-50%);
      width: 60px; height: 60px;
      border: 1px solid #fff;
      border-radius: 50%;
      font-size: 30px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 4s ease;
      z-index: 3;
    }
    .doc-section:hover .doc-plus-btn {
      opacity: 0;
      pointer-events: none;
    }

    /* — Text Overlay — */
    .doc-content {
      position: absolute;
      top: 45%;
      left: 35%;
      transform: translate(-50%, -50%);
      z-index: 2;
      transition: color 4s ease;
    }
    .doc-number,
    .doc-title {
      color: rgba(255,255,255,0.8);
      transition: color 4s ease;
    }
    .doc-section:hover .doc-number,
    .doc-section:hover .doc-title {
      color: #fff;
    }

    .doc-number {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .doc-title {
      font-size: 50px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    /* — Description (hidden until hover) — */
    .doc-desc {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      font-size: 22px;
      line-height: 1.7;
      color: rgba(255, 250, 250, 0.6);
      transition: opacity 4s ease, max-height 4s ease;
      font-family: "Mona Sans Wide", sans-serif;
      letter-spacing: -0.9px;
    }
    .doc-section:hover .doc-desc {
      max-height: 500px;
      opacity: 1;
      color: #ccc;
    }


    /* our portfolio */
    .services-titles {
      font-size: 70px;
      font-weight: 800;
      margin-left: 270px;
      text-align: center;
      margin-bottom: 20px;
       font-family: "Mona Sans", sans-serif;
   letter-spacing: -3.9px;
  
      line-height: 1.2;
      
    }
     .services-descriptions {
      font-size: 20px;
      color: #ccc;
      font-family: "Mona Sans", sans-serif;
      letter-spacing: 0.1px;
      line-height: 1.2;
      text-align: center;
      margin-left: 320px;
    }

.service-box-two {
  width: 100%;
}

/* Optional: if using service-box, clarify usage */
.service-box:first-child {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  height: fit-content;
}

.service-box:last-child {
  position: relative;
}

/* Common styles for all service grids */
.service-grid {
  margin-top: 140px;
  width: 100%;
  height: 600px; /* ⬅️ Increased height */
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  position: sticky;
  will-change: transform;
  transition: transform 0.4s ease, opacity 0.4s ease;
  top: 10px;
  z-index: 4;
}

/* Optional: different z-index levels if needed */
.service-grid-one {
  top: 80px;
  z-index: 3;
}
.service-grid-two {
  top: 80px;
  z-index: 2;
}
.service-grid-three {
  top: 50px;
  z-index: 1;
}
.service-grid-four {
  top: 50px;
  z-index: 1;
}

/* Sticky and overlap effects (if used via JS) */
.service-grid.is-sticking {
  position: sticky;
}
.service-grid.is-overlapped {
  transform: translateY(30px);
  opacity: 0.7;
}

/* Right section holding the video */
.right {
  position: relative; /* Needed for absolute children */
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-bottom-right-radius: 50px;
  height: 100%;
}

/* Video stays same */
.right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(82, 75, 75, 0.5);
}

/* Top-right arrow */
.video-link {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid white;
  border-radius: 100% ;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s;
}


/* Bottom-left number + paragraph */
.video-caption {
  position: absolute;
  bottom: 80px;
  left: 30px;
  color: #fff;
  max-width: 40%;
}
.video-number {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
.video-text {
  font-size: 40px;
  margin-top: 5px;
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -3.6px;
  line-height: 1.2;
  opacity: 0.9;
  font-weight: 500;
}

/* Bottom metadata row */
.video-meta {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: flex;
  gap: 40px;
  color: #adabab;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Mona Sans", sans-serif;
  opacity: 0.8;
}

/* lets work */
.get-in-touch {
  position: relative;
 
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding:0px 45px;

   
}

.bg-video {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  padding:0px 45px;
  
  
}

.overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  height: 800px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.7); /* Optional: add dark overlay */
}

.title {
  font-size: 6.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 200px;
    letter-spacing: -8.1px;
   font-family: "Mona Sans", sans-serif;
}

.contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.social-icons i {
  font-size: 18px;
  margin: 40px 10px;
  background: white;
  color: black;
  padding: 8px;

  border-radius: 50%;
}

.contact-info {
  font-weight: 500;
}

.contact-link {
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link .arrow {
  font-size: 20px;
}

.divider {
  height: 1px;
  background: white;
  opacity: 0.3;
  margin: 30px auto;
  max-width: 900px;
}

.bottom-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 16px;
  margin-bottom: 30px;
}

.bottom-icons .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

 .bottom-text {
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -0.9px;
  line-height: 1.2;
  margin: 0 auto;
  font-size: 19px;
  opacity: 0.85;
  width: 70%;
  }
 
 
    .mission-sec {
     width: 100%;
      margin: auto;
      
    }

    /* Text section with 2 columns */
    .mission-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
      width: 1095px;
    }

    .mission-top > div {
      font-size: 18px;
      line-height: 1.7;
      color: #e0e0e0;
      letter-spacing: -0.9px;
    }

    /* Video section with 2 columns */
    .twoside-image {
  display: grid;
  grid-template-columns: 40% 60%; /* two columns */
  gap: 40px;
 
  background: #000;
  height: 100vh;
  align-items: center;
}

.column {
  border-radius: 20px;
 
  height: 100%; /* Make both columns take full height */
}

.left-video video
 {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.right-video video{

 width: 130%;
  height: 90%;
  
 object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* our testimonials */
.mission-top > h3 {
        font-size: 3.9rem;
  font-weight: 700;
  letter-spacing: -3.9px;
      color: #ffffff;
      
    }

     .mission-top > p {
      font-size: 18px;
      line-height: 1.7;
      color: #e0e0e0;
      letter-spacing: -0.9px;
      margin-top: 20px;
    }
    
    .testimonial-carousel {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 80px 20px;
  border-top: 1px solid rgb(65, 63, 63);
}

.carousel-track {
  margin-left: 82px;
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 60px;
  padding: 0px 104px;
}

.testimonial {
  flex: 0 0 50%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: white;
  padding: 0px 30px;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

.testimonial .text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
   font-family: "Mona Sans", sans-serif;
   letter-spacing: -0.9px;
}

.testimonial .text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  letter-spacing: -0.9px;
}

.arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
}

.arrows.left {
  left: 20px;
}

.arrows.right {
  left: 100px;
}

.article-news-entered-sec {
  display: grid;
  grid-template-columns: 2fr 1.9fr;
  gap: 30px;
  background-color: #000;
  color: #fff;

}

/* Left large box */
.article-box.large {
  grid-row: span 2;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.article-box.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-box.large:hover img {
  transform: scale(1.05);
}

.article-box.large .article-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -2.2px;
  line-height: 1.2;
  font-size: 1.9rem;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 80%);
  width: 100%;
  color: #fff;
}

/* Right articles */
.article-box.right {
  display: flex;
  gap: 20px;
  align-items: center;
   padding: 20px;
  border-radius: 20px;
  
}

.article-box.right img {
  width: 250px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.article-box.right:hover img {
  transform: scale(1.05);
}

.article-text .article-title.small {
font-family: "Mona Sans", sans-serif;
  letter-spacing: -2.3px;
  line-height: 1.2;
  font-weight: 600;
 font-size: 26px;
  margin-bottom: 8px;
  
}

.article-meta {
  font-size: 0.95rem;
  color: #ccc;
}

.article-meta span {
  font-weight: 600;
  color: #fff;
}

.get-in-touch-second {
  background: #000;
  color: #fff;
 
font-family: "Mona Sans", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}

.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-line {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.scroll-line span {
  display: inline-block;
  padding-right: 60px;
}

@keyframes scroll-left {
  0%{
    transform: translateX(100%);
  }

  100%{
    transform: translateX(-100%);
  }
}


/* footer */
.footer {
  background: #000;
  color: white;
  font-family: "Mona Sans", sans-serif;
  padding: 50px 60px;
  border-top: 1px solid rgb(32, 32, 32);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.footer-left h3 {
  font-size: 3.9rem;
  font-weight: 700;
  letter-spacing: -3.9px;
  line-height: 1;
}

.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-right input {
  padding: 18px 24px;
  border-radius: 40px;
  border: none;
  width: 320px;
  font-size: 1rem;
  background: #111;
  color: white;
}

.footer-right button {
  padding: 16px 32px;
  border-radius: 40px;
  border: none;
  background: white;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.footer-brand {
  border-top: 1px solid #222;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo img {
  width: 324px;
  height: 128px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.footer-column h4 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: "Mona Sans", sans-serif;
  letter-spacing: -0.9px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.footer-column li {
   font-family: "Mona Sans", sans-serif;
  letter-spacing: -0.9px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ccc;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 40px;
  
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons i {
  font-size: 1.2rem;
  margin-right: 20px;
  cursor: pointer;
}

.copyright {
  color: #ccc;
  font-size: 0.95rem;
}

.copyright a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}




/* Responsive */
@media (max-width: 768px) {
  .article-news-entered-sec {
    grid-template-columns: 1fr;
  }

  .article-box.right {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-box.right img {
    width: 100%;
    height: auto;
  }
   .footer-top,
  .footer-brand,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    flex-direction: column;
    gap: 40px;
  }
  .testimonial {
    flex: 0 0 100%;
    flex-direction: column;
  }
    .main-title {
  font-size: 60px;
  }
  .main-subtext {
  font-size: 18px;
  }
  .section-heading {
  flex-direction: column;
  align-items: flex-start;
  }
}


