/* Investor/Partner Page Styles */

/* Hero Section - Updated */
.investor-hero {
  width: 80%;
  top: 1rem;
  background: url("../images/image.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0;
  text-align: center;
  position: relative;
  border-radius: 2rem;
}

.investor-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  border: 1rem solid transparent;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.investor-hero p {
  font-size: 24px;
  max-width: 750px;
  margin: 0 auto;
  color: #f0f0f0;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Partnership Section */
.partnership-section {
  font-size: 25px;
  padding: 60px 20px;
  background-color: #ffffff;
}

.partnership-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partnership-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.partnership-image:hover img {
  transform: scale(1.05);
}

.partnership-overlay {
  position: absolute;
  /* bottom: 0; */
  left: 0;
  right: 0;
  /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); */
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  background-color: #ff6b00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e65f00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.partnership-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.option-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #f1f1f1;
  color: #333;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  width: 240px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4rem;
}

.option-btn:hover,
.option-btn.active {
  background-color: #ff6b00;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.rating-stars {
  text-align: center;
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 30px;
}

/* Partner Statement Section - Enhanced */
.partner-statement {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-statement:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(90deg, #ff6b00, #ffaa00); */
}

.partner-statement h3 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.partner-statement h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff6b00;
}

.statement-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  position: relative;
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.statement-text:before {
  content: '"';
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 107, 0, 0.1);
  font-family: Georgia, serif;
}

.statement-text:after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 107, 0, 0.1);
  font-family: Georgia, serif;
}

.statement-text p {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.statement-text strong {
  color: #00ee00;
  font-weight: 700;
}

/* Add animation for the statement text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.statement-text p {
  animation: fadeInUp 0.8s ease-out forwards;
}

.statement-text p:nth-child(2) {
  animation-delay: 0.3s;
}

/* Customer Benefits Section - New Style */
.customer-benefits {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.customer-benefits:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: #ff6b00;
}

.section-title .highlight,
.benefit-content strong {
  color: #ff6b00;
  font-weight: 800;
}

.benefits-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0;
  position: relative;
}

.benefits-divider:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff6b00;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
  transition: all 0.3s ease;
}

.benefits-row:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-item {
  display: flex;
  width: calc(50% - 20px);
  position: relative;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: rgba(255, 107, 0, 0.05);
}

.benefit-icon {
  flex: 0 0 80px;
  height: 80px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.benefit-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ffaa00);
  opacity: 0.2;
  z-index: -1;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-item:hover .benefit-icon:before {
  opacity: 0.4;
}

.benefit-icon img {
  max-width: 45px;
  max-height: 45px;
  transition: all 0.3s ease;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.star1 {
  font-size: 3rem;
}

.star2 {
  font-size: 2rem;
}

.star3 {
  font-size: 1.2rem;
}

.benefit-content h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6b00;
}

.benefit-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.benefit-content strong {
  font-weight: 700;
}

/* Policy Section */
.policy-section {
  padding: 70px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.policy-section h3 {
  font-size: 32px;
  color: #ff6b00;
  margin-bottom: 40px;
  font-weight: 700;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.policy-grid .benefit-item {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 20px;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-grid .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #ff6b00;
  color: #fff;
}

.policy-grid .benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.policy-grid .benefit-item:hover h4 {
  color: #fff;
}

/* Partner/Global Trusted Partners Section */
.partner-global {
  margin-top: 40px;
  text-align: center;
}

.partner-global p {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.partner-global p:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff6b00;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.partner-logo {
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 15px;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* Policy Grid Section - Additional Styling */
.policy-grid .benefit-item {
  cursor: pointer;
}

/* Partner Statement Zigzag Section */
.statement-zigzag {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.statement-zigzag:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #ff6b00 15%,
    #ff6b00 85%,
    transparent
  );
  z-index: 0;
}

.zigzag-item {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  align-items: center;
}

.zigzag-item:last-child {
  margin-bottom: 0;
}

.zigzag-item.left {
  padding-right: calc(50% + 30px);
}

.zigzag-item.right {
  padding-left: calc(50% + 30px);
  flex-direction: row-reverse;
}

.zigzag-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ee00, #ffaa00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
  margin: 0 25px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.zigzag-item.left .zigzag-icon:after,
.zigzag-item.right .zigzag-icon:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #ff6b00;
  z-index: 0;
}

.zigzag-item.left .zigzag-icon:after {
  right: -30px;
  top: 50%;
}

.zigzag-item.right .zigzag-icon:after {
  left: -30px;
  top: 50%;
}

.zigzag-icon i {
  font-size: 32px;
  color: #fff;
}

.zigzag-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.zigzag-item:hover .zigzag-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.zigzag-content h4 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.zigzag-content h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6b00;
}

.zigzag-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.zigzag-content strong {
  color: #ff6b00;
  font-weight: 700;
}

/* Add animation for zigzag items */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.zigzag-item.left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.zigzag-item.right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.zigzag-item:nth-child(2) {
  animation-delay: 0.2s;
}

.zigzag-item:nth-child(3) {
  animation-delay: 0.4s;
}

.zigzag-item:nth-child(4) {
  animation-delay: 0.6s;
}

.zigzag-item:nth-child(5) {
  animation-delay: 0.8s;
}

/* Responsive adjustments for zigzag layout */
@media (max-width: 992px) {
  .zigzag-icon {
    width: 70px;
    height: 70px;
  }

  .zigzag-icon i {
    font-size: 28px;
  }

  .zigzag-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .statement-zigzag:before {
    left: 40px;
  }

  .zigzag-item.left,
  .zigzag-item.right {
    padding: 0 0 0 100px;
    flex-direction: row;
  }

  .zigzag-item.left .zigzag-icon:after,
  .zigzag-item.right .zigzag-icon:after {
    left: -30px;
    right: auto;
    top: 50%;
  }

  .zigzag-icon {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }

  .zigzag-icon i {
    font-size: 24px;
  }

  .zigzag-item.left,
  .zigzag-item.right {
    animation: fadeInLeft 0.6s ease-out forwards;
  }
}
