/* first section highlight */
.about-first-container {
    margin: 0 auto;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    animation: highlight 0.5s forwards;
    animation-delay: 1.5s;
    max-height: 100vh;
}

.colorPink {
    color: #F62681;
}

.about-first-heading {
    font-size: 78px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.about-first-content {
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    max-width: 70%;
    font-weight: 400;
}

.about-first-highlight,
.about-first-highlight-secondary {
    position: relative;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    display: inline;
    z-index: 1;
    color: #000;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left;
    transition: background-size 1.2s ease-in-out, color 1.2s ease-in-out;
}




/* Pink background fill */
.about-first-highlight {
    background-image: linear-gradient(to right, #ff1493 0%, #ff1493 100%);
    animation: fillHighlight 1.2s forwards;
    animation-delay: 0.5s;
}


.about-first-highlight-secondary {
    background-image: linear-gradient(to left, #ff1493 0%, #ff1493 100%);
    animation: fillHighlight 1.2s forwards;
    animation-delay: 1s;
}


/* Animate background expansion */
@keyframes fillHighlight {
    from {
        background-size: 0% 100%;
        color: #000;
    }

    to {
        background-size: 100% 100%;
        color: #fff;
    }
}


@media (max-width: 1024px) {
    .about-first-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-first-content {
        font-size: 24px;
        max-width: 90%;
    }

    .about-first-container {
        padding: 40px 15px;
    }
}

@media (max-width: 850px) {
    .about-first-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-first-content {
        font-size: 24px;
        max-width: 90%;
    }

    .about-first-container {
        padding: 40px 15px;
    }
}

@media (max-width: 500px) {
    .about-first-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-first-content {
        font-size: 18px;
        max-width: 100%;
    }

    .about-first-container {
        padding: 40px 15px;
    }
}


/* about second connt  */
.about-sec-container {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    font-family: 'Arial', sans-serif;
}

.about-sec-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.about-sec-navigation {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-sec-tab {
    font-size: 4rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    user-select: none;
    line-height: 1.1;
    font-weight: bold;
}


.about-sec-tab.about-sec-active {
    transform: scale(1.05);
    text-align: center;

    color: #7c3aed6e;
    background: linear-gradient(to bottom right, #CC00CB, #7200AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.about-sec-tab.about-sec-inactive {
    color: #7c3aed6e;
    transform: scale(0.95);
    text-align: center;
}

.about-sec-tab:hover {
    transform: scale(1.02);
}

.about-sec-content {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec-video {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    object-fit: cover;
}

.about-sec-content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec-content-item.about-sec-visible {
    opacity: 1;
}

.about-sec-circle {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec-text {
    color: white;
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
    width: 70%;
}

/* Medium screens (850px and below) */
@media (max-width: 850px) {
    .about-sec-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 2.5rem;
    }

    .about-sec-tab {
        font-size: 3rem;
    }

    .about-sec-content {
        height: 500px;
    }

    .about-sec-video {
        max-width: 500px;
        max-height: 500px;
    }

    .about-sec-circle {
        width: 500px;
        height: 500px;
    }

    .about-sec-text {
        font-size: 18px;
    }
}

/* Tablets and small screens (768px and below) */
@media (max-width: 768px) {
    .about-sec-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-sec-navigation {
        order: 2;
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }

    .about-sec-tab {
        font-size: 2.5rem;
    }

    .about-sec-content {
        order: 1;
        height: 500px;
    }

    .about-sec-video {
        max-width: 480px;
        max-height: 480px;
    }

    .about-sec-circle {
        width: 380px;
        height: 380px;
        padding: 2rem;
    }

    .about-sec-text {
        font-size: 1rem;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .about-sec-container {
        padding: 100px 20px;
    }

    .about-sec-navigation {
        gap: 2rem;
    }

    .about-sec-tab {
        font-size: 2rem;
    }

    .about-sec-video {
        max-width: 400px;
        max-height: 400px;
    }

    .about-sec-circle {
        width: 350px;
        height: 350px;
        padding: 1.5rem;
    }

    .about-sec-text {
        font-size: 0.9rem;
    }
}

/* Very small mobile devices (360px and below) */
@media (max-width: 360px) {
    .about-sec-tab {
        font-size: 1.7rem;
    }

    .about-sec-content {
        height: 350px;
    }

    .about-sec-video {
        max-width: 320px;
        max-height: 320px;
    }

    .about-sec-circle {
        width: 320px;
        height: 320px;
        padding: 1rem;
    }

    .about-sec-text {
        font-size: 0.8rem;
    }
}

/* Large screens adjustment for very wide displays */
@media (min-width: 1600px) {
    .about-sec-wrapper {
        max-width: 1400px;
    }

    .about-sec-content {
        height: 700px;
    }

    .about-sec-video {
        max-width: 700px;
        max-height: 700px;
    }

    .about-sec-circle {
        width: 700px;
        height: 700px;
    }

    .about-sec-text {
        font-size: 24px;
    }
}


/* Third section about us  */
/* .philosophy-section {
    background: #E91E63;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
} */
.philosophy-section {
    background: url("https://zestyy.in/wp-content/uploads/2025/09/Numbers-1.png") no-repeat top center;
    background-size: cover;
    /* ensures it scales properly */

    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}


.philosophy-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* gap: 4rem; */
    align-items: center;
    width: 100%;
}

.content-left {
    color: white;
    z-index: 2;
    /* max-width: 600px; */
    text-align: center;
}

.content-left h1 {
    font-size: 78px;
    font-weight: 600;
    /* color: #000000; */
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.content-left p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

.content-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.video-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
}

.video-placeholder img {
    width: 90%;
    height: auto;
}

@media (max-width:1290px) {
    .content-left h1 {
        font-size: 58px;
    }

    .content-left p {
        font-size: 24px;
    }
}


@media (max-width:1025px) {
    .philosophy-container {
        max-width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .content-left h1 {
        font-size: 48px;

    }

    .content-left p {
        font-size: 24px;
    }

    .video-placeholder img {
        width: 70%;
    }
}

@media (max-width: 850px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 60px;
    }

    .video-placeholder img {
        width: 80%;
    }

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

    .content-left h1 {
        font-size: 2.4rem;
    }

    .content-left p {
        font-size: 20px;
    }

    .philosophy-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-left h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .content-left p {
        font-size: 20px;
    }

    .video-placeholder img {
        width: 88%;
    }

    .philosophy-section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .content-left h1 {
        font-size: 36px;
    }

    .content-left p {
        font-size: 16px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* animate css  */

/* Split Section */
.split-section {
    position: relative;
    display: flex;
    height: 100vh;
    overflow: hidden;
    flex-wrap: wrap;
}

.left {
    width: 100%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}



.cta {
    background: linear-gradient(90deg, #ff0099, #ff5f6d);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.right {
    width: 50%;
    background: transparent;
}

/* Video positioned over entire split-section */
.video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    transform: translateX(60%);
}

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

/* Between 900px and 1026px */
@media (min-width: 900px) and (max-width: 1026px) {
  .video-wrapper video {
    object-fit: contain;
  }
  .video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    transform: translateX(80%);
}
}

/* Sticky scroll area */
.sticky-container {
    position: relative;
    height: 300vh;
}

.sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.next-section {
    background: #ffffff;
    color: #ff45ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    padding: 20px;
    text-align: center;
}

/* MOBILE video (disabled animation version) */
.video-mobile {
    display: none;
    width: 100%;
}

.video-mobile video {
    width: 100%;
    height: auto;
    display: block;
}

.nextSecAbout {
    margin-top: 300px;
}

/* -------- RESPONSIVE STYLES -------- */
@media (max-width: 1200px) {

    .left h1,
    .left h2 {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .left {
        width: 100%;
        padding: 60px 30px;
        align-items: center;
        text-align: center;
    }

    .left h1,
    .left h2 {
        font-size: 48px;
    }

    .left p {
        font-size: 18px;
        max-width: 100%;
    }

    .right {
        display: none;
    }
}

@media (max-width: 860px) {

    /* disable sticky animation area */
    .sticky-container {
        height: auto;
    }

    .sticky-inner {
        position: relative;
        height: auto;
    }

    .video-wrapper {
        display: none;
    }

    .video-mobile {
        display: block;
        margin: 0;
    }

    /* .split-section {
      height: auto;
    } */
    .nextSecAbout {
        margin-top: 30px;
    }

    .left h1,
    .left h2 {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .left {
        padding: 40px 20px;
    }

    .left h1,
    .left h2 {
        font-size: 44px;
        text-align: left;
    }

    .left p {
        font-size: 16px;
        text-align: left;
    }

    .cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .split-section {
        height: auto;
    }
}


/* Listing PAge Css start Here ========================= */

  .zesty-list-container {
      margin: 0 auto 40px;
    }
    
    .zesty-list-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .zesty-list-title {
      font-size: clamp(28px, 6vw, 64px);
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    
    .zesty-list-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: #666;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .zesty-list-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 40px;
      padding: 0 15px;
max-width: 90%;
margin: 0 auto;
    }
    
    .zesty-list-card {
      overflow: hidden;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .zesty-list-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }
    
    .zesty-list-image-container {
      position: relative;
      overflow: hidden;
      height: 200px;
    }
    
    .zesty-list-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius: 5px;
    }
    
    .zesty-list-card:hover .zesty-list-image {
      transform: scale(1.05);
    }
    
    .zesty-list-content {
      padding: 20px 0px;
      padding-left: 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .zesty-list-heading {
      font-size: clamp(0.875rem, 2.5vw, 1.125rem);
      margin: 0 0 12px;
      color: #222;
      line-height: 1.4;
      font-weight: 500;
      flex-grow: 1;
    }
    
    .zesty-list-date {
      font-size: clamp(0.7rem, 2vw, 0.75rem);
      margin: 0;
      color: #888;
      font-weight: 400;
    }
    
    .zesty-list-tag {
      display: inline-block;
      background: linear-gradient(135deg, #d946ef, #a855f7);
      color: white;
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 20px;
      margin-top: 15px;
      align-self: flex-start;
    }
    
    .zesty-list-load-more {
      text-align: center;
      margin-top: 30px;
    }
    
    .zesty-list-button {
      background: linear-gradient(135deg, #d946ef, #a855f7);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-family: Poppins, sans-serif;
      font-weight: 500;
      color: #fff;
      box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
      position: relative;
      overflow: hidden;
    }
    

    
    .zesty-list-button:active {
      transform: translateY(0);
    }
    
    .zesty-list-button:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }
    
    .zesty-list-button:hover:before {
      left: 100%;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .zesty-list-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 600px) {
      .zesty-list-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .zesty-list-image-container {
        height: 180px;
      }
    }

    .seeAllLink{
        color: #000;
        text-decoration: none;
    }

    .coonectWithUsCta{
        text-decoration: none;
    }