@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --color--white: white;
    --font-family-grotesk: "Schibsted Grotesk", sans-serif;;
    --color--black: black;
    --_typography---paragraph-font-size--small-paragraph: 14px;
    --_typography---line-height--large: 140%;
    --_typography---font-weight--normal: 400;
    --color--gray-900: #272727;
    --_typography---heading-font-size--h1: 64px;
    --_typography---line-height--small: 110%;
    --_typography---heading-font-size--h2: 48px;
    --_typography---heading-font-size--h3: 40px;
    --_typography---heading-font-size--h4: 36px;
    --_typography---font-weight--medium: 500;
    --_typography---heading-font-size--h5: 32px;
    --_typography---line-height--medium: 130%;
    --_typography---heading-font-size--h6: 24px;
    --color--dark-blue-800: #23232b;
    --color--gray-200: #27272733;
    --_spacing---border-radius--radius-xxl: 100px;
    --_typography---paragraph-font-size--paragraph: 16px;
    --color--green-900: #00ab41;
    --color--gray-800: #272727cc;
    --color--white-800: #fffc;
    --color--gray-250: #27272740;
    --color--white-100: #ffffff1a;
    --_typography---link-font-size--text-link: 16px;
    --color--green-600: #26ff79;
    --color--elephant-950: #002738;
    --_spacing---padding-margin--space-md: 24px;
    --color--white-700: #ffffffb3;
    --color--sky-blue-700: #0094ca;
    --color--green-800: #00d250;
    --_spacing---padding-margin--space-xxl: 80px;
    --_spacing---border-radius--radius-sm: 8px;
    --color--black-200: #e3e3e3;
    --color--gray-500: #27272780;
    --color--gray-700: #272727b3;
    --color--white-400: #fff6;
    --color--gray-150: #27272726;
    --color--sky-blue-800: #0c6ad5;
    --color--black-50: #f9f9f9;
    --color--green-300: #f4f7f3;
    --_spacing---padding-margin--space-xl: 60px;
    --_typography---paragraph-font-size--large-text: 20px;
    --_spacing---border-radius--radius-md: 12px;
    --_typography---paragraph-font-size--large-paragraph: 18px;
    --color--white-50: #ffffff0d;
    --color--white-250: #ffffff40;
    --color--dark-blue-950: #14161b;
    --color--gray-400: #27272766;
    --color--white-200: #fff3;
    --color--eminence-300: #f6f3f7;
    --_spacing---border-radius--radius-xl: 16px;
    --color--green-700: #58ca00;
    --color--cyan: #00caca;
    --color--gray-100: #2727271a;
    --_spacing---padding-margin--space-sm: 18px;
    --color--sky-blue-400: #e2f4fa;
    --color--green-400: #e2faea;
    --color--fair-pink-100: #f8e9e7;
    --color--gray-950: #101010;
    --color--sky-blue-100: #0cb7d51a;
    --color--pomegranate-100: #ff492c1a;
    --color--eminence-200: #691f7433;
    --color--cyan-100: #15c39a1a;
    --color--black-100: #efefef;
    --_typography---link-font-size--button: 16px;
    --color--green-500: #d7efdf;
    --color--green-200: #00ab4133;
    --color--green-100: #00ab411a;
    --color--dark-blue-900: #000a24;
    --color--dark-blue-600: #06194c;
    --color--sky-blue-900: #1f5874;
    --color--sky-blue-300: #dce9ee;
    --color--sky-blue-200: #1f627433;
    --color--eminence-900: #691f74;
    --color--eminence-500: #e2dcee;
    --color--eminence-400: #f5efff;
    --color--eminence-100: #691f741a;
    --color--sunset-orange: #eb6047;
    --color--sunset-orange-200: #eb604733;
    --color--pomegranate: #ff492c;
    --color--pomegranate-700: #ff492cb3;
    --color--pomegranate-200: #ff492c33;
    --color--pomegranate-40: #ff492c0a;
    --color--fair-pink-200: #f8e6e3;
    --_typography---font-weight--light: 300;
    --_typography---font-weight--semi-bold: 600;
    --_typography---font-weight--bold: 700;
    --color--dark-blue-700: #23272e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-grotesk);
  font-size: var(--_typography---paragraph-font-size--small-paragraph);
  background-color: var(--color--white);
  color: var(--color--black);
}

h1, h2, h3, h4 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3.2rem;

}

.grid {
  display: grid;
}

.section {
  padding-block: 2rem 1rem;
  margin-top: 2rem;
}


.main {
  overflow: hidden; /* For animation ScrollReveal */
}
.button-green {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 100px;
    background-color: var(--color--green-600);
    color: var(--color--elephant-950);
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}

.button-black {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 100px;
    background-color: var(--color--gray-900);
    color: var(--color--white-800);
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    border: none;
    font-weight: 500;
}



.button i {
    font-size: 25px;
}

/* ABOUT SECTION */
.top__Section{
    padding-top: 5rem;
    color: rgb(26, 21, 21);
}
.to__section__container{
    margin-inline:1.5rem ;
}
.top__section__grid{
    grid-template-columns: 1fr;
    gap: 1.8rem;
}
.top__section__content_left{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
}
.top__section__content_left h1{
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
}
.top__section__content_left p{
    font-size: var(--_typography---paragraph-font-size--paragraph);
    line-height: var(--_typography---line-height--large);
    font-weight: var(--_typography---font-weight--normal);
    margin-bottom: 0;
    color: var(--color--elephant-950);
    text-align: center;
    max-width: 80%;
}
.top__section__picture_right{
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;

}
.top__section__picture_right .about__main_pic{
    border-radius: 10px;
}

.about1, .about2{
    position: absolute;
    width: 80%;
    left: 10%;
    right: 10%;
}
.about1{
    bottom: 20%;
    border-radius: 10px;
    
}
.about2{
    bottom: 8%;
}
.abt_pictures__org img{
    width: 50%;
}

/* BANNER SECTION */
.abt_banner{
    margin-inline: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2rem;
}
.abt_banner div{
    text-align: center;
    color: var(--color--gray-800);;
}
.abt_pictures__org{
    display: flex;
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
    gap: 1rem;
}
.abt_pictures__org img{
    width: 25%;
}

/* REFILL SECTION */
.abt_refill__container{
    margin-inline: 1.5rem;
    
}
.abt_rc__heading{
    text-align: center;
    margin-bottom: 1.5rem;
}
.abt_rc__heading h2{
    font-size: 1.6rem;
    font-weight: 500;
}
.abt_refill__contents{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
}
.abt_content-3triple{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: .6rem;
}
.abt_content-3triple h1{
    color: var(--color--green-900);
    font-weight: 500;
    font-size: 1.2rem;
}
.abt_content-3triple h2{
    font-weight: 500;
    text-align: center;
}
.abt_content-3triple p{
    text-align: center;
    font-size:.9rem;
    max-width: 70%;
    color: var(--color--gray-800);
}

.review__1024{
    display: none;
}

/* TEAM MEMBERS */
.team__members{
    background-color: var(--color--black-50);
    padding-top: 2rem;
    margin-top: 2rem;
    padding-bottom: 2.5rem;
    
}
.team__members__container{
    margin-inline: 1.5rem;
}
.team__members__heading h1{
    text-align: center;
    font-weight: 500;
}

.team__grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
}
.grid_inside_grid{
    gap: 2rem;
    display: grid;
}
.team__card{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2rem;
}
.team__details{
    display: flex;
    flex-direction: column;
    row-gap: .4rem;
}
.team__details h2{
    font-size: 1.2rem;
    font-weight: 500;
}
.team__details p{
    font-weight: 400
}
.image__div .team__img{
    width: 100%;
    border-radius: 10px;
}
.image__div{
    position: relative;
}

.portfolio-overlay{
  position: absolute;
  visibility: hidden;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portfolio-overlay img{
    border-radius: 10px;
}

.dision__serp{
    display: none;
}

.image__div:hover .portfolio-overlay{
  top: 0;
  transition: 0.3s all ease;
  visibility: visible;
}

/* REVIEWS */
.abt_reviews__container{
    margin-inline:.8rem;
}
.abt__reviews__grid{
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
    row-gap: 2rem;
}
.abt__reviews__card{
    padding: 15px;
    background-color: var(--color--sky-blue-100);
    border-radius: 10px;
}
.abt_reviews__cards{
    grid-column-gap: 110px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    /* height: 100%; */
    padding: 16px 0px;
    display: flex;
}

.abt_review_subdata p{
    color: var(--color--white);
    font-weight: 300;
    font-size: 17px;
    line-height: 20px;
}
.abt_reviewer__profile{
    display: flex;
    column-gap: 1rem;
    color: var(--color--white);
}
.abt_reviewer__profile img{
    width: 40px;
    height: 40px;
}
.abt_review_subdata div{
    display: flex;
    justify-content:center;
    align-items: center;
    column-gap: 10px;
    margin-bottom: .5rem;
}
.abt_review_subdata div h1{
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color--white);
}
.abt_review_subdata div p{
    color: var(--color--white-700);
    font-size: .95rem;
}
.tptyt{
    margin-bottom: 1rem;
}
.abt_review_subdata{
    display: flex;
    flex-direction: column;
    row-gap: .7rem;
}
.abt_review_subdata img{
    width: 30%;
}
.utawala{
    border-radius: 10px;
}
.pollinate{
    background-color: var(--color--pomegranate-100);
    padding: 15px;
    border-radius: 10px;
}
.Hourglass{
    background-color: var(--color--eminence-200);
    padding: 15px;
    border-radius: 10px;
}
.pictelAI{
    background-color: var(--color--cyan-100);
    padding: 15px;
    border-radius: 10px;
}

.middle__pic{
    display: none;
}

.right__pic{
    display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays */
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }
.delay-6 { transition-delay: 1.2s; }
.delay-7 { transition-delay: 1.4s; }
.delay-8 { transition-delay: 1.6s; }
.delay-9 { transition-delay: 1.8s; }


/* WEB BREAK POINT */

/* ----------------------------------------------------
   BASE — no media query needed
   ---------------------------------------------------- */

/* Very Small Phones — 320px */
@media (min-width: 320px) {
  .button-green{
    max-width: max-content;
  }

  .abt_banner div{
    font-weight: 500;
    font-size: 14px;
  }


.abt_content-3triple h2 {
    font-weight: 500;
    font-size: 1rem;
}
.abt_review_subdata div p {
    max-width: 50%;
    font-size: 1rem;
}
.abt_review_subdata div {
    display: flex;
    justify-content: left;
    align-items: center;
    column-gap: 10px;
    margin-bottom: .5rem;
}
.about1{
    width: 50%;
    left: 20%;
    bottom: -2%;
}

.abt_rc__heading h2 {
    font-size: 1.3rem;
    max-width: 80%;
}
.abt_rc__heading{
    display: flex;
    justify-content: center;
    align-items: center;
}
.top__section__content_left{
    margin-bottom: 2rem;
}
}

/* Small Phones — 375px */
@media (min-width: 375px) {
.reviews__heading p {
 font-size: 1rem;
}
}

/* Medium Phones — 414px (iPhone Plus) */
@media (min-width: 414px) {
        .abt_refill__contents {
    grid-template-columns: repeat(2, 1fr);
}
}

/* Large Phones — 480px */
@media (min-width: 480px) {
    .middle__pic{
    display: block;
}
.pictures__grid{
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    column-gap: 1rem;
}
.about2{
    position: absolute;
    top: -5%;
}
.top__section__content_left h1 {
   margin-top: 2rem;
}
.top__section__content_left p{
   font-size: 1.1rem;
   font-weight: 500;
}
.top__section__content_left h1{
    margin-inline: 1.3rem;
    padding-top: 1.5rem;
}
.abt_rc__heading h2 {
        font-size: 1.8rem;
    }

    .abt_content-3triple h1 {
    font-size: 1.5rem;
}

.abt_content-3triple h2 {
        font-size: 1.3rem;
    }

.abt_content-3triple p {
    font-size: .9rem;
}

.team__members__heading h1 {
    font-size: 1.5rem;
}
}

/* Tablets Portrait — 600px (Android) */
@media (min-width: 600px) {
.top__section__content_left{
    margin-bottom: 1rem;
}
.abt_banner div {
    font-weight: 500;
    font-size: 17px;
}

.about1 {
    width: 70%;
    left: 15%;
    bottom: 1%;
}

.top__section__content_left h1 {
font-size: 2.5rem;
}

.top__section__content_left p {
    font-size: 1.3rem;
}

.abt_content-3triple h1 {
    font-size: 2.3rem;
}
.abt_content-3triple h2 {
    font-size: 1.4rem;
}
.reach__more-container p {
    max-width: 70%;
}

.reviews__heading h1 {
    max-width: 80%;
}
.reviews__heading p {
    font-size: 1.2rem;
    max-width: 80%;
}

.reviews__heading{
    align-items: center;
}
.abt_review_subdata div p {
    max-width: 28%;
}
.abt_review_subdata p {
line-height: 24px;
max-width: 70%;
}
.team__members__heading h1 {
    font-size: 2.1rem;
}

/* Large Phones / Small Tablets — 640px */
@media (min-width: 640px) {
    .abt_pictures__org img {
    width: 20%;
}
}

/* Tablets Portrait — 720px */
@media (min-width: 720px) {
.top__section__content_left h1 {
    font-size: 2.8rem;
    max-width: 80%;
}
.button-green{
    font-weight: 700;
}

.abt_pictures__org img {
width: 20%;
}

.abt_banner div {
    font-weight: 500;
    font-size: 19px;
}
.abt_content-3triple p {
        font-size: 1.2rem;
    }
.abt_rc__heading h2 {
        font-size: 2rem;
    }
}

/* Tablets Landscape — 768px */
@media (min-width: 768px) {
    .right__pic{
        display: block;
    }

    .pictures__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team__grid {
    grid-template-columns: repeat(3, 1fr);
}
.abt__reviews__card{
    display: flex;
    column-gap: 1.3rem;
}
.imgx__div{
    flex: 1;
}
.abt_reviews__cards{
    flex: 1;
}
.abt__reviews__card .abt_review_subdata div p {
    max-width: 50%;
}

.grid_inside_grid{
    grid-template-columns: repeat(2, 1fr);
}
.grid_inside_grid .abt_review_subdata div p {
    max-width: 50%;
}


}
}
/* Large Tablets — 820px (iPad Air) */
@media (min-width: 820px) {
    .top__section__content_left h1 {
        font-size: 3.2rem;
    }

    .abt_rc__heading h2 {
        font-size: 2.5rem;
    }

    .team__members__heading h1 {
    font-size: 2.5rem;
}
}

/* iPad Pro 11 — 834px */
@media (min-width: 834px) {
    .abt_pictures__org img {
        width: 18%;
    }

    .grid_inside_grid {
    gap: 1.2rem;
}
}

/* iPad Pro 12.9 Portrait — 900px */
@media (min-width: 900px) {
    .team__grid{
        margin-inline: 2rem;
    }

    .reach__more-container h1 {
       max-width: 70%;
    }

    .abt_review_subdata p {
        max-width: 90%;
        font-size: 19px;
        line-height: 26px;
    }
    .abt__reviews__grid{
        padding-bottom: 3rem;
    }
}

/* Small Laptops — 1024px */
@media (min-width: 1024px) {
.abt_pictures__org img {
    width: 15%;
}
.abt_banner div {
    font-size: 22px;
}
.ciov{
    display: none;
}
    /* .reach__more{
        display: flex;
        justify-content: center;
        align-items: center;
    } */

.dision__serp .reach__more_heading {
    align-items: center;
}
.dision__serp{
    display: block;
    padding-bottom: 3rem;
}
.dision__serp .reach__more-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dision__serp  .reach__more-container h1 {
    max-width: 70%;
    text-align: center;
}
.abt_pictures__org img{
    width: 10%;
}
.abt_pictures__org{
    gap: 2.5rem;
}
.dision__serp .reach__more-container p {
    max-width: 70%;
    text-align: center;
}
.abt_refill__contents {
grid-template-columns: repeat(4, 1fr);
column-gap: 1rem;
}
.abt_content-3triple {
    align-items: start;
}
.abt_content-3triple h1 {
text-align: left;
}

.abt_content-3triple p {
    text-align: start;
    max-width: 100%;
}
.team__grid {
    margin-inline: 3rem;
}
.hide{
    display: none;
}
.review_min_width{
    display: none;
}
.review__1024{
    display: block;
}
.abt__reviews__grid {
grid-template-columns: repeat(2, 1fr);
column-gap: 1rem;
row-gap: 1rem;
margin-inline: 1rem;
}
.abt_review_subdata div p {
    max-width: 40%;
}

.abt__reviews__card .abt_review_subdata div p {
    max-width: 80%;
}

.abt__reviews__card .abt_profile__data{
    font-size: .8rem;
}
.imgx__div img{
    height: 100%;
    object-fit: cover;
}
 .pollinate .abt_review_subdata img, .Hourglass .abt_review_subdata img {
    width: 15%;
}
.right__pic .about1{
    border-radius: 100px;
    box-shadow: 2px  3px 10px rgba(255, 105, 180, 0.4);
}
}



/* Medium Laptops — 1152px */
@media (min-width: 1152px) {
    .top__section__content_left h1 {
        font-size: 3.7rem;
        font-weight: 600;
        max-width: 70%;
    }
    section {
        padding-inline: 2rem;
    }

    .top__section__content_left h1 {
        max-width: 73%;
    }

}

/* Large Laptops / Small Desktops — 1280px */
@media (min-width: 1280px) {
    .top__section__content_left h1 {
        max-width: 70%;
    }

    section{
        padding-inline: 3rem;
    }
}

/* Full HD width — 1366px */
@media (min-width: 1366px) {

}

/* Large Desktop — 1440px */
@media (min-width: 1440px) {
     section{
        padding-inline: 6rem;
    }
    .top__section__content_left h1 {
        max-width: 90%;
    }
}

/* WQHD — 1600px */
@media (min-width: 1600px) {
     section{
        padding-inline: 9rem;
    }

    .top__Section {
    padding-top: 9rem;
}
}

/* Ultra-Wide — 1920px (Full HD) */
@media (min-width: 1920px) {
    section{
        padding-inline: 12rem;
    }

    .top__Section{
        padding-top: 11rem;
    }

}

/* Quad HD — 2560px */
@media (min-width: 2560px) {
     section{
        padding-inline: 26rem;
    }

     .top__Section{
        padding-top: 17rem;
    }

}

/* 4K — 3840px */
@media (min-width: 3840px) {
    section{
        padding-inline: 40rem;
    }

     .top__Section{
        padding-top: 22rem;
    }
    .abt__reviews__grid, .cta-section, .team__grid, .abt_refill__section{
        margin-inline: 15rem;
    }

    .top__section__content_left h1 {
        font-size: 5rem;
        font-weight: 600;
        max-width: 90%;
    }

    .top__section__content_left p {
        font-size: 2.5rem;
    }

}
