@font-face {
  font-family: "inter";
  src: url(./Inter-VariableFont_opsz\wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}

body {
  overflow-x: hidden;
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Social Icons */
.example-2 {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
    transform: translateY(-3px);
}

.example-2 .icon-content a i {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

/* WhatsApp */
.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
    background-color: #25d366;
}

/* Instagram */
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
    background: linear-gradient(
        45deg,
        #405de6,
        #c135b4,
        #fd1f1f
    );
}

/* Facebook */
.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
    background-color: #1877f2;
}

/* Mobile Responsiveness */
/* Mobile Responsiveness - Hide on phone screens */
@media (max-width: 768px) {
    .example-2 {
        display: none;
    }
}

.hero {
  position: relative;
  min-height: 80vh;
  background-color: #02313d;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s ease-out;
  z-index: 99;
}

.image-container {
  height: 70vh;
  width: 90%;
  max-width: 1400px;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px auto -10%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 2;
  aspect-ratio: 16/9;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: scaleIn 1.2s ease-out 0.3s both;
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: left;
  max-width: 700px;
  opacity: 0;
  animation: fadeInLeft 1s ease-out 0.8s forwards;
}

.image-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 500;
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

nav {
  max-width: 1400px;
  width: 90%;
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  backdrop-filter: blur(0);
  z-index: 100;
  transition: all 0.3s ease;
  border-radius: 50px;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: none;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
}

.nav-buttons li {
  position: relative;
}

.nav-button,
.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 10px 16px;
  font-size: clamp(0.8rem, 1rem, 1rem);
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.nav-button::before,
.nav-btn::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: left 0.5s ease;
}

.nav-button:hover,
.nav-btn:hover,
.nav-button:focus,
.nav-btn:focus {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-button:hover::before,
.nav-btn:hover::before {
  left: 100%;
}

.menu-toggle {
  display: none;
}

.menu-toggle-label {
  display: none;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
}

.menu-toggle-label:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.menu-toggle-label span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  color: #02313d;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 10px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

/* Dropdown container */
.has-dropdown {
  position: relative;
}

/* Hidden by default */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #02313dd4;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(25px);
  z-index: 200;
}

/* Show dropdown on hover (desktop) */
.has-dropdown:hover .dropdown {
  display: flex;
}

/* Dropdown links */
.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.447);
  border-radius: 6px;
}

.section2-columns {
  padding: 80px 0;
  background-color: #343633;
  position: relative;
  overflow: hidden;
}

.columns-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

.image-column {
  position: relative;
  top: -10%;
  right: 30%;
  opacity: 0;
  animation: fadeInLeft 1s ease-out 0.5s forwards;
}

#building-animation {
  transform: scale(1.5);
}

.column-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  opacity: 0;
  cursor: grab;
  animation: fadeInRight 1s ease-out 0.7s forwards;
}

.text-column h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.text-column p {
  color: #ffffff;
  line-height: 1.6;
  max-width: 500px;
  transition: color 0.3s ease;
}

.ventures-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #00303b;
  margin-bottom: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #02313d, #3c413d);
  transition: width 0.8s ease-out 0.5s;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #00303b;
  transition: width 0.3s ease;
}

.ventures-section:hover .section-title::after {
  width: 100px;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.venture-card {
  border-radius: 30px;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: scaleIn 0.8s ease-out forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.venture-card:nth-child(1) {
  background-image: url("./Mask\ groupeat.png") !important;
  animation-delay: 0.2s;
}

.venture-card:nth-child(2) {
  background-image: url("./coffeemian.png");
  animation-delay: 0.4s;
}

.venture-card:nth-child(3) {
  background-image: url("./surf.png") !important;
  animation-delay: 0.6s;
}

.venture-card:nth-child(4) {
  background-image: url("./buldingOG.png");
  animation-delay: 0.8s;
}

/* Gradient overlay for better text readability */
.venture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Shimmer effect */
.venture-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 2;
}

.venture-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.venture-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 36, 44, 0.511) 0%,
    rgba(0, 36, 44, 0.507) 50%,
    rgba(0, 36, 44, 0.836) 100%
  );
}

.venture-card:hover::after {
  left: 100%;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  text-align: center;
}

.venture-card h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.venture-card:hover h3 {
  transform: scale(1.1);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.venture-card p {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.venture-card:hover p {
  transform: scale(1.1);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.explore-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: #00303b;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.explore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #02313d;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.explore-btn:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.explore-btn:hover::before {
  width: 300px;
  height: 300px;
}

.founder {
  position: relative;
  border-radius: 50px;
}

.section1,
.section2,
.section3 {
  position: sticky;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  padding: 0;
  transition: transform 0.3s ease;
}

.section1 {
  background-color: #02313d !important;
  z-index: 1;
  height: 60vh;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.legacy-rectangle {
  background: transparent;
  border-radius: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  height: auto;
  max-width: 1200px;
  width: 100%;
}

.divider {
  width: 1px;
  height: 120px;
  background: rgba(222, 198, 170, 0.5);
  margin: 0 clamp(20px, 3vw, 40px);
  flex-shrink: 0;
}

.legacy-heading {
  flex: 1;
}

.legacy-text {
  flex: 1;
  padding-left: 20px;
}

.heading-main,
.heading-sub {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 10px;
}

.legacy-paragraph {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #f0f5fa;
  font-weight: 300;
}

.legacy-rectangle::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  animation: float 15s ease-in-out infinite;
  z-index: 1;
}

.section2 {
  z-index: 2;
}

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

.section3 {
  background-color: #02313d !important;
  z-index: 3;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.founder-card {
  z-index: 4;
  background: transparent;
  border-radius: 0;
  padding: clamp(60px, 8vw, 100px);
  width: 100%;
  height: 80vh;
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  color: #f0f5fa;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  box-shadow: none;
  max-width: none;
  background-color: #00303b !important;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.8s ease;
}

.founder-card:hover::before {
  left: 100%;
}

.photo-wrapper {
  position: relative;
  flex: 0 0 clamp(200px, 25vw, 320px);
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-plate {
  position: absolute;
  top: 25px;
  left: 10px;
  width: clamp(180px, 20vw, 220px);
  height: clamp(280px, 30vw, 340px);
  background: linear-gradient(135deg, #0f4a6b, #1a5f7a);
  border-radius: 16px;
  z-index: 1;
  transition: all 0.6s ease;
}

.photo {
  position: relative;
  width: clamp(200px, 22vw, 260px);
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.photo-wrapper:hover .back-plate {
  transform: translateY(-10px) scale(1.05) rotate(-2deg);
  background: linear-gradient(135deg, #1a5f7a, #0f4a6b);
}

.photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo:hover img {
  transform: scale(1.1);
}

.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.founder-card .text-content,
.founder-card .photo-wrapper {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.founder-card .photo-wrapper {
  animation: fadeInLeft 1s ease-out 0.3s forwards;
}

.title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
  color: #dec6aa;
  opacity: 0;
  animation: fadeInRight 1s ease-out 0.7s forwards;
}

.title .highlight {
  display: block;
  position: relative;
  background: linear-gradient(45deg, #dec6aa, #f0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dec6aa, #f0e6d2);
  transition: width 0.8s ease-out;
}

.founder-card:hover .title .highlight::after {
  width: 100%;
}

.quote {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 100%;
  color: #e2e8f0;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
  transition: color 0.3s ease;
}

.founder-card:hover .quote {
  color: #f0f5fa;
}

.author {
  margin-top: 8px;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.2;
  color: #d4dbe9;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.author .name {
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.founder-card:hover .author .name {
  color: #dec6aa;
}

.author .role {
  font-style: italic;
  margin-top: 4px;
}
.role {
  font-weight: 400;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 968px) {
  .legacy-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .divider {
    width: 120px;
    height: 1px;
    margin: 0;
  }

  .legacy-heading,
  .legacy-text {
    padding: 0;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 40px);
  }

  .photo-wrapper {
    flex: none;
    align-self: center;
  }

  .back-plate {
    top: 15px;
    left: 5px;
  }
}

.whats-new-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #02313d;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  position: relative;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #02313d, #3c413d, #02313d);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.whats-new-section:hover .section-heading::after {
  width: 380px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  width: 100%;
  max-width: 380px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(2, 49, 61, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  animation: scaleIn 1s ease-out forwards;
  cursor: pointer;
}

.news-card:nth-child(1) {
  animation-delay: 0.3s;
}

.news-card:nth-child(2) {
  animation-delay: 0.5s;
}

.news-card:nth-child(3) {
  animation-delay: 0.7s;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(2, 49, 61, 0.8) 0,
    transparent 40%,
    transparent 60%,
    rgba(60, 65, 61, 0.6) 100%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.news-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.6s ease;
  z-index: 2;
}

.news-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 35px 70px rgba(2, 49, 61, 0.25), 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-card:hover::before {
  opacity: 1;
}

.news-card:hover::after {
  animation: shimmer 0.8s ease-in-out;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(2, 49, 61, 0.95) 0,
    rgba(2, 49, 61, 0.8) 50%,
    transparent 100%
  );
  color: #fff;
  z-index: 3;
  transition: all 0.6s ease;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.news-card:hover .card-title {
  transform: translateY(-3px);
  color: #fff;
}

.news-card:hover {
  opacity: 1;
  transform: translateY(0);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-btn::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: left 0.6s ease;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #02313d;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.read-more-btn:hover::before {
  left: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-icon {
  transform: translateX(3px);
}

.card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #02313d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 4;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

.news-card:hover .card-category {
  transform: translateY(0);
  opacity: 1;
}

.site-footer {
  background: #2f322f;
  color: #e6e4d8;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(222, 198, 170, 0.05) 0,
    transparent 70%
  );
  animation: float 12s ease-in-out infinite;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-block:nth-child(1) {
  animation-delay: 0.2s;
}

.footer-block:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-block:nth-child(3) {
  animation-delay: 0.6s;
}

.footer-block:nth-child(4) {
  animation-delay: 0.8s;
}

.newsletter {
  flex: 2;
  min-width: 300px;
}

.footer-title {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: #d9cfa8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d9cfa8, #e6dcc0);
  transition: width 0.6s ease;
}

.footer-block:hover .footer-title::after {
  width: 100%;
}

.footer-title.small {
  margin-top: 4px;
}

.subtext {
  font-size: 0.9rem;
  color: #d9d4c8;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-block:hover .subtext {
  color: #e6dcc0;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-form input:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscribe-form button {
  background: linear-gradient(135deg, #d7b988, #c9a876);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #1f2b34;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.subscribe-form 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: left 0.5s ease;
}

.subscribe-form button:hover {
  background: linear-gradient(135deg, #c9a876, #b99f6f);
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.subscribe-form button:hover::before {
  left: 100%;
}

.contact .contact-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.map-wrapper img {
  width: 320px;
  height: auto;
  border-radius: 15px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}

.info-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 8px;
}

.info-line:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.info-line .icon {
  width: 24px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.info-line:hover .icon {
  transform: scale(1.2);
}

.info-line .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-line .small {
  font-size: 0.75rem;
  color: #c8c5b7;
  margin-top: 4px;
  transition: color 0.3s ease;
}

.info-line:hover .small {
  color: #d9d4c8;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social {
  background: #3e3f3d;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e6e4d8;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social:hover {
  background: #575955;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.branding {
  gap: 10px;
  min-width: 250px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-placeholder img {
  width: 100px;
}

.signature {
  font-size: 0.9rem;
  color: #e6e4d8;
  font-style: normal;
  transition: color 0.3s ease;
}

.branding:hover .signature {
  color: #d9cfa8;
}

.tagline {
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 320px;
  margin: 8px 0 12px 40px;
  color: #d4d2c5;
  transition: all 0.3s ease;
}

.branding:hover .tagline {
  color: #e6dcc0;
  transform: translateX(5px);
}

.links {
  min-width: 180px;
}

.quick-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.links:hover .quick-title {
  color: #d9cfa8;
}

.quick-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.quick-list li {
  transition: transform 0.3s ease;
}

.quick-list li:hover {
  transform: scale(1.05);
}

.quick-list li a {
  color: #c8c5b7;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
}

.quick-list li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Add this to your CSS */
.social-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-icon {
  color: #d9cfa8;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #d9cfa8;
  color: #2f322f;
  transform: translateY(-3px);
}

.social-icon i {
  font-size: 16px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.section5 {
  padding: 60px 10px;
  position: relative;
  overflow: hidden;
}

.testimonial-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: #00242c;
  font-weight: 500;
}

.testimonial-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.testimonial-track {
  width: 100%;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.testimonial-carousel:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background-color: #757d6e;
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px 30px;
  width: 480px;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(226, 205, 179, 0.15);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
  background-color: #3c413d;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #fcde34;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #fff;
  font-style: italic;
  position: relative;
}

.client-info {
  border-top: 1px solid rgba(226, 205, 179, 0.2);
  padding-top: 20px;
}

.client-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.client-title {
  font-size: 14px;
  color: rgba(226, 205, 179, 0.8);
  margin: 0;
}

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

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

@media (max-width: 1600px) {
  .testimonial-container {
    max-width: 1150px;
  }
  .ventures-grid {
    max-width: 1150px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .venture-card {
    height: 350px;
    padding-top: 15px;
  }

  .venture-card h3 {
    font-size: 1.4rem; /* smaller heading */
  }

  .venture-card p {
    font-size: 0.95rem; /* smaller text */
    margin-bottom: 18px;
  }

  .venture-card:nth-child(1) .img img {
    margin-top: 40px;
    width: 200px; /* Restaurant */
  }

  .venture-card:nth-child(2) .img img {
    width: 200px; /* Coffee Shop */
  }

  .venture-card:nth-child(3) .img img {
    margin-top: 10px !important;
    width: 120px; /* Cafe */
  }

  .venture-card:nth-child(4) .img img {
    position: relative;
    left: 4%;
    margin-top: 40px !important;
    width: 260px; /* Estate */
  }
  .explore-btn {
    padding: 8px 20px; /* smaller button */
    font-size: 0.9rem;
  }
  .image-column {
    top: -4%;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 90px 0 0;
    min-height: 70vh;
  }

  .image-container {
    width: 95%;
    margin-bottom: -12%;
    border-radius: 15px;
  }

  .image-content {
    padding-right: 20px;
    margin: auto;
    text-align: center;
  }

  .image-content h1::after {
    display: none;
  }

  nav {
    padding: 10px 20px;
  }

  .menu-toggle-label {
    display: flex;
  }

  .menu-toggle:checked + .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked + .menu-toggle-label span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-toggle:checked + .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-buttons {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 220px;
    background-color: rgba(2, 49, 61, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 15px;
    flex-direction: column;
    gap: 10px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 100;
    animation: slideInDown 0.3s ease-out;
  }

  .nav-buttons.active {
    display: flex;
  }

  .nav-button,
  .nav-btn {
    width: 100%;
    text-align: left;
    justify-content: center;
  }

  .founder-card {
    flex-direction: column;
    padding: 50px 30px;
    gap: 40px;
  }

  .photo-wrapper {
    margin: 0 auto;
  }

  .text-content {
    text-align: center;
    align-items: center;
  }

  .title .highlight::after {
    width: 80%;
  }

  .quote {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section5 {
    padding: 40px 10px;
  }

  .testimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .testimonial-card {
    width: 350px;
    padding: 25px 20px;
  }

  .testimonial-carousel {
    gap: 15px;
  }
  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .venture-card {
    height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 280px;
    padding: 20px 15px;
  }

  .testimonial-title {
    font-size: 1.8rem;
  }

  .legacy-rectangle {
    padding: 40px 20px;
  }

  .founder-card {
    padding: 40px 20px;
    gap: 30px;
  }

  .photo-wrapper {
    min-width: 140px;
  }

  .back-plate {
    top: 10px;
    left: 2px;
  }

  .image-column {
    right: 40%;
  }

  #building-animation {
    transform: scale(2);
  }
  .role {
    padding-bottom: 10px;
  }

  .quick-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .explore-btn{
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0 0;
    min-height: 50vh;
  }

  .section2-columns,
  .container {
    padding: 10px;
  }

  .image-container {
    height: 60vh;
    aspect-ratio: 4/3;
    width: 98%;
    border-radius: 40px;
    margin-bottom: -10%;
  }

  .image-container img {
    object-fit: fill;
    border-radius: 10px;
  }

  .image-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .columns-wrapper {
    grid-template-columns: 1fr;
    /* Single column layout */
    grid-auto-flow: dense;
    /* Allows reordering */
  }

  .image-column {
    grid-row: 2;
    /* Moves image to second row */
    margin-bottom: 0;
    margin-top: 30px;
  }

  .text-column {
    grid-row: 1;
    /* Ensures text stays first */
  }

  .image-column,
  .text-column {
    padding: 0 20px;
  }

  .image-column {
    margin-bottom: 30px;
  }

  .column-img {
    max-height: 300px;
  }

  .venture-card {
    height: 450px;
  }

  .news-card {
    width: 400px;
    height: 450px;
  }

  .founder-card {
    padding: 40px 20px;
    gap: 30px;
  }

  .photo-wrapper {
    flex: 0 0 280px;
  }

  .back-plate {
    width: 200px;
    height: 300px;
  }

  .photo {
    width: 240px;
  }

  .card-content {
    padding: 10px;
  }

  .ventures-grid {
    padding: 20px;
  }

  .venture-card {
    height: 500px;
  }

  .img img {
    margin-left: 10px;
  }

  .legacy-rectangle {
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 30px);
  }

  .founder-card {
    padding: clamp(30px, 6vw, 40px) clamp(20px, 4vw, 30px);
    gap: 40px;
  }

  .photo-wrapper {
    min-width: 160px;
  }

  .title {
    text-align: center;
  }

  .title .highlight::after {
    display: none;
  }

  .read-more-btn {
    margin-bottom: 20px;
  }
}

@media (prefers-reduced-motion: no-preference) {

  .social:hover {
    animation: pulse 1.5s infinite;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}
