.page {
  max-width: 1450px;
  margin: auto;
  background: #fff;
  min-height: 100vh
}


.cover {
  position: relative;
  /* height: 455px; */
  overflow: hidden;
  background: #ebebeb;
}

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

.cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .03), rgba(0, 0, 0, .22))
}

.profile-area {
  position: relative;
  padding: 0 0px 30px 0;
  background: #fff
}

.profile-photo {
  position: absolute;
  left: 0px;
  top: -82px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  z-index: 3
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #e6e6e6;
}

.profile-info {
  padding-left: 210px;
  padding-top: 25px
}

.profile-info h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 7px
}

.followers {
  color: #65676b;
  font-size: 15px
}

.action-buttons {
  position: absolute;
  right: 0px;
  top: 25px;
  display: flex;
  gap: 10px
}

.action-buttons button {
  border: 0;
  background: #e4e6eb;
  color: #1c1e21;
  padding: 11px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer
}

.action-buttons .primary {
  background: #1877f2;
  color: #fff
}

.tabs {
  height: 65px;
  display: flex;
  align-items: stretch;
  gap: 3px;
  padding: 0 0px;
  border-top: 1px solid #ddd;
  background: #fff;
  overflow-x: auto
}

.tabs a {
  text-decoration: none;
  color: #65676b;
  font-size: 15px;
  font-weight: 600;
  padding: 0 22px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent
}

.tabs a.active {
  color: #bb3841;
  border-bottom-color: #bb3841
}

.content {
  background: #f0f2f5;
}

.content-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: 25px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .10)
}

.content-card:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: rgba(117, 77, 151, .07)
}

.content-card:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(236, 96, 145, .06)
}

.content-inner {
  position: relative;
  z-index: 2
}

.eyebrow {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 30px;
  background: #f1eaf6;
  color: #bb3841;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px
}

.content-card h2 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #13102e;
  font-family: 'Archivo', Roboto;
  font-size: 36px;
  line-height: 45px;
  text-transform: uppercase;
}

.content-card h2 span {
  color: #bb3841
}

.subtitle {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 500
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px
}

.categories span {
  padding: 8px 20px !important;
  border: 1px solid #ed899096;
  border-radius: 6px;
  color: #bb3841;
  background: #faf8fb;
  font-size: 13px;
  font-weight: 600
}

.intro {
  color: #666;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 15px
}

.intro strong {
  color: #292630
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 38px
}

.opportunity {
  padding: 25px;
  border-radius: 12px;
  background: #faf9f6;
  border: 1px solid #eee;
  transition: .3s
}

.opportunity:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.opportunity-number {
  font-size: 13px;
  font-weight: 700;
  color: #bb3841;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .7px
}

.opportunity h3 {
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #24232a
}

.opportunity p {
  color: #666;
  font-size: 14px;
  line-height: 1.7
}

.gallery-title {
  font-size: 25px;
  margin-bottom: 18px
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.gallery-item {
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s
}

.gallery-item:hover img {
  transform: scale(1.06)
}

.cta {
  margin-top: 35px;
  padding: 25px 30px;
  border-radius: 12px;
  background: #f4eef7;
  border: 1px solid #e5d9ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.cta h3 {
  font-size: 21px;
  margin-bottom: 5px
}

.cta p {
  color: #666;
  font-size: 14px
}

.cta a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 7px;
  background: #bb3841;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap
}

 /* =========================
       CARD
    ========================= */

    .pavilion-card {
      height: 100%;
      background: #fff;
      border: 1px solid #e7e7e7;
      border-radius: 18px;
      overflow: hidden;
      transition: all .35s ease;
    }

    .pavilion-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 18px 40px rgba(0,0,0,.10);
    }


    /* =========================
       IMAGE
    ========================= */

    .card-image1 {
      position: relative;
      width: 100%;
      height: 230px;
      overflow: hidden;
    }

    .card-image1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .pavilion-card:hover .card-image img {
      transform: scale(1.07);
    }

    .card-image1::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0,0,0,.45)
      );
    }


    /* =========================
       CONTENT
    ========================= */

    .card-content1 {
      padding: 25px 24px 28px;
    }

    .card-content1 h3 {
      margin: 0 0 12px;
      color: #171717;
      font-size: 20px;
      line-height: 1.35;
      font-weight: 700;
    }

    .card-content1 p {
      margin: 0;
      color: #707070;
      font-size: 14px;
      line-height: 1.7;
    }


.c1 {
  background: linear-gradient(135deg, #47317d, #7b5db8)
}

.c2 {
  background: linear-gradient(135deg, #b71f35, #ef5866)
}

.c3 {
  background: linear-gradient(135deg, #c54d10, #f69737)
}

.c4 {
  background: linear-gradient(135deg, #096d75, #28aeb0)
}

.c5 {
  background: linear-gradient(135deg, #164b8c, #4a8bd6)
}

.c6 {
  background: linear-gradient(135deg, #4a2b86, #8a63c8)
}

.c7 {
  background: linear-gradient(135deg, #a51c55, #e65d95)
}

.c8 {
  background: linear-gradient(135deg, #19733d, #57bc6d)
}

.c9 {
  background: linear-gradient(135deg, #9b6900, #eab72b)
}

.c10 {
  background: linear-gradient(135deg, #086c7c, #28aebd)
}

.c11 {
  background: linear-gradient(135deg, #193f78, #4878bd)
}

.c12 {
  background: linear-gradient(135deg, #b61e31, #f05864)
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-number1 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50px;
  padding: 8px 13px;
}

.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-size: 27px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.card-content {
  position: relative
}

.card-content h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 310px;
}

.explore-btn {
  width: 46px;
  height: 46px;
  margin-top: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111827;
  font-size: 15px;
  transition: .3s;
}

.pavilion-card:hover .explore-btn {
  transform: translateX(7px) rotate(-20deg);
}

.slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -30px;
}

.custom-pagination {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.custom-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  opacity: 1;
  background: #d5d8df;
}

.custom-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #bb3841;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}



.partner-section-int::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(215, 0, 45, 0.04);
  top: -150px;
  left: -150px;
}

.partner-section-int::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(215, 0, 45, 0.035);
  bottom: -150px;
  right: -120px;
}


/* =========================================
           SECTION TITLE
        ========================================= */

.section-title-int {
    font-weight: 700;
    margin-bottom: 8px;
    color: #13102e;
    font-family: 'Archivo', Roboto;
    font-size: 40px;
    line-height: 45px;
    text-transform: uppercase;
}

.section-title-int .subtitle-int {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #bb3841;
  margin-bottom: 10px;
}

.section-title-int h2 span {
  color: #bb3841;
}

.section-title-int p {
  color: #777;
  font-size: 15px;
}


.brand-grid-int {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}



.brand-card-int {
  height: 110px;
  background: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.brand-card-int::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #bb3841;
  transition: width 0.35s ease;
}

.brand-card-int:hover {
  transform: translateY(-6px);
  border-color: #ddd;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.brand-card-int:hover::before {
  width: 100%;
}

.brand-card-int img {
  width: auto;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  display: block;

  transition: transform 0.35s ease;
}

.brand-card-int:hover img {
  transform: scale(1.06);
}


        .testimonial-heading-int {
            text-align: center;
            margin-bottom: 40px;
        }

        .testimonial-heading-int span {
            display: block;
            color: #bb3841;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .testimonial-heading-int h2 {
            margin: 0;
            font-size: 34px;
            font-weight: 700;
            color: #222;
        }

        .testimonial-heading-int h2 strong {
            color: #bb3841;
        }


        /* ================================
           SWIPER
        ================================= */

        .testimonialSwiper-int {
            max-width: 850px;
            margin: auto;
            padding-bottom: 45px;
        }


        /* ================================
           CARD
        ================================= */

        .testimonial-card-int {
            background: #f7f7f7;
            border-radius: 12px;
            padding: 35px 40px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
        }


        /* Quote */

        .testimonial-quote-int {
            font-size: 35px;
            line-height: 1;
            color: #bb3841;
            margin-bottom: 15px;
        }


        /* Text */

        .testimonial-text-int {
            max-width: 700px;
            margin: 0 auto 25px;

            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }


        /* Stars */

        .testimonial-stars-int {
            margin-bottom: 20px;
        }

        .testimonial-stars-int i {
            color: #f5b400;
            font-size: 13px;
            margin: 0 2px;
        }


        /* User */

        .testimonial-user-int {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }


        .testimonial-avatar-int {
            width: 45px;
            height: 45px;

            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #fce7ed;
            color: #bb3841;

            font-weight: 700;
        }


        .testimonial-user-info-int {
            text-align: left;
        }

        .testimonial-user-info-int h4 {
            margin: 0 0 3px;

            font-size: 15px;
            font-weight: 700;

            color: #222;
        }

        .testimonial-user-info-int p {
            margin: 0;

            font-size: 12px;
            color: #888;
        }


        /* ================================
           PAGINATION
        ================================= */

        .testimonialSwiper-int
        .swiper-pagination {
            bottom: 5px;
        }

        .testimonialSwiper-int
        .swiper-pagination-bullet {
            width: 7px;
            height: 7px;

            background: #ccc;
            opacity: 1;
        }

        .testimonialSwiper-int
        .swiper-pagination-bullet-active {
            width: 22px;
            border-radius: 20px;
            background: #bb3841;
        }


        /* ================================
           MOBILE
        ================================= */

        @media (max-width: 767px) {

            .testimonial-section-int {
                padding: 50px 15px;
            }

            .testimonial-heading-int {
                margin-bottom: 30px;
            }

            .testimonial-heading-int h2 {
                font-size: 27px;
            }

            .testimonial-card-int {
                padding: 28px 20px;
            }

            .testimonial-text-int {
                font-size: 14px;
                line-height: 1.7;
            }

            .testimonial-quote-int {
                font-size: 30px;
            }

        }



/* =========================================
           RESPONSIVE
        ========================================= */

@media (max-width: 1199px) {

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

}


@media (max-width: 991px) {

  .partner-section-int {
    padding: 65px 0;
  }

  .section-title-int h2 {
    font-size: 32px;
  }

  .brand-grid-int {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .brand-card-int {
    height: 135px;
  }

  .brand-card-int img {
    height: 70px;
  }

}


@media (max-width: 767px) {

  .partner-section-int {
    padding: 50px 0;
  }

  .section-title-int {
    margin-bottom: 30px;
  }

  .section-title-int h2 {
    font-size: 27px;
  }

  .section-title-int p {
    font-size: 14px;
  }

  .brand-grid-int {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-card-int {
    height: 115px;
    padding: 15px;
    border-radius: 10px;
  }

  .brand-card-int img {
    height: 65px;
  }

}


@media (max-width: 400px) {

  .brand-grid-int {
    gap: 10px;
  }

  .brand-card-int {
    height: 105px;
  }

  .brand-card-int img {
    height: 58px;
  }

}


@media(max-width:768px) {
  .heading-row {
    display: block;
    margin-bottom: 30px
  }

  .heading-row p {
    margin-top: 16px
  }

  .pavilion-card {
    height: 380px
  }

  .slider-footer {
    margin-top: -38px
  }
}

@media(max-width:1000px) {
  /* .cover {
    height: 350px
  } */

  .profile-area {
    padding-left: 30px;
    padding-right: 30px
  }

  .profile-photo {
    left: 30px;
    width: 150px;
    height: 150px;
    top: -70px
  }

  .profile-info {
    padding-left: 175px
  }

  .profile-info h1 {
    font-size: 29px
  }

  .action-buttons {
    right: 30px
  }

  .tabs {
    padding: 0 00px
  }

  .content {
    padding: 25px 30px 50px
  }

  .content-card {
    padding: 35px 0;
  }

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

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

@media(max-width:650px) {
  /* .cover {
    height: 230px
  } */

  .profile-area {
    min-height: auto;
    padding: 75px 18px 20px;
    text-align: center
  }

  .profile-photo {
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 125px;
    top: -63px
  }

  .profile-info {
    padding: 0
  }

  .profile-info h1 {
    font-size: 25px
  }

  .followers {
    font-size: 14px
  }

  .action-buttons {
    position: static;
    justify-content: center;
    margin-top: 17px
  }

  .action-buttons button {
    padding: 10px 15px
  }

  .tabs {
    padding: 0 8px;
    height: 58px
  }

  .tabs a {
    padding: 0 14px;
    font-size: 14px
  }

  .content {
    padding: 15px
  }

  .content-card {
    padding: 25px 20px
  }

  .content-card h2 {
    font-size: 24px;
    line-height: 30px;

  }

  .subtitle {
    font-size: 16px
  }

  .intro {
    font-size: 14px;
    line-height: 1.75
  }

  .categories {
    gap: 7px
  }

  .categories span {
    font-size: 11px;
    padding: 8px 12px
  }

  .opportunity {
    padding: 5px
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-item {
    height: 140px
  }

  .cta {
    display: block
  }

  .cta a {
    margin-top: 18px
  }
}

@media(max-width:400px) {
  /* .cover {
    height: 200px
  } */

  .profile-info h1 {
    font-size: 22px
  }

  .action-buttons button {
    padding: 9px 12px;
    font-size: 12px
  }


  .gallery-item {
    height: 120px
  }
}