* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  body {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    /*height: 100vh;  Set height to viewport height */
    margin-top: 190px;
    /* Background Gradient */
    background: linear-gradient(to bottom, #3C0753, #030637); /* Adjust colors and direction */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: Keeps gradient fixed while scrolling */
    background-size: cover; /* Optional: Ensures gradient covers the viewport */
  }
  
  @font-face {
    font-family: 'tran sans';  /* Name for the font */
    src: url('home/assets/fonts/FontsFree-Net-Trend-Sans-W00-Five.ttf') format('ttf');
         
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'tomorrow';  /* Name for the font */
    src: url('home/assets/fonts/Tomorrow-Medium.ttf') format('ttf'),
         url('home/assets/fonts/Tomorrow-SemiBold.ttf') format('ttf');
         
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Georgiapro';  /* Name for the font */
    src: url('home/assets/fonts/GeorgiaPro-Bold.ttf') format('ttf'),
         url('home/assets/fonts/GeorgiaPro-Regular.ttf') format('ttf'),
         url('home/assets/fonts/GeorgiaPro-Semibold.ttf') format('ttf');
         
    font-weight: normal;
    font-style: normal;
  }
  
  
  /* Body style for centering the content */
  body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    min-height: 100vh; /* Ensure body takes full height */
  }
  
/* Carousel Styling */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.carousel-item {
  height: 100vh;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(52, 7, 80, 10), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.carousel-overlay h2,
.carousel-overlay p,
.carousel-overlay button {
  font-family: tomorrow,sans-serif;
  margin-right: 55px; /* Add margin-right for the heading, content, and button */
}

.carousel-overlay h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: right;
}

.carousel-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: right;
}

.carousel-overlay button {
  padding: 10px 20px;
  background-color: #EAD0F9;
  border: none;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.carousel-overlay button:hover {
  background-color: #5b3a6e;
  color: #ffffff;
}

.carousel-indicators {
  bottom: 20px;
}

/* Rectangle Section Below Carousel */
.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 50px 0; /* Add space around the rectangle */
}

.rectangle {
  border: 2px solid #EAD0F9; /* Rectangle with stroke */
  padding: 20px;
  width: 1032px;
  height: auto;
  box-sizing: border-box;
  background-color: transparent; /* No background */
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Initially moved down */
  animation: fadeInUp 1s forwards; /* Animation */
  animation-delay: 0.5s; /* Delay the animation */
}

.rectangle-img {
  width: 100px; /* Size of the image */
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px; /* Space below the image */
  opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Initially moved down */
    animation: fadeInUp 1s forwards; /* Animation */
    animation-delay: 0.9s; /* Delay slightly more */
}




.rectangle-heading {
  font-family: 'tomorrow', sans-serif;
  font-size: 18px;
  color: #EAD0F9;
  margin-bottom: 10px;
}

.rectangle-content {
  font-size: 16px;
  color: #EAD0F9;
  margin-bottom: 20px;
}

/* Animation for the rectangle */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(50px); /* Start from below */
  }
  100% {
      opacity: 1;
      transform: translateY(0); /* End at normal position */
  }
}

/* Second Rectangle Styling */
.second-rectangle {
  display: flex;
  flex-direction: row; /* Image on the left, content on the right */
  justify-content: space-between;
  align-items: center;
  width: 1032px;
  padding: 20px;
  background: linear-gradient(to right,#5F527D, #3C0753 ); /* Gradient background */
  margin-top: 30px; /* Space between the rectangles */
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start from below */
  animation: fadeInUp 1s forwards;
  animation-delay: 1s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for depth */
}

/* Image Section */
.rectangle-img-left {
  width: 45%; /* Takes half the width */
  height: auto;
  object-fit: contain;
  opacity: 0; /* Initially hidden */
  transform: translateX(-30px); /* Start from left */
  animation: fadeInFromLeft 1s forwards;
  animation-delay: 1.2s;
}

/* Content Section */
.rectangle-content-right {
  width: 50%;
  padding-left: 10px;
  text-align: left;
  opacity: 0; /* Initially hidden */
  transform: translateX(30px); /* Start from right */
  animation: fadeInFromRight 1s forwards;
  animation-delay: 1.5s;
}

.rectangle-content-right .rectangle-heading {
  font-family: 'tomorrow', sans-serif;
  font-size: 18px;
  color: #FFFFFF; /* Contrasts against gradient */
  margin-bottom: 15px;
  text-align: center;
}

.rectangle-content-right .rectangle-content {
  font-size: 16px;
  color: #FFFFFF; /* Contrasts against gradient */
  text-align: center;
  font-family: 'tomorrow', sans-serif;

}

/* Animation */
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px); /* Start from left */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at normal position */
  }
}

@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px); /* Start from right */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at normal position */
  }
}

/* Video Section */
.video-section {
  display: grid; /* Use grid layout */
  grid-template-columns: repeat(2, 1fr); /* Two videos per row */
  gap: 20px; /* Space between video containers */
  margin: 50px 20px; /* Add space around the section */
  justify-content: center; /* Center the grid within the container */
  max-width: 1000px; /* Limit the section's width */
  
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%; /* Full width within grid cell */
  height: 400px;
  aspect-ratio: 16 / 9; /* Maintain consistent aspect ratio */
  overflow: hidden;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Ensure videos fill the container without distortion */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    
    rgba(51, 15, 98, 0.3),
    rgba(182, 142, 167, 0)
  ); /* Gradient overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  
}

.video-heading {
  font-family: 'Georgiapro';
  font-size: 18px;
  margin-bottom: 10px;
}
.video-heading2 {
  font-family: 'Georgiapro';
  font-size: 16px;
  margin-bottom: 10px;
}

.video-content {
  font-family: 'tomorrow', sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
}

.video-button {
  padding: 10px 20px;
  background-color: #EAD0F9;
  border: none;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.video-button:hover {
  background-color: #5b3a6e;
  color: #ffffff;
}

/* Single Video Section */
.single-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 20px;
}

.single-video-container {
  position: relative;
  width: 1400px; /* Default width */
  height: 300px; /* Set fixed height */
  aspect-ratio: 16 / 9; /* Keeps the aspect ratio consistent */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.single-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Optional: to reduce video opacity */
}

.single-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(209, 174, 255, 0.552),
    rgba(182, 142, 167, 0)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

.single-video-heading {
  font-family: 'GeorgiaPro'; /* Replace with your font */
  font-size: 16px;
  margin-bottom: 10px;
}

.single-video-content {
  font-family: 'tomorrow', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}

.single-video-button {
  padding: 10px 20px;
  background-color: #EAD0F9;
  border: none;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.single-video-button:hover {
  background-color: #5b3a6e;
  color: #ffffff;
}

/* Text Section */
.text-section {
  padding: 40px 20px;
  text-align: center;
  margin: 0 20px;
}

.section-heading {
  font-family: 'GeorgiaPro', serif; /* Replace with your font */
  font-size: 36px;
  margin-bottom: 20px;
  color: #EAD0F9;
}

.section-paragraph {
  font-family: 'tomorrow', sans-serif;

  font-size: 18px;
  color: #EAD0F9;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.seven-star-container {
  text-align: center;
}

.seven-star-heading {
  font-family: 'GeorgiaPro', serif;
  font-size: 20px;
  margin-bottom: 40px;
  color: #EAD0F9;
}

/* Diamond Wrapper */
.diamond-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Row Styles */
.diamond-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.second-row {
  margin-top: 20px; /* Offset the second row to align as per the image */
}

/* Outer Diamond */
.outer-diamond {
  position: relative;
  width: 160px;
  height: 160px;
  border: 2px solid #fff;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner Diamond */
.inner-diamond {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(to bottom right, #370751, #370751b1);
  transform: rotate(-45deg); /* Counter-rotate to keep text upright */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack text and details */
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  /*box-shadow: 0 4px 10px rgba(255, 255, 255, 0.437); /* Add shadow effect */
}

.diamond-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Tomorrow', sans-serif;
  margin-bottom: 0; /* Remove unnecessary margins */
  text-align: center;
  position: absolute; /* Ensure alignment */
  top: 50%; /* Align vertically */
  left: 50%; /* Align horizontally */
  transform: translate(-50%, -50%); /* Center the text */
}

.diamond-details {
  font-family: 'Tomorrow', sans-serif;
  font-size: 12px;
  text-align: center;
  position: absolute; /* Ensure alignment */
  top: 50%; /* Align vertically */
  left: 50%; /* Align horizontally */
  transform: translate(-50%, -50%) rotate(-45deg); /* Center text and rotate it inside the diamond */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}


/* Hover Effects */
.inner-diamond:hover {
  background: linear-gradient(to bottom right, #53138f, #4b0082);
  transform: scale(1.1);
}

.inner-diamond:hover .diamond-details {
  opacity: 1; /* Show details on hover */
}

.inner-diamond:hover .diamond-text {
  opacity: 0; /* Hide heading on hover */
}

/* Styling for the "Our Latest Thinking" Section */
.latest-thinking-section {
  padding: 40px 80px;
  text-align: center;
}

.latest-thinking-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 140px;
  color: #EAD0F9;
  animation: fadeIn 1s ease-in-out;
  margin-top: 40px;
}

/* Centered Stroke Rectangle */
.center-rectangle {
  position: relative;
  width: 448px;  /* Image width */
  height: 265px;
  border: 3px solid #EAD0F9;  /* Stroke border for the rectangle */
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;  /* Ensure elements can overflow */
  animation: slideIn 1s ease-in-out;
}

/* Left Image (Partially outside top-left) */
.left-image {
  position: absolute;
  top: -90px;  /* Adjust image to overflow from top-left */
  left: -200px; /* Adjust image to overflow from top-left */
  padding: 0;
  z-index: 2;  /* Ensure the image appears above other elements */
  animation: imageAnimate 1s ease-in-out;
}

.left-image img {
  width: 448px;  /* Image width */
  height: 265px;
  border-radius: 8px;
}

/* Right Content Box (Partially outside bottom-right) */
.right-content-box {
  width: 448px;  /* Image width */
  height: 265px;
  position: absolute;
  bottom: -120px; /* Adjust content box to overflow from bottom-right */
  right: -200px; /* Adjust content box to overflow from bottom-right */
  padding: 20px;
  background-color: #EAD0F9;
  border-radius: 8px;
  box-sizing: border-box;
  z-index: 1; /* Ensure the content box is below the image */
  animation: contentBoxAnimate 1s ease-in-out;
  font-family: 'tomorrow', sans-serif;

}

.content-box-title {
  font-family: 'tomorrow', sans-serif;

  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: right;
  margin-top: 3px;
}

.content-box-description {
  font-size: 15px;
  color: #000000;
  text-align: right;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes imageAnimate {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes contentBoxAnimate {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* General Section Styling */
.latest-thinking-cards-section {
  padding: 20px;
}

.latest-thinking-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1000px;
  margin-top: 120px;

}

/* Individual Card Styling */
.latest-thinking-card {
  width: calc(33.33% - 20px); /* Three cards per row */
  box-sizing: border-box;
  text-align: center;
  
}

.latest-thinking-stroke-rectangle {
  position: relative;
  width: 300px;
  height: 100px;
  padding-top: 75%; /* Maintain aspect ratio */
  border: 2px solid #EAD0F9;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: visible; /* Allow the image to be outside */
  z-index: 1;
}

.latest-thinking-card-image {
  position: absolute;
  bottom: -40px; /* Image partially outside */
  transform: translateX(-50%);
  width: 200px; /* Image width relative to the rectangle */
  height: 200px;
  border-radius: 8px;

  /* Box Shadow for the Image */
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.latest-thinking-card-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #EAD0F9;
  font-family: 'tomorrow', sans-serif;

}

.latest-thinking-card-button {
  padding: 10px 20px ;
  font-size: 14px;
  color: #000000;
  background-color: #EAD0F9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'tomorrow', sans-serif;

}

.latest-thinking-card-button:hover {
  background-color: #d3b1e5;
}


.content {
  flex: 1;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
  
  .carousel-overlay h2 {
    font-size: 2.5rem;
}
.carousel-overlay p {
    font-size: 1rem;
}
.carousel-overlay button {
    font-size: 0.9rem;
}
.carousel-overlay h2,
.carousel-overlay p,
.carousel-overlay button {
  font-family: tomorrow,sans-serif;
    margin-right: 0px; /* Add margin-right for the heading, content, and button */
}

.rectangle {
  width: 750px;
}
.rectangle-img {
  width: 60px; /* Size of the image */
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px; /* Space below the image */
}

.rectangle-heading {
  font-size: 18px;
}
.rectangle-content {
  font-size: 14px;
}

.second-rectangle {
  width: 750px; /* Reduce width */
  flex-direction: column; /* Stack image and content vertically */
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom,#EAD0F9, #3C0753 ); /* Adjust gradient for vertical stack */
}
.rectangle-img-left,
.rectangle-content-right {
  width: 100%; /* Full width for both sections */
  transform: none;
  animation: fadeInUp 1s forwards;
  font-family: tomorrow,sans-serif;
}
.rectangle-content-right {
  padding-left: 0; /* Remove padding */
  margin-top: 20px;
  font-family: tomorrow,sans-serif;
}
.video-section {
  grid-template-columns: 1fr; /* One video per row for smaller screens */
  padding: 0 20px; /* Reduce padding for smaller screens */
}

.single-video-container {
  width: 900px;
  height: 300px; /* Adjust height */
}
.single-video-heading {
  font-size: 30px;
}
.single-video-content {
  font-size: 16px;
}
.single-video-button {
  font-size: 0.9rem;
}
.single-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
/* Text Section */
.text-section {
  padding: 40px 20px;
  text-align: center;
  margin: 0 20px;
}

.section-heading {
  font-family: 'GeorgiaPro', serif; /* Replace with your font */
  font-size: 26px;
  margin-bottom: 20px;
  color: #EAD0F9;
}

.outer-diamond {
  width: 140px;
  height: 140px;
}

.inner-diamond {
  width: 120px;
  height: 120px;
}

.diamond-text{
  font-size: 12px;
}
.diamond-details {
  font-size: 11px;
}
.latest-thinking-section {
  padding: 20px;
}

.latest-thinking-heading {
  margin-top: 40px;

  font-size: 20px;
}

.center-rectangle {
  width: 400px;
  height: 400px;
  padding: 30px;
}

.left-image {
  
  left: -120px;
  top: -120px;
}

.right-content-box {
  width: 400px;  /* Image width */
  height: 400px;
  bottom: -150px;
  right: -120px;
  z-index: 9999;
}
.left-image img {
  width: 400px;  /* Image width */
  height: 400px;
  border-radius: 8px;
}
}

@media (max-width: 768px) {
  
  .carousel-overlay h2 {
    font-size: 2rem;
}
.carousel-overlay p {
    font-size: 0.9rem;
}
.carousel-overlay button {
    font-size: 0.8rem;
}

.carousel-overlay h2,
.carousel-overlay p,
.carousel-overlay button {
  font-family: tomorrow,sans-serif;
    margin-right: 0px; /* Add margin-right for the heading, content, and button */
}

.rectangle {
  width: 620px;
}
.rectangle-img {
  width: 60px; /* Size of the image */
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px; /* Space below the image */
}

.rectangle-heading {
  font-size: 18px;
}
.rectangle-content {
  font-size: 12px;
}

.second-rectangle {
  padding: 15px;
}
.rectangle-img-left,
.rectangle-content-right {
  width: 60%; /* Full width for both sections */
  transform: none;
  animation: fadeInUp 1s forwards;
  font-family: tomorrow,sans-serif;
}
.rectangle-content-right .rectangle-heading {
  font-size: 20px; /* Reduce heading size */
}
.rectangle-content-right .rectangle-content {
  font-size: 14px; /* Reduce content size */
}

.video-container {
  width: 100%; /* Full width for smaller screens */
}

.single-video-container {
  width: 700px;
  height: 300px; /* Adjust height */
}
.single-video-heading {
  font-size: 18px;
}
.single-video-content {
  font-size: 14px;
}
.single-video-button {
  font-size: 0.8rem;
}
.single-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
/* Text Section */
.text-section {
  padding: 40px 20px;
  text-align: center;
  margin: 0 20px;
}

.section-heading {
  font-family: 'GeorgiaPro', serif; /* Replace with your font */
  font-size: 20px;
  margin-bottom: 20px;
  color: #EAD0F9;
}
/* Outer Diamond */
.outer-diamond {
  position: relative;
  width: 130px;
  height: 130px;
  border: 2px solid #fff;
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner Diamond */
.inner-diamond {
  position: absolute;
  width: 110px;
  height: 110px;
  background: linear-gradient(to bottom right, #370751, #370751b1);
  transform: rotate(-45deg); /* Counter-rotate to keep text upright */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack text and details */
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  /*box-shadow: 0 4px 10px rgba(255, 255, 255, 0.437); /* Add shadow effect */
}

.diamond-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Tomorrow', sans-serif;
  margin-bottom: 0; /* Remove unnecessary margins */
  text-align: center;
  position: absolute; /* Ensure alignment */
  top: 50%; /* Align vertically */
  left: 50%; /* Align horizontally */
  transform: translate(-50%, -50%); /* Center the text */
}

.diamond-details {
  font-family: 'Tomorrow', sans-serif;
  font-size: 10.5px;
  text-align: center;
  position: absolute; /* Ensure alignment */
  top: 50%; /* Align vertically */
  left: 50%; /* Align horizontally */
  transform: translate(-50%, -50%) rotate(-45deg); /* Center text and rotate it inside the diamond */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}


/* Hover Effects */
.inner-diamond:hover {
  background: linear-gradient(to bottom right, #53138f, #4b0082);
  transform: scale(1.1);
}

.inner-diamond:hover .diamond-details {
  opacity: 1; /* Show details on hover */
}

.inner-diamond:hover .diamond-text {
  opacity: 0; /* Hide heading on hover */
}

.latest-thinking-section {
  padding: 20px;
}

.latest-thinking-heading {
  margin-top: 40px;

  font-size: 20px;
}

.center-rectangle {
  width: 400px;
  height: 400px;
  padding: 30px;
}

.left-image {
  
  left: -120px;
  top: -120px;
}

.right-content-box {
  width: 400px;  /* Image width */
  height: 300px;
  bottom: -150px;
  right: -120px;
  z-index: 9999;
}
.left-image img {
  width: 400px;  /* Image width */
  height: 400px;
  border-radius: 8px;
}
.latest-thinking-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 600px;
  margin-top: 160px;

}

.latest-thinking-card {
  width: calc(50% - 30px); /* Two cards per row */
}

.latest-thinking-stroke-rectangle {
  position: relative;
  width: 300px;
  height: 50px;
  padding-top: 70%; /* Maintain aspect ratio */
  border: 2px solid #EAD0F9;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: visible; /* Allow the image to be outside */
  z-index: 1;
  margin-left: 0px;
}

.latest-thinking-card-image {
  position: absolute;
  bottom: -40px; /* Image partially outside */
  transform: translateX(-50%);
  width: 200px; /* Image width relative to the rectangle */
  height: 200px;
  border-radius: 8px;

  /* Box Shadow for the Image */
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.latest-thinking-card-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #EAD0F9;
}

.latest-thinking-card-button {
  padding: 10px 20px ;
  font-size: 14px;
  color: #000000;
  background-color: #EAD0F9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.latest-thinking-card-button:hover {
  background-color: #d3b1e5;
}


}

@media (max-width: 480px) {
  
  .carousel-overlay h2 {
    font-size: 1.5rem;
}
.carousel-overlay p {
    font-size: 0.8rem;
}
.carousel-overlay button {
    font-size: 0.7rem;
}
.carousel-overlay h2,
.carousel-overlay p,
.carousel-overlay button {
  font-family: tomorrow,sans-serif;
    margin-right: 0px; /* Add margin-right for the heading, content, and button */
}
.rectangle {
  width: 320px;
}
.rectangle-img {
  width: 60px; /* Size of the image */
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px; /* Space below the image */
}

.rectangle-heading {
  font-size: 16px;
}
.rectangle-content {
  font-size: 12px;
}

.second-rectangle {
  padding: 10px;
}
.rectangle-img-left,
.rectangle-content-right {
  width: 100%; /* Full width for both sections */
  transform: none;
  animation: fadeInUp 1s forwards;
  font-family: tomorrow,sans-serif;
}
.rectangle-content-right .rectangle-heading {
  font-size: 16px; /* Further reduce heading size */
}
.rectangle-content-right .rectangle-content {
  font-size: 12px; /* Further reduce content size */
}
.video-section {
  grid-template-columns: 1fr; /* One video per row for very small screens */
  padding: 0 10px; /* Further reduce padding for very small screens */
}

.video-heading {
  font-family: 'Georgiapro';
  font-size: 16px;
  margin-bottom: 10px;
}
.video-heading2 {
  font-family: 'Georgiapro';
  font-size: 16px;
  margin-bottom: 10px;
}

.video-content {
  font-family: 'tomorrow', sans-serif;
  font-size: 12px;
  margin-bottom: 15px;
}
.single-video-container {
  width: 60%;
  height: 350px; /* Adjust height */
}
.single-video-heading {
  font-size: 22px;
}
.single-video-content {
  font-size: 12px;
}
.single-video-button {
  font-size: 0.7rem;
}
.single-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
/* Text Section */
.text-section {
  padding: 20px 10px;
  text-align: center;
  margin: 0 20px;
}

.section-heading {
  font-family: 'GeorgiaPro', serif; /* Replace with your font */
  font-size: 16px;
  margin-bottom: 20px;
  color: #EAD0F9;
}



/* Diamond Wrapper */
.diamond-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
  width: 60%;  /* Ensure it takes the full width */
  margin-left: 20%;
}

/* Diamond Row */
.diamond-row {
  display: flex;
  justify-content: center; /* Center items */
  flex-wrap: wrap;
 
  width: 100%;
}

/* Each Diamond */
.diamond {
  margin-bottom: 20px;
  position: relative; /* Required for positioning inner elements */
}

/* Outer Diamond */
.outer-diamond {
  position: relative;
  width: 140px;
  height: 140px;
  border: 2px solid #fff;
  transform: rotate(45deg); /* Rotate the diamond */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* Maintain transparency */
}

/* Inner Diamond */
.inner-diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(to bottom right, #370751, #370751b1);
  transform: rotate(-45deg); /* Counter-rotate to keep text upright */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack text and details */
  color: #fff;
  text-align: center;
  padding: 10px; /* Add padding for spacing */
  box-sizing: border-box;
}

.diamond-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Tomorrow', sans-serif;
  margin-bottom: 5px;
}

.diamond-details {
  font-family: 'Tomorrow', sans-serif;
  font-size: 11px;
  text-align: center;
}
.latest-thinking-section {
  padding: 20px;
}

.latest-thinking-heading {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 16px;
}

.center-rectangle {
  width: 200px;
  height: 200px;
  padding: 10px;
  margin-top: 10px;

}

.left-image {
  
  left: -60px;
  top: -30px;
}

.right-content-box {
  width: 200px;  /* Image width */
  height: 200px;
  bottom: -80px;
  right: -60px;
  z-index: 9999;
  font-size: 14px;
  padding: 5px;

}
.left-image img {
  width: 200px;  /* Image width */
  height: 200px;
  border-radius: 8px;
}
.content-box-title {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.content-box-description {
  font-size: 10px;
  color: #000000;
  text-align: center;
}

.latest-thinking-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 600px;
  margin-top: 100px;

}

.latest-thinking-card {
  width: 100%; /* One card per row */
}

.latest-thinking-stroke-rectangle {
  position: relative;
  width: 200px;
  height: 50px;
  padding-top: 40%; /* Maintain aspect ratio */
  border: 2px solid #EAD0F9;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: visible; /* Allow the image to be outside */
  z-index: 1;
  margin-left: 90px;
}

.latest-thinking-card-image {
  position: absolute;
  bottom: -40px; /* Image partially outside */
  transform: translateX(-50%);
  width: 160px; /* Image width relative to the rectangle */
  height: 160px;
  border-radius: 8px;

  /* Box Shadow for the Image */
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.latest-thinking-card-title {
  font-size: 12px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 10px;
  color: #EAD0F9;
}

.latest-thinking-card-button {
  padding: 10px 20px ;
  font-size: 12px;
  color: #000000;
  background-color: #EAD0F9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.latest-thinking-card-button:hover {
  background-color: #d3b1e5;
}


}

  