@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Playfair+Display:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #efefef;
  scroll-behavior: smooth;
  font-weight: 400;
  opacity: 1;
  transition: all 1s;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
  width: 135px;
  margin-top: 5px;
}

nav ul.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav ul.nav-links li {
  padding: 0 10px;
}
nav ul.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 5px 0;
  transition: all 0.3s ease;
}
nav ul.nav-links li a:hover, nav ul.nav-links li a.active {
  color: #fff;
  border-bottom: 1px solid #FFB900;
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../images/pivika.jpg") no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero h2,
.hero p {
  position: relative;
  z-index: 2;
}
.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  letter-spacing: 0.07rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.tagline-section {
  text-align: center;
  padding: 20px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}
.tagline-section .tagline-content h3 {
  font-size: 2rem;
  color: #2C2C2C;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.tagline-section .tagline-content p {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin: 0 auto;
  max-width: 800px;
}

.section-heading {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.section-heading h2 {
  font-size: 2.5rem;
  color: #2C2C2C;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02rem;
  margin-bottom: 10px;
}
.section-heading hr {
  width: 100px;
  height: 3px;
  background-color: #FFB900;
  border: none;
  margin: 0 auto;
}
.section-heading p {
  margin-top: 20px;
  color: #2C2C2C;
  font-size: 1.1rem;
}

section {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 50px 20px;
}

.pillars-area .pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1200px;
}
.pillars-area .pillars :nth-child(2) .pillar-content, .pillars-area .pillars :nth-child(3) .pillar-content {
  width: 85%;
  margin: 0 auto;
}
.pillars-area .pillars .pillar-item {
  flex: 1 1 calc(33.33% - 40px);
  max-width: 350px;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 164, 239, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillars-area .pillars .pillar-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.pillars-area .pillars .pillar-item .pillar-icon {
  margin-bottom: 15px;
}
.pillars-area .pillars .pillar-item .pillar-icon img {
  width: 150px;
  height: auto;
}
.pillars-area .pillars .pillar-item .pillar-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  color: #2C2C2C;
  margin-bottom: 10px;
}
.pillars-area .pillars .pillar-item .pillar-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #2C2C2C;
}

.ventures-area .ventures {
  display: flex;
  margin: 0 auto;
}
.ventures-area .ventures .venture-item {
  flex: 1;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #efefef;
}
.ventures-area .ventures .venture-item .venture-image {
  flex: 0 0 175px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.ventures-area .ventures .venture-item .venture-image img {
  max-width: 85%;
  height: auto;
}
.ventures-area .ventures .venture-item .venture-content {
  flex: 1;
  padding: 20px;
  background-color: #00A4EF;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 203px;
}
.ventures-area .ventures .venture-item .venture-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  margin-bottom: 10px;
  line-height: 2rem;
}
.ventures-area .ventures .venture-item .venture-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.ventures-area .ventures .venture-item .venture-content .arrow-link {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  color: #FFB900;
  display: inline-block;
  transition: color 0.3s ease;
}
.ventures-area .ventures .venture-item .venture-content .arrow-link:hover {
  color: #fff;
  transition: all 0.4s ease-in-out;
}

/* ===== Ventures Carousel ===== */
.ventures-swiper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 40px;
  /* space for pagination */
}
.ventures-swiper .ventures-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ventures-swiper .swiper-pagination-bullet {
  width: 26px;
  height: 6px;
  border-radius: 20px;
  background: #d8d8d8;
  opacity: 1;
  margin: 0 5px !important;
}
.ventures-swiper .swiper-pagination-bullet-active {
  background: #FFB900;
  width: 34px;
}
.ventures-swiper .venture-meta {
  margin-top: 10px;
}
.ventures-swiper .venture-label {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.7;
  letter-spacing: 0.07em;
  color: #6b6b6b;
}
.ventures-swiper .swiper-slide {
  background-color: #fff;
}

.impact-area .impact-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px auto 0;
  max-width: 1200px;
}
.impact-area .impact-card {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.impact-area .impact-card:hover {
  transform: translateY(-4px);
}
.impact-area .impact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.impact-area .impact-card-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  color: #fff;
}
.impact-area .impact-card-content .impact-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.impact-area .impact-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  margin-bottom: 10px;
}
.impact-area .impact-card-content .impact-text {
  position: relative;
  padding-left: 14px;
  margin-top: 10px;
  margin-left: 30px;
}
.impact-area .impact-card-content .impact-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.impact-area .impact-card-content .impact-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1px;
  height: 100%;
  background: #FFB900;
}
.impact-area .impact-card-content .arrow-area {
  float: right;
  margin-top: 50px;
}
.impact-area .impact-card-content .impact-card:hover {
  transform: translateX(6px);
  opacity: 1;
}

.arrow-area {
  text-align: right;
  line-height: 10px;
}
.arrow-area .arrow {
  font-size: 1.6rem;
  color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(6px);
  opacity: 1;
}

.contact {
  padding: 50px 20px;
  background: linear-gradient(90deg, #00A4EF 50%, #FFB900 25%, #2C2C2C 25%);
  color: #fff;
  text-align: center;
}
.contact .contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact .contact-container .section-heading h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 10px;
}
.contact .contact-container .section-heading hr {
  width: 80px;
  height: 3px;
  background-color: #fff;
  border: none;
  margin: 10px auto;
}
.contact .contact-container .section-heading p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 40px;
}
.contact .contact-container .contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.contact .contact-container .contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 600px;
}
.contact .contact-container .contact-details .contact-item .contact-icon {
  flex: 0 0 80px;
}
.contact .contact-container .contact-details .contact-item .contact-icon img {
  width: 80px;
  height: auto;
}
.contact .contact-container .contact-details .contact-item .contact-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #2C2C2C;
  margin-bottom: 5px;
}
.contact .contact-container .contact-details .contact-item .contact-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #2C2C2C;
}
.contact .contact-container .contact-details .contact-item .contact-content p a {
  font-size: 1rem;
  color: #FFB900;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.contact .contact-container .contact-details .contact-item .contact-content p a:hover {
  color: #00A4EF;
}

footer {
  background: #2C2C2C;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
footer p {
  font-size: 0.9rem;
}

/* RESPONSIVE CSS */
body.no-scroll {
  overflow: hidden;
}

nav .hamburger {
  display: none;
}

.hamburger .line {
  width: 25px;
  height: 1.5px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
  width: 15px;
}
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* LARGE SCREENS - 1  */
/* LARGE SCREENS - 2  */
/* LARGE SCREENS - 3  */
/*----------------------------- Small Laptop -------------------------------*/
/*----------------------------- Media 1024 -------------------------------*/
@media only screen and (max-width: 1100px) {
  .hero {
    height: 70vh;
  }
  .ventures-area .ventures .venture-item {
    align-items: stretch;
  }
  .impact-area .impact {
    gap: 20px;
  }
}
/*----------------------------- Media 768 TABLET -------------------------------*/
@media only screen and (max-width: 999px) {
  .hero {
    padding: 0 20px;
  }
  section {
    padding: 80px 20px 0;
  }
  .pillars-area .pillars {
    gap: 20px;
  }
  .ventures-area .ventures .venture-item {
    flex-direction: column;
  }
  .ventures-area .ventures .venture-item img {
    max-height: 75px;
  }
  .ventures-area .ventures .venture-item img.coming-soon {
    width: 200px;
  }
  .section-heading h2 {
    line-height: normal;
  }
  .impact-area {
    padding-bottom: 80px;
  }
  .impact-area .impact-editorial {
    grid-template-columns: 1fr;
  }
  .impact-area .impact-card {
    height: 360px;
  }
}
/*----------------------------- Media 480 mobile -1  -------------------------------*/
@media only screen and (max-width: 767px) {
  header.active {
    background: rgb(51, 51, 51);
  }
  header.active nav .hamburger {
    background: #2C2C2C;
  }
  header nav .hamburger {
    display: block;
    cursor: pointer;
  }
  header nav ul.nav-links {
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2C2C2C;
    transition: max-height 0.3s ease-out, visibility 1s ease-out;
  }
  header nav ul.nav-links.active {
    overflow: visible;
    visibility: visible;
    max-height: 300px;
    padding: 10px;
  }
  .section-heading {
    width: 100%;
  }
  .section-heading h2 {
    line-height: normal;
    font-size: 2.4rem;
  }
  .pillars-area .pillars {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .pillars-area .pillars .pillar-item {
    max-width: 100%;
  }
  .impact-area .impact {
    gap: 40px;
    flex-direction: column;
  }
  .impact-area .impact .impact-item {
    flex: auto;
    height: 300px;
    padding: 50px;
  }
}
/*----------------------------- Media 320 mobile -2  -------------------------------*/
@media only screen and (max-width: 479px) {
  .hero h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .section-heading h2 {
    font-size: 1.75rem;
    line-height: normal;
  }
  .section-heading p {
    font-size: 1rem;
  }
  .tagline-section .tagline-content h3 {
    font-size: 1.75rem;
    line-height: normal;
  }
  .tagline-section .tagline-content p {
    font-size: 1rem;
  }
  .contact .contact-container .section-heading h2 {
    font-size: 1.75rem;
    line-height: normal;
  }
  .contact .contact-container .section-heading p {
    font-size: 1rem;
  }
  .contact .contact-container .contact-details .contact-item .contact-icon {
    flex: 0 0 60px;
  }
  .contact .contact-container .contact-details .contact-item .contact-icon img {
    width: 60px;
  }
  .contact .contact-container .contact-details .contact-item .contact-content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0px;
    line-height: normal;
  }
  .ventures-area .ventures .venture-item .venture-content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
  }
  .pillars-area .pillars .pillar-item .pillar-content h3 {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
  }
}

/*# sourceMappingURL=style.css.map */
