 /*-----------------------------------*\
  #style.css
\*-----------------------------------*/

 /**
 * copyright 2022 codewithsadee
 */





 /*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

 :root {

     /**
     * colors
     */

     --bright-yellow-crayola: hsl(40, 100%, 50%);
     --medium-turquoise: hsl(172, 48%, 59%);
     --silver-chalice: hsl(0, 0%, 70%);
     --eerie-black-1: hsl(0, 0%, 13%);
     --eerie-black-2: hsl(0, 0%, 15%);
     --eerie-black-3: hsl(228, 10%, 10%);
     --raisin-black: hsl(220, 8%, 14%);
     --granite-gray: hsl(0, 0%, 38%);
     --sonic-silver: hsl(0, 0%, 47%);
     --pistachio_50: hsla(132, 100%, 11%, 0.5); 
     --baby-powder: hsl(86, 41%, 97%);
     --light-gray: hsl(0, 0%, 80%);
     --pistachio: hsl(120, 100%, 39%);
     --platinum: hsl(0, 0%, 91%);
     --cultured: hsl(0, 0%, 94%);
     --white-60: hsla(0, 0%, 100%, 0.6);
     --white_50: hsla(0, 0%, 100%, 0.5);
     --white_10: hsla(0, 0%, 100%, 0.1);
     --white: hsl(0, 0%, 100%);
     --black: hsl(0, 0%, 0%);
     --jet: hsl(0, 0%, 18%);

     /**
     * typography
     */

     --ff-oswald: 'Manrope', sans-serif;
     --ff-inter: 'Manrope', sans-serif;
     --ff-roboto: 'Manrope', sans-serif;

     --fs-1: 13rem;
     --fs-2: 4rem;
     --fs-3: 3.5rem;
     --fs-4: 3rem;
     --fs-5: 2.4rem;
     --fs-6: 2.2rem;
     --fs-7: 2rem;
     --fs-8: 1.8rem;
     --fs-9: 1.5rem;
     --fs-10: 1.4rem;

     --fw-300: 300;
     --fw-500: 500;
     --fw-600: 600;
     --fw-700: 700;

     /**
     * spacing
     */

     --section-padding: 80px;

     /**
     * shadow
     */

     --card-shadow: 0 5px 20px -8px hsla(0, 0%, 0%, 0.15);

     /**
     * transition
     */

     --transition-1: 0.05s ease;
     --transition-2: 0.25s ease;
     --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
     --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

 }





 /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/

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

 li {
     list-style: none;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 a,
 img,
 span,
 time,
 input,
 strong,
 button,
 ion-icon {
     display: block;
 }

 img {
     height: auto;
 }

 ion-icon {
     pointer-events: none;
 }

 input,
 button {
     background: none;
     border: none;
     font: inherit;
 }

 input {
     width: 100%;
 }

 button {
     cursor: pointer;
 }

 :focus-visible {
     outline-offset: 4px;
 }

 ::selection {
     background-color: var(--white_10);
 }

 html {
     font-family: var(--ff-roboto);
     color: var(--granite-gray);
     font-size: 10px;
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--white);
     font-size: 1.6rem;
     line-height: 1.8;
     overflow-x: hidden;
 }

 ::-webkit-scrollbar {
     width: 13px;
 }

 ::-webkit-scrollbar-track {
     background-color: hsl(0, 0%, 95%);
 }

 ::-webkit-scrollbar-thumb {
     background-color: var(--pistachio);
 }





 /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/

 .container {
     padding-inline: 15px;
 }

 .section-subtitle {
     color: var(--color, var(--pistachio));
     font-size: var(--fs, var(--fs-8));
     font-family: var(--ff, var(--ff-roboto));
     font-weight: var(--fw-600);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .h1,
 .h2 {
     font-weight: var(--fw-300);
 }

 .h2,
 .h3 {
     line-height: 1.6;
 }

 .h2 {
     font-size: var(--fs-3);
     color: var(--eerie-black-2);
 }

 .h3 {
     font-size: var(--fs-5);
     color: var(--eerie-black-2);
 }

 .h4 {
     color: var(--white);
     font-size: var(--fs-6);
 }

 .btn {
     position: relative;
     background-color: var(--btn-bg, var(--pistachio));
     color: var(--white);
     font-weight: var(--fw-500);
     font-size: var(--fs-9);
     padding: 8px 20px;
     border-radius: 4px;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: var(--transition-2);
 }

 .btn ion-icon {
     --ionicon-stroke-width: 55px;
     font-size: 1.8rem;
 }

 .btn:not(.btn-outline)::after {
     content: "";
     position: absolute;
    border-radius: 4px;
     inset: 0;
     border: 1px solid var(--btn-bg, var(--pistachio));
     transform: translate(5px, 5px);
     transition: var(--transition-2);
 }

 .btn:is(:hover, :focus)::after {
     transform: translate(0, 0);
 }

 .btn-secondary {
     --btn-bg: var(--black);
 }

 .btn-secondary:is(:hover, :focus) {
     --btn-bg: var(--pistachio);
 }

 .btn-outline {
     border: 2px solid var(--white);
     background-color: transparent;
 }

 .btn-white {
     --btn-bg: var(--platinum);
     color: var(--black);
 }

 .section {
     padding-block: var(--section-padding);
 }

 .w-100 {
     width: 100%;
 }

 .section-text {
     line-height: 2;
 }

 .img-cover {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }




 /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/

 .lang-switch,
 .header-action {
     display: none;
 }

 .header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background-color: transparent;
     /* padding-block: 18px; */
     z-index: 4;
 }

 .text-lime-green {
     /* Text styling */
     color: #fff; /* White text for contrast */
     font-weight: 700;

     /* Background highlight */
     background: linear-gradient(90deg, #a2ff00, #00ff95); /* Lime-green gradient */
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;

     /* Decorative extras */
     padding: 0.2rem 0.5rem;
     position: relative;
     display: inline-block;
     z-index: 1;
 }

 /* Optional: Add an animated underline effect */
 .text-lime-green::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #a2ff00, #00ff95);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.3s ease;
     z-index: -1;
 }

 /* Hover animation (optional) */
 .text-lime-green:hover::after {
     transform: scaleX(1);
     transform-origin: left;
 }

 /* .header::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: calc(100% - 140px);
     height: 1px;
     background-color: red;
 } */

 .header.active {
     background-color: var(--eerie-black-1);
     box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.8);
 }

 .header.active::after {
     display: none;
 }

 .header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 50px;
 }

 .logo {
     color: var(--white);
     font-family: var(--ff-oswald);
     font-size: 3.2rem;
     text-transform: uppercase;
 }

 .nav-open-btn {
     color: var(--white);
     font-size: 3.8rem;
 }

 .navbar {
     position: fixed;
     background-color: var(--eerie-black-1);
     top: 100%;
     left: 0;
     width: 100%;
     height: 100%;
     outline: 1px solid var(--white_10);
     display: flex;
     flex-direction: column;
     z-index: 1;
     visibility: hidden;
     transition: 0.25s var(--cubic-in);
 }

 .navbar.active {
     transform: translateY(-100%);
     visibility: visible;
     transition: 0.5s var(--cubic-out);
 }

 .nav-close-btn {
     color: var(--white);
     font-size: 2.4rem;
     position: absolute;
     top: 15px;
     right: 15px;
 }

 .nav-close-btn ion-icon {
     --ionicon-stroke-width: 60px;
 }

 .navbar>.logo {
     font-size: 4rem;
     width: max-content;
     margin-inline: auto;
     margin-block-start: 50px;
 }

 .navbar-list {
     max-width: 400px;
     width: 100%;
     margin: auto;
     padding-inline: 10px;
     opacity: 0;
     transition: 0.5s ease;
     transition-delay: 0s;
 }

 .navbar.active .navbar-list {
     opacity: 1;
     transition-delay: 0.25s;
 }

 .navbar-link {
     color: var(--white);
     font-size: var(--fs-5);
     font-weight: var(--fw-400);
     text-transform: uppercase;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-inline: 10px 15px;
     padding-block: 8px;
     transition: var(--transition-1);
 }

 .navbar-link:is(:hover, :focus) {
     background-color: var(--pistachio);
 }





 /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/

 .hero {
     background-color: var(--eerie-black-1);
     color: var(--white);
     min-height: 700px;
     padding-block: 120px 60px;
     display: grid;
     align-items: center;
 }

 .hero .section-subtitle {
     --color: var(--white);
     --ff: var(--ff-inter);
     --fs: var(--fs-7);
 }

 .hero-title {
     font-size: var(--fs-2);
     margin-block: 30px;
     line-height: 1.2;
 }

 .hero-text {
     font-family: var(--ff-inter);
     /* font-size: var(--fs-8); */
     /* letter-spacing: -1px; */
     max-width: 55ch;
     margin-block-end: 15px;
 }





 /*-----------------------------------*\
    #FEATURES
  \*-----------------------------------*/

 .features {
     padding-block-start: 20px;
     background-color: var(--eerie-black-1);
 }

 .features-list {
     display: grid;
     gap: 30px;
 }

 .features-item {
     display: flex;
     align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
        /* Adjust the alpha value (0.1) to control the transparency.  Lower values are more transparent. */
        backdrop-filter: blur(10px);
        /* The blur() function creates the blur effect. Adjust the pixel value (10px) to control the amount of blur. Higher values create a stronger blur. */
        border-radius: 5px;
        /* Optional: Adds rounded corners. Adjust the pixel value to change the roundness. */
        padding: 10px;
        /* Optional: Adds padding inside the element, so the text isn't right up against the edge. */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* Optional: Adds a subtle shadow for better definition. */
        border: 1px solid rgba(255, 255, 255, 0.2);
        /* Optional: Adds a thin, light border. */
     /* gap: 25px; */
 }

 .features-item .item-icon {
     color: var(--pistachio);
     font-size: 5.5rem;
     margin-block-start: 10px;
 }

 .features-item .item-icon ion-icon {
     --ionicon-stroke-width: 25px;
 }

 .features-item .item-title {
     margin-block-end: 10px;
    border-bottom: 1px solid;
 }

 .features-item .item-text {
     max-width: 20ch;
     color: var(--white_50);
     font-size: var(--fs-9);
 }





 /*-----------------------------------*\
    #TECHNOLOGIES
  \*-----------------------------------*/
  .tech-showcase {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 1rem 0;
      position: relative;
      overflow: hidden;
  }

  .tech-heading {
      white-space: nowrap;
      font-weight: 400;
      color: #212121;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      margin-right: 1rem;
  }

  .logos-track {
      flex-grow: 1;
      position: relative;
      overflow: hidden;
  }

  .logos-loop {
      display: flex;
      gap: 2rem;
      width: max-content;
      animation: scroll 30s linear infinite;
  }

  .logos-loop img {
      width: 80px;
      height: 40px;
      object-fit: contain;
      opacity: 0.85;
      transition: opacity 0.2s ease;
  }

  /* Fade effect near heading */
  .logos-track::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 60px;
      background: linear-gradient(90deg, #fff 20%, transparent 100%);
      z-index: 2;
  }

  /* Fade effect at end */
  .logos-track::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 60px;
      background: linear-gradient(90deg, transparent 0%, #fff 80%);
      z-index: 2;
  }

  @keyframes scroll {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* Pause animation on hover */
  .logos-loop:hover {
      animation-play-state: paused;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .tech-showcase {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
      }

      .logos-loop img {
          width: 60px;
          height: 30px;
      }

      .logos-track::before,
      .logos-track::after {
          width: 40px;
      }
  }






 /*-----------------------------------*\
    #OUR MISSION
  \*-----------------------------------*/

 .section-wrapper {
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 75vh;
     width: 100%;
     padding-left: 1.5rem;
     padding-right: 1.5rem;
 }

 @media (min-width: 1024px) {
     .section-wrapper {
         padding-left: 2rem;
         padding-right: 2rem;
     }
 }

 .section-content {
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     background-color: #008301;
     border-radius: 0.5rem;
     max-width: 72.87vw;
     color: white;
     padding: 2rem;
 }

 @media (min-width: 640px) {
     .section-content {
         padding: 2rem;
     }
 }

 @media (min-width: 1024px) {
     .section-content {
         padding: 14rem;
     }
 }

 .headline {
     font-size: 1.875rem;
     font-weight: 900;
     line-height: 1;
     letter-spacing: 1px;
     text-transform: uppercase;
     /*margin-bottom: 1.5rem;*/
     padding: 1rem;
 }

 @media (min-width: 640px) {
     .headline {
         font-size: 2.25rem;
         margin-bottom: 2rem;
     }
 }

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

 .subtext {
     /*margin-bottom: 1.5rem;*/
     font-size: 0.875rem;
     /*max-width: 42rem;*/
     line-height: 1.6;
 }

 @media (min-width: 640px) {
     .subtext {
         font-size: 1rem;
         margin-bottom: 2rem;
     }
 }

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

 .btn-secondary {
     background-color: white;
     color: #008301;
     border: none;
     padding: 0.75rem 1.5rem;
     font-weight: 600;
     border-radius: 0.375rem;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .btn-secondary:hover {
     background-color: #e6e6e6;
 }

 /* Placeholder for RotatingCircle */
 .rotating-circle {
     width: 50px;
     height: 50px;
     border: 4px solid white;
     border-top: 4px solid transparent;
     border-radius: 50%;
     margin-bottom: 1.5rem;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }


 /*-----------------------------------*\
    #COMMITMENT
  \*-----------------------------------*/
 .commitment{
     max-width: 800px;
     margin: auto;
 }
 .commitment P{
     font-size: 4rem;
     line-height: 1.3;
     font-weight: 500;
     color: black
 }

 .ceo_profile{
     display: flex;
     margin-top: 2.5rem;
 }

 .ceo_profile img{
     border-radius: 50%;
     object-fit: cover;
     display: block;
 }

 .ceo_name{
     padding: 0.5rem;
 }

 .ceo_name span:first-child{
     font-weight: bold;
 }

 /*-----------------------------------*\
    #SERVICES
  \*-----------------------------------*/

 .services-section {
     border-radius: 0.8rem;
     background-color: var(--eerie-black-1);
     display: flex;
     flex-wrap: wrap;
     padding: 10rem;
     align-items: center;
     justify-content: center;
     gap: 2rem;
     width: 90vw;
     margin: auto;
 }

 .content {
     flex: 1 1 400px;
 }

 .content h1 {
     font-size: 4.5rem;
     line-height: 5.2rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: white;
 }

 .subheading {
     color: #b0b0b0;
     margin-bottom: 2rem;
 }

 .services-list {
     list-style: none;
     padding: 2rem;
     margin-bottom: 2rem;
     margin-top: 3rem;
 }
 .services-list li {
     margin-bottom: 0.8rem;
     color: #777;
     font-size: 1.8rem;
     cursor: pointer;
     transition: color 0.3s;
     position: relative;
 }

 .services-list li.active,
 .services-list li:focus {
     color: white;
     font-weight: 600;
 }

 .services-list li.active::before,
 .services-list li:focus::before {
     content: '';
     position: absolute;
     left: -20px;
     top: 50%;
     transform: translateY(-50%);
     width: 10px;
     height: 10px;
     background-color: #008301;
     border-radius: 50%;
 }

 .services-list .dot {
     height: 10px;
     width: 10px;
     background-color: #008301;
     border-radius: 50%;
     display: inline-block;
     margin-right: 0.5rem;
 }

 .all-services-btn {
     background-color: #008301;
     font-size: 1.5rem;
     border: none;
     border-radius: 25px;
     padding: 0.8rem 2.5rem;
     font-weight: 600;
     cursor: pointer;
     color: white;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .image-container {
     position: relative;
     flex: 1 1 400px;
 }

 .image-container img {
     width: 100%;
     border-radius: 8px;
 }

 .info-card {
     position: absolute;
     bottom: -40px;
     left: -321px;
     background: white;
     color: #333;
     padding: 3rem;
     border-radius: 10px;
     width: 70%;
     box-shadow: 0 10px 20px rgba(0,0,0,0.2);
 }

 .info-card h3 {
     margin-top: 0;
 }

 .arrow {
     font-size: 1.2rem;
 }

 /*-----------------------------------*\
    #project completion
  \*-----------------------------------*/
 .relationship-section {
     /*padding: 60px 40px;*/
     max-width: 1400px;
     margin: auto;
 }

 .relationship-content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
     margin-bottom: 100px;
 }

 .left-text h2 {
     font-size: 4.0rem;
     font-weight: 400;
     color: rgb(33, 33, 33);
     /*color: #1a1a1a;*/
     line-height: 1.2;
     margin: 0;
 }

 .right-text {
     max-width: 400px;
 }

 .right-text p {
     font-size: 16px;
     color: #444;
     margin-bottom: 20px;
 }

 .cta-button {
     background-color: hsl(120, 100%, 39%);
     color: white;
     border: none;
     padding: 7px 12px;
     font-weight: 500;
     font-size: 13px;
     border-radius: 30px;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     transition: background 0.3s ease;
 }

 .cta-button .arrow {
     margin-left: 10px;
     font-size: 16px;
     transition: transform 0.2s ease;
     background: white;
     color: black;
     width: 25px;
     height: 25px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cta-button:hover .arrow {
     transform: translateX(4px);
 }

 .bar-chart {
     display: flex;
     align-items: flex-end;
     /*gap: 20px;*/
     height: 350px;
 }

 .bar {
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 30px 20px;
     /*border-radius: 4px;*/
     color: #fff;
     box-sizing: border-box;
     text-align: center;
     position: relative;
 }

 .bar-percent {
     font-size: 25px;
     font-weight: bold;
     text-align: left;
     border-bottom: 1px solid;
 }

 .bar-label {
     margin-top: auto;
     font-size: 18px;
     text-align: left;
     font-weight: 500;
     color: #f5f5f5;
 }
 /*-----------------------------------*\
    #TESTIMONIALS
  \*-----------------------------------*/
 .testimonial-section {
     /*padding: 30px 20px;*/
     max-width: 1400px;
     margin: auto;
 }

 .testimonial_header{
     margin-bottom: 30px;
 }
 .testimonial_header h2 {
     font-size: 40px;
     font-weight: 600;
     margin: 0;
     color: #111;
 }

 .testimonial_header p {
     font-size: 16px;
     color: #666;
     /*margin-top: 5px;*/
 }

 .testimonial-grid {
     display: grid;
     grid-template-columns: .7fr 1.5fr;
     gap: 30px;
     /*margin: 50px auto;*/
     /*max-width: 1200px;*/
     /*padding: 0 20px;*/
     align-items: stretch;
 }

 /* === Left Column === */
 .testimonial-card {
     background-color: #f8f8f8;
     border-radius: 12px;
     padding: 30px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 /* Arrows */
 .testimonial-arrows {
     margin-top: auto;
     display: flex;
     justify-content: flex-start;
     gap: 10px;
     margin-top: 30px;
 }

 .testimonial-arrows button {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: none;
     background-color: #e5e5e5;
     color: #111;
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .testimonial-arrows button:hover {
     background-color: #d1d1d1;
 }

 .testimonial-card h4 {
     font-size: 16px;
     color: #666;
     margin-bottom: 15px;
 }

 .testimonial-card h2 {
     font-size: 24px;
     color: #111;
     font-weight: 500;
     line-height: 1.4;
 }

 .testimonial-card h4 span{
     font-size: 30px;
     color: #111;
     line-height: 1.1;
     font-weight: 400;
     margin-top: 10px;
 }

 /* === Right Column === */
 .testimonial-right {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 /* Image Section */
 .testimonial-image {
     flex: 1;
     border-radius: 12px;
     overflow: hidden;
 }

 .testimonial-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 12px;
 }

 /* Bottom Stat + Quote Row */
 .testimonial-bottom {
     display: flex;
     gap: 20px;
     margin-top: 20px;
 }

 /* Stat Box */
 .testimonial-stat {
     background-color: #22c55e;
     color: white;
     border-radius: 12px;
     padding: 30px 20px;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .testimonial-stat h2 {
     font-size: 36px;
     font-weight: 700;
     margin: 0;
 }

 .testimonial-stat p {
     margin-top: 8px;
     font-size: 14px;
     opacity: 0.9;
 }

 /* Quote Box */
 .testimonial-quote {
     background-color: #111827;
     color: white;
     border-radius: 12px;
     padding: 30px 20px;
     flex: 2;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .testimonial-quote p {
     font-size: 14px;
     line-height: 1.5;
     font-style: italic;
 }

 .client-info {
     display: flex;
     align-items: center;
     margin-top: 20px;
     gap: 12px;
 }

 .client-info img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
 }

 .client-info div {
     font-size: 14px;
     line-height: 1.2;
 }

 .client-info strong {
     font-weight: 600;
     display: block;
 }

 /* === Responsive Styling === */
 @media (max-width: 992px) {
     .testimonial-grid {
         grid-template-columns: 1fr;
     }

     .testimonial-bottom {
         flex-direction: column;
     }

     .testimonial-card,
     .testimonial-stat,
     .testimonial-quote {
         padding: 20px;
     }

     .testimonial-stat h2 {
         font-size: 28px;
     }
 }


 /*-----------------------------------*\
    #CTA
  \*-----------------------------------*/
.cta_container{
    /*max-width: 1200px;*/
    display: flex;
    gap: 20px;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 37px;
}

 .left-section {
     background-color: #c7eb08;

     padding: 25px;
     /*display: flex;*/
     flex-direction: column;
     justify-content: center;
     width: 70%;
     border-radius: inherit;
 }

 .left-section-header{
     max-width: 830px;
 }

 .left-section h2 {
     color:  rgb(33, 33, 33);
     font-size: 1.8rem;
     margin-bottom: 18px;
     font-weight: 500;
 }

 .left-section h1 {
     color: #333;
     font-weight: 500;
     font-size: 3.5rem;
     line-height: 1.3;
     margin-bottom: 40px;
 }

 .left-section p {
     font-size: 1.8rem;
     line-height: 1.4;
     margin-bottom: 35px;
     color: #333;
     width: 500px;
     font-weight: 400;
 }

 .left-section .buttons {
     display: flex;
     gap: 10px;
 }

 .left-section .button {
     padding: 12px 20px;
     border-radius: 6px;
     text-decoration: none;
     font-size: 0.9rem;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .left-section .button.primary {
     background-color: #fff;
     color: #000;
     border: 1px solid #fff;
 }

 .left-section .button.secondary {
     background-color: #000;
     color: #fff;
     border: 1px solid #000;
 }

 .left-section .button svg {
     margin-left: 8px;
 }

 .right-section {
     width: 30%;
     overflow: hidden;
     border-radius: inherit;
 }

 .right-section img {
     display: block;
     width: 100%;
     height: 100% !important;
     object-fit: cover;
     border-radius: inherit;
 }

 @media (max-width: 768px) {
     /*.container {*/
     /*    flex-direction: column;*/
     /*}*/

     .left-section, .right-section {
         width: 100%;
     }

     .left-section {
         padding: 30px;
     }

     .left-section h1 {
         font-size: 1.75rem;
     }

     .left-section .buttons {
         flex-direction: column;
         align-items: flex-start;
     }

     .left-section .button {
         width: 100%;
     }
 }


 /*-----------------------------------*\
    # CONTACT US
  \*-----------------------------------*/
 .contactus_container {
     /*max-width: 1200px;*/
     margin: auto;
     padding: 40px 30px;
 }

 .contact_section {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;

 }

 /* LEFT SIDE */
 .contact_info {
     flex: 1;
     min-width: 300px;
     background-color: #f7f7f7;
     border-radius: 10px;
     padding: 30px;
 }

 .contact_info h5 {
     color: #777;
     font-size: 1.9rem;
     margin-bottom: 5px;
     font-weight: 400;
 }

 .contact_info h2 {
     font-size: 5rem;
     color: #212121;
     margin-bottom: 10px;
     font-weight: 400;
 }

 .contact_info p {
     margin-bottom: 25px;
     line-height: 1.6;
     color: #444;
 }

 .info_grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
 }

 .info_grid h3 {
     font-size: 2rem;
     font-weight: 400;
     margin-bottom: 10px;
     color: #212121;
 }

 .info_grid p {
     margin-bottom: 6px;
     color: #777;
 }

 /* RIGHT SIDE */
 .contact_form {
     flex: 1;
     min-width: 300px;
     padding: 30px;
     border-radius: 12px;
 }

 .contact_form h2 {
     font-size: 3rem;
     margin-bottom: 20px;
     font-weight: 400;
 }

 form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .row {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
 }

 .form_group {
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .form_group label {
     margin-bottom: 5px;
     font-weight: 500;
 }

 .form_group input,
 textarea {
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 8px;
     background-color: #fff;
     font-size: 1rem;
 }

 textarea {
     resize: vertical;
     min-height: 120px;
 }

 button[type="submit"] {
     background-color: #111;
     color: #fff;
     padding: 14px 20px;
     border: none;
     border-radius: 10px;
     font-size: 1rem;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 button[type="submit"]:hover {
     background-color: #333;
 }

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

 @media (max-width: 768px) {
     .contact_section {
         flex-direction: column;
     }

     .row {
         flex-direction: column;
     }

     .form_group {
         width: 100%;
     }
 }

 /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
 .footer_container {
     display: flex;
     justify-content: space-between;
     gap: 30px;
     /*padding: 40px;*/
     flex-wrap: wrap;
     max-width: 1400px;
     margin: auto;
     margin-bottom: 30px;
 }

 .footer-left {
     background: #22c55e;
     color: #000;
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     /*flex: 1;*/
     max-width: 300px;
     border-radius: 10px;
 }

 .footer-left .logo {
     width: 100px;
     margin-bottom: 20px;
 }

 .footer-left p {
     color: rgb(33, 33, 33);
     font-size: 23px;
     font-weight: 400;
     line-height: 1.2;
 }

 .footer-right {
     flex: 3;
     padding: 40px;
     color: white;
     background-color: #000;
     border-radius: 10px;
 }

 .footer-columns {
     display: flex;
     justify-content: space-between;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .column h4 {
     margin-bottom: 20px;
     font-weight: 500;
 }

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


 .column ul li {
     /*margin: 5px 0;*/
     font-size: 18px;
 }

 .footer-contact {
     display: flex;
     justify-content: space-between;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .footer-contact h5 {
     margin: 0 0 5px;
     font-weight: 500;
 }

 .footer-contact p {
     margin: 0;
     line-height: 1.6;
     font-size: 15px;
 }

 .footer-bottom {
     border-top: 1px solid #333;
     padding-top: 20px;
 }

 .footer-bottom .email {
     font-size: 20px;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
     align-items: center;
 }

 .policy a {
     color: #fff;
     margin-right: 20px;
     font-size: 14px;
     text-decoration: none;
 }

 .policy a:hover {
     text-decoration: underline;
 }

 .copyright {
     font-size: 14px;
     color: #999;
 }
 /*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/
 .blog-section {
     /*max-width: 1200px;*/
     margin: 140px auto;
     padding: 0 20px;
 }

 .blog_header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
 }

 .blog_header h2 {
     font-size: 32px;
     color: #111;
 }

 .view-all-btn {
     background-color: #111;
     color: #fff;
     text-decoration: none;
     padding: 10px 16px;
     border-radius: 999px;
     font-weight: 500;
     transition: background 0.3s ease;
 }

 .view-all-btn:hover {
     background-color: #333;
 }

 .blog-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
 }

 .card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     padding-bottom: 10px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

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

 .card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .tag {
     display: inline-block;
     margin: 12px 16px 6px;
     padding: 4px 12px;
     background-color: #f1f1f1;
     font-size: 12px;
     border-radius: 999px;
 }

 .card h3 {
     margin: 0 16px 8px;
     font-size: 18px;
     color: #222;
 }

 .meta {
     font-size: 14px;
     color: #666;
     margin: 0 16px;
 }

 /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/











 /*-----------------------------------*\
    #TESTIMONIALS
  \*-----------------------------------*/

 .testi {
     background-color: var(--jet);
 }

 .testi-content {
     padding: var(--section-padding) 15px;
 }

 .testi .section-title {
     color: var(--white);
     margin-block: 10px 40px;
 }

 .testi-card {
     color: var(--white);
 }

 .testi-text,
 .testi-name {
     font-size: var(--fs-8);
 }

 .testi-text,
 .testi-title {
     font-family: var(--ff-inter);
 }

 .testi-text {
     padding-block-end: 30px;
     border-block-end: 1px solid var(--white_10);
     margin-block: 20px 30px;
 }

 .testi-title {
     color: var(--white_50);
     font-size: var(--fs-10);
 }

 .testi-banner {
     background-color: var(--light-gray);
 }



 /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

 .footer {
     background-color: var(--raisin-black);
     color: var(--white);
     font-family: var(--ff-inter);
     padding-block: 40px;
 }

 .footer .container {
     margin-inline: 15px;
     background-color: var(--eerie-black-3);
     padding: 20px;
 }

 .footer-list,
 .copyright {
     max-width: max-content;
     margin-inline: auto;
 }

 .footer-list {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 5px 40px;
     margin-block-end: 15px;
 }

 .footer-link,
 .copyright-link {
     text-decoration: underline;
     transition: var(--transition-1);
 }

 .footer-link {
     color: var(--white_50);
 }

 :is(.footer-link, .copyright-link):is(:hover, :focus) {
     background-color: hsla(0, 0%, 100%, 0.05);
 }

 .copyright {
     text-align: center;
 }

 .copyright-link {
     display: inline-block;
 }





 /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/

 /**
   * responsive for larger than 450px screen
   */

 @media (min-width: 450px) {

     /**
     * CUSTOM PROPERTY
     */

     :root {

         /**
       * typography
       */

         --fs-3: 4rem;

     }



     /**
     * CTA
     */

     .cta {
         --fs-4: 4.1rem;
     }

 }





 /**
   * responsive for larger than 580px screen
   */

 @media (min-width: 580px) {

     /**
     * CUSTOM PROPERTY
     */

     :root {

         /**
       * typography
       */

         --fs-2: 5.5rem;

     }



     /**
     * DONATE
     */

     .donate-card {
         position: relative;
         padding-block-end: 150px;
         box-shadow: none;
     }

     .donate-card .card-content {
         position: absolute;
         width: 85%;
         bottom: 0;
         right: 0;
         border-radius: 4px;
         box-shadow: var(--card-shadow);
     }

     .donate-card .card-title {
         --fs-5: 2.4rem;
     }



     /**
     * EVENT
     */

     .event-card {
         display: flex;
         align-items: flex-start;
         gap: 30px;
     }

     .event-card .card-subtitle {
         margin-block-start: 0;
     }

     .event-card .card-title {
         font-size: var(--fs-5);
         line-height: 1.4;
     }



     /**
     * INSTA POST
     */

     .insta-post-item {
         min-width: 45%;
     }

 }





 /**
   * responsive for larger than 768px screen
   */

 @media (min-width: 768px) {

     /**
     * FEATURES, SERVICE
     */

     .features-list,
     .service-list {
         grid-template-columns: 1fr 1fr;
     }



     /**
     * ABOUT
     */

     .banner-row {
         display: flex;
         gap: 20px;
     }

     .deco-title {
         top: 10%;
         left: calc(100% + 40px);
     }

     .about-img {
         margin-block-end: 0;
     }

     .about-img:first-child {
         margin-block-end: 30px;
     }



     /**
     * TESTIMONIALS
     */

     .testi-card {
         display: flex;
         align-items: flex-start;
         gap: 30px;
     }

     .testi-text {
         margin-block-start: 0;
     }



     /**
     * INSTA POST
     */

     .insta-post-item {
         min-width: 32%;
     }



     /**
     * FOOTER
     */

     .footer .container {
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 40px;
         padding-inline: 40px;
     }

     .footer-list,
     .copyright {
         margin-inline: 0;
     }

     .footer-list {
         margin-block-end: 0;
     }

 }





 /**
   * responsive for larger than 992px screen
   */

 @media (min-width: 992px) {

     /**
     * CUSTOM PROPERTY
     */

     :root {

         /**
       * typography
       */

         --fs-2: 7.5rem;

     }



     /**
     * HEADER
     */

     .header {
         transition: var(--transition-2);
     }

     .header-action {
         display: flex;
         align-items: center;
         gap: 50px;
     }

     .search-btn {
         color: var(--white);
         font-size: 2.6rem;
     }

     .search-btn ion-icon {
         --ionicon-stroke-width: 50px;
     }



     /**
     * HERO
     */

     .hero {
         background-image: linear-gradient(rgba(0, 0, 0, 0.715), rgba(0, 0, 0, 0.715)), url("../images/bg-1.jpg");
         background-repeat: no-repeat;
         background-size: cover;
         background-position: left;
         min-height: 780px;
     }



     /**
     * FEATURES
     */

     .features {
         padding-block-start: var(--section-padding);
     }

     .features-list {
         grid-template-columns: repeat(4, 1fr);
     }



     /**
     * ABOUT
     */

     .banner-col {
         width: 50%;
     }

     .about-img {
         max-width: 100%;
     }

     .about-img-2 {
         min-width: 120%;
         margin-inline-start: -20%;
     }

     .about-img-3 {
         max-width: 90%;
     }

     .about .container {
         display: grid;
         grid-template-columns: 1fr 0.8fr;
         align-items: flex-start;
         gap: 120px;
     }

     .about-banner {
         margin-block-end: 0;
     }



     /**
     * CTA
     */

     .cta .container {
         display: grid;
         grid-template-columns: 1fr 0.7fr;
         gap: 30px;
     }

     .cta-content {
         margin-block-end: 0;
     }

     .cta .section-title {
         --fs-4: 5rem;
     }



     /**
     * SERVICE
     */

     .service-list {
         grid-template-columns: repeat(4, 1fr);
     }



     /**
     * DONATE
     */

     .donate-list {
         grid-template-columns: 1fr 1fr;
         column-gap: 30px;
     }



     /**
     * TESTIMONIALS
     */

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

     .testi-content {
         padding-inline: 30px 50px;
     }



     /**
     * EVENT
     */

     .event-card .wrapper {
         display: flex;
         flex-grow: 1;
         justify-content: space-between;
         align-items: center;
     }

     .event-card .card-text {
         margin-block-end: 0;
     }



     /**
     * INSTA POST
     */

     .insta-post-item {
         min-width: 24%;
     }

 }





 /**
   * responsive for larger than 1200px screen
   */

 @media (min-width: 1200px) {

     /**
     * CUSTOM PROPERTY
     */

     :root {

         /**
       * typography
       */

         --fs-3: 4.4rem;

     }



     /**
     * REUSED STYLE
     */

     .container {
         max-width: 1500px;
         width: 100%;
         margin-inline: auto;
         padding-inline: 30px;
     }

     .section-title {
         line-height: 1.2;
     }



     /**
     * HEADER
     */

     .nav-open-btn,
     .nav-close-btn,
     .navbar>.logo,
     .navbar-link>ion-icon {
         display: none;
     }

     .header {
         padding-block: 8px;
     }

     .lang-switch {
         position: relative;
         display: block;
         background-color: transparent;
         border: none;
         color: var(--white);
         font: inherit;
         font-size: var(--fs-8);
         font-weight: var(--fw-600);
     }

     .lang-switch option {
         color: var(--eerie-black-1);
     }

     .navbar {
         all: unset;
         margin-inline: auto;
     }

     .navbar-list {
         all: unset;
         display: flex;
         gap: 10px;
     }

     .navbar-link {
         font-size: var(--fs-9);
         font-weight: var(--fw-600);
         text-transform: capitalize;
         transition: var(--transition-2);
     }

     .navbar-link:is(:hover, :focus) {
         background: none;
     }

     .navbar-list:hover .navbar-link:not(:hover) {
         color: var(--white-60);
     }



     /**
     * HERO
     */

     .hero {
         padding-block: 260px 250px;
         /* padding-block: 200px 325px; */
         background-position: center;
     }



    /**
     * FEATURES
     */

    .features {
        padding-block-start: 0px;
         /* padding-block-start: 15px; */
        margin-block-start: -185px;
        background-color: transparent;
    }



     /**
     * ABOUT
     */

         .choose-us-container {
             max-width: 1200px;
             margin: 0 auto;
             padding: 4rem 2rem;
         }
    
         .choose-us-row {
             display: flex;
             /*align-items: center;*/
             gap: 3rem;
             margin-bottom: 6rem;
         }
    
         .reversed {
             flex-direction: row-reverse;
         }
    
         .choose-us-content {
             flex: 1;
             min-width: 50%;
             display: flex;
             flex-direction: column;
             justify-content: space-between;
             background-color: rgb(114 109 109 / 9%);
             border-radius: 10px;
         }
    
         .choose-us-image {
             flex: 1;
             min-width: 50%;
             border-radius: 12px;
             overflow: hidden;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         }
    
         .choose-us-image img {
             width: 100%;
             height: auto;
             display: block;
             transition: transform 0.3s ease;
         }
    
         .choose-us-image:hover img {
             transform: scale(1.03);
         }
    
         .choose-us-title {
             padding: 2rem;
             font-size: 3.5rem;
             line-height: 1.3;
             color: #222;
             margin-bottom: 0;
             font-weight: 600;
         }
    
         .spacer {
             height: 20rem;
             /* 20rem space as requested */
         }

     .choose-us-content-flex{
         display: flex;
         flex-direction: column;
         justify-content: space-evenly;
         height: -webkit-fill-available;
     }

     .choose-us-content-flex .choose-us-text{
             font-size: 2.2rem;
             font-weight: 500;
             line-height: 1.2;
         }
    
         .choose-us-text {
             /*font-size: 1.1rem;*/
             line-height: 1.6;
             color: #555;
             max-width: 80%;
             padding: 2rem;
         }

         .choose-us-text-subtext{
             font-size: 1.6rem;
             padding: 2rem;
         }

         .choose-us-content-button{
             margin-top: 2rem;
         }
         /* Responsive Design */
         @media (max-width: 992px) {
             .choose-us-row {
                 flex-direction: column;
                 gap: 2rem;
                 margin-bottom: 4rem;
             }
    
             .reversed {
                 flex-direction: column;
             }
    
             .choose-us-content,
             .choose-us-image {
                 min-width: 100%;
             }
    
             .choose-us-title {
                 font-size: 1.8rem;
             }
    
             .spacer {
                 height: 10rem;
             }
    
             .choose-us-text {
                 max-width: 100%;
             }
         }
    
         @media (max-width: 576px) {
             .choose-us-title {
                 font-size: 1.5rem;
             }
    
             .spacer {
                 height: 5rem;
             }
         }


     /**
     * FOOTER
     */

     .footer .container {
         margin-inline: 30px;
         width: auto;
     } }