/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e03000;
  --text-color: white;
  --background-color: black;
  --light-color: #f1f0e8;
  --gray-color: #888;
  --spacing-sm: clamp(0.5rem, 1vw, 1rem);
  --spacing-md: clamp(1rem, 2vw, 2rem);
  --spacing-lg: clamp(2rem, 4vw, 4rem);
  --spacing-xl: clamp(3rem, 6vw, 6rem);
}
.fade-right-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 3s ease, transform 3s ease;
}

.fade-right-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-up-on-scroll-long {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 3s ease, transform 3s ease;
}

.fade-up-on-scroll-long.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left-on-scroll {
  opacity: 0;
  transform: translateX(40px); /* Start shifted to the right */
  transition: opacity 3s ease, transform 3s ease;
}

.fade-left-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px; /* Base font size */
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.08em;
}

p, a, li, button {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

/* Responsive containers */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Menu */
 .menu-container {
  position: relative;
  display: inline-block;
}

/* Menu icon */
.menu-icon {
     width: 49px;
    height: 47px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Bars inside menu icon */
.bar {
  width: 18px;
  height: 3px;
  background-color: #000;
  transition: 0.4s ease;
  position: absolute;
}

/* Initial positions */
.top-bar {
  transform: translateY(-6px);
}

.bottom-bar {
  transform: translateY(6px);
}

/* Animated open state */
.menu-icon.open .top-bar {
  transform: rotate(45deg);
}

.menu-icon.open .bottom-bar {
  transform: rotate(-45deg);
}
.menu-icon.open .middle-bar {
  transform: rotate(-45deg);
}

/* Dropdown menu */
.side-menu {
  position: absolute;
  top: 0; /* below the menu icon */
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 16px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  z-index: 9;
}

.side-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: black;
  text-align: center;
}

.side-menu li {
  margin: 10px 0;
  cursor: pointer;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  width: 100%;
}

.img-logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-right: var(--spacing-sm);
}

.menu-icon {
  font-size: 2rem;
  color: var(--text-color);
  background: white;
  color: black;
  padding: 0.625rem;
  border-radius: 10px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  height: calc(90vh - 75px);
  padding: var(--spacing-md);
  width: 100%;
}

.hero h1 {
  letter-spacing: -0.09em;
  margin-top: 0px;
  margin-bottom: 0;
  padding-top: 0;
  font-family: "Oswald";
  font-size: clamp(3rem, 10vw, 11.25rem);
  font-weight: 700;
  line-height: 0.88;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.highlighted-section {
  background-image: url('../img/person.webp');
  background-size: cover;
  background-position: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  color: var(--text-color);
  text-align: left;
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  height: clamp(500px, 100vh, 982px);
  width: 100%;
}

.highlighted-section h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Navigation bar */
.nav-bar {
  display: flex;
  justify-content: space-around;
  padding: var(--spacing-sm);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  grid-column-gap: var(--spacing-xl);
  grid-row-gap: var(--spacing-xl);
  flex-wrap: wrap;
  width: 100%;
}

.paragrap-p {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  margin-top: var(--spacing-lg);
}

/* Image Grid */
.image-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) var(--spacing-md);
  /* flex-wrap: wrap; */
  width: 100%;
}

.img-box {
  width: calc(33.33% - var(--spacing-sm));
  min-width: 280px;
  margin-bottom: var(--spacing-md);
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}

/* About Us Section */
.about-us {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--spacing-xl) var(--spacing-lg);
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  width: 100%;
}

.left {
  flex: 1 1 300px;
  max-width: 400px;
}

.para {
  letter-spacing: -0.08em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 0.8;
  font-family: "Oswald", sans-serif;
}

.para-four {
  letter-spacing: -0.08em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 0.99;
  font-family: "Oswald", sans-serif;
}

.btn-group {
  display: flex;
  margin-top: clamp(3rem, 5vw, 12.5rem);
  gap: var(--spacing-sm);
  transform: translate3d(0px, 101%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  flex-wrap: wrap;
}

.see-more,
.arrow-btn {
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--light-color);
  color: #000;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.arrow-btn {
  width: 10px;
  padding: 5px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.btn-group:hover .see-more:hover + .arrow-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.right {
  flex: 2 1 400px;
  max-width: 850px;
}

.right p {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Rotating Circle */
.scroll-circle-wrapper {
  position: relative;
  height: min(541px, 50vw);
  margin: 90px 80px;
  overflow: visible; /* Make sure overflow doesn't clip the SVG */
}

.rotating-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rotating-svg path {
  stroke-dasharray: 1.3;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.5s ease-out;
}


  .rotating-svg.animate path {
    stroke-dashoffset: 0;
  }  

.circle-text {   
  position: absolute;   
  top: 50%;   
  left: 50%;   
  transform: translate(-50%, -50%);   
  text-align: center;   
  width: 110%; 
}  

.circle-text h5 {   
  font-size: clamp(1.5rem, 4vw, 2.8rem);   
  margin: 0;   
  line-height: 1.2;   
  opacity: 1;   
  font-family: "Manrope", sans-serif;   
  letter-spacing: -0.03em;   
  font-weight: 500;   
  text-decoration: none;   
  color: white; 
} 

.circle-text p {   
  font-size: clamp(0.875rem, 2vw, 1.2rem);   
  color: rgba(241, 240, 234, 0.7);   
  margin-top: 8px;
  margin-bottom: 0;   
  font-family: "Manrope", sans-serif;   
  letter-spacing: -0.03em;   
  font-weight: 400;   
  line-height: 1.2;   
  text-decoration: none; 
}

.image-grids {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  width: 100%;
}

.img-boxs {
  flex: 1 1 calc(50% - var(--spacing-sm));
  min-width: 280px;
}

.img-boxs img {
  width: 100%;
  /*height: auto;*/
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}
.start-2 {
    height: 600px;
}

/* Portfolio */
.right-Po{
  flex: 2 1 400px;
  max-width: 850px;
}

.right-Po p {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  margin-top: clamp(3rem, 8vw, 8.125rem);
  line-height: 1.2;
}

/* Hover Red Section */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.bg-img {
  position: absolute;
  width: min(300px, 50vw);
  height: auto;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.bg-img.left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.6s ease;
  display: none;
}

.bg-img.right {
  right: 5%;
  bottom: 60px;
  transform: translateY(0);
  transition: transform 0.6s ease;
  display: none;
}

@media (min-width: 768px) {
  .bg-img.left, .bg-img.right {
    display: block;
  }
}

.section:hover .bg-img.left {
  transform: translateY(calc(-50% - 70px));
}

.section:hover .bg-img.right {
  transform: translateY(-30px);
}

.center-text {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  text-align: center;
  margin-top: clamp(3rem, 10vw, 10.625rem);
  font-weight: 900;
  line-height: 1.1;
  width: 100%;
}

.mid-p {
  font-size: clamp(3rem, 10vw, 15.625rem);
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.08em;
  font-weight: 700;
  line-height: 1;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
  margin: 0;
  transition: background 0.4s ease;
  word-break: break-word;
}

.mid-p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary-color);
  z-index: -2;
  transition: height 0.4s ease;
}

.mid-p:hover::before {
  height: 100%;
}

.btn-groups {
  display: flex;
  margin-top: var(--spacing-xl);
  margin-left: auto;
  margin-right: auto;
  gap: var(--spacing-sm);
  justify-content: center;
  transform: translate3d(0px, 101%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  flex-wrap: wrap;
}

.see-mores,
.arrow-btns {
  padding: 0.8125rem var(--spacing-xl);
  font-size: 1.1rem;
  font-weight: 500;
  background-color: var(--light-color);
  color: #000;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.arrow-btns {
  width: 10px;
  padding: 5px 22px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.btn-groups:hover .see-mores:hover + .arrow-btns {
  background-color: var(--primary-color);
  color: var(--text-color);
}

/* Investment Approach */
.invest-us {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--spacing-xl) var(--spacing-lg);
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin-top: clamp(3rem, 10vw, 12.5rem);
  width: 100%;
}

.left-in {
  flex: 1 1 300px;
  max-width: 400px;
}

.para-our {
  letter-spacing: -0.08em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}

.right-in {
  flex: 2 1 400px;
  max-width: 850px;
}

.right-in p {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  margin-left: clamp(0rem, 1vw, 3.125rem);
  line-height: 1.2;
}

/* Venture */
.venture-container {
  padding: var(--spacing-lg);
  width: 100%;
}

.venture-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.venture-title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.tag {
  background-color: var(--primary-color);
  color: var(--text-color);
  font-size: 1rem;
  padding: 0.5625rem var(--spacing-sm);
  letter-spacing: 0em;
  font-weight: 100;
  text-transform: lowercase;
  margin-left: var(--spacing-sm);
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
}

.btn-last {
  display: flex;
  gap: var(--spacing-sm);
  transform: translate3d(0px, 101%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  flex-wrap: wrap;
}

.venture-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  width: 100%;
}

.venture-columnss {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  width: 100%;
}

.venture-card {
  background: transparent;
  padding: var(--spacing-md);
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .venture-card {
    max-width: 300px;
  }
}

.vp-para {
  font-size: clamp(1.75rem, 5vw, 2.8125rem);
  margin: var(--spacing-lg) 0;
  font-family: "Manrope", sans-serif;
}

.subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gray-color);
  margin-bottom: var(--spacing-sm);
  font-family: "Manrope", sans-serif;
}

.stage {
  color: var(--text-color);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5625rem);
}

.small {
  font-size: 1.25rem;
  color: red;
  font-family: "Manrope", sans-serif;
  margin-top: var(--spacing-sm);
}

.btn-last:hover .see-more:hover + .arrow-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
}

/* Get In Touch */
.contact-section {
  padding: var(--spacing-lg);
  width: 100%;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  width: 100%;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4.375rem);
  font-weight: bold;
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.contact-button {
  background-color: #fff;
  color: #000;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
}

.divider {
  border: 0;
  border-top: 1px solid #555;
  margin: var(--spacing-lg) 0;
  width: 100%;
}

.image-side {
  display: flex;
  justify-content: space-between;
  grid-column-gap: var(--spacing-sm);
  gap: var(--spacing-md);
  flex-wrap: wrap;
  width: 100%;
}

.image-side img {
  width: 100%;
  max-width: 100%;
  min-width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  flex: 1;
}

@media (min-width: 768px) {
  .image-side img {
    max-width: 32%;
  }
}

.image-carousel-wrapper {
  overflow-x: hidden;
  width: 100%;
  background: #000;
  padding: var(--spacing-md) 0;
}

.image-carousel {
  display: flex;
  width: max-content;
  animation: scroll-carousel 40s linear infinite;
  gap: var(--spacing-sm);
}

.submit-button {
  background-color: #222;
  color: var(--text-color);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: var(--spacing-sm);
}

.n-f {
  display: flex;
  width: 100%;
  max-width: 700px;
  
}

.text-field {
  width: 100%;
  font-size: clamp(1.25rem, 3vw, 2rem);
  padding: var(--spacing-sm) 0;
  border: none;
  border-bottom: 1px solid #d5d9de;
  background-color: transparent;
  color: var(--text-color);
  font-family: "Manrope", sans-serif;
  transition: border-color 0.3s ease;
}

.text-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.text-field:focus {
  outline: none;
  border-bottom: 2px solid #00FFFF;
}

.footer-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 var(--spacing-md) var(--spacing-md) 0;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

.footer-img1 {
  max-width: 100%;
  height: auto;
  aspect-ratio: 360 / 350;
}

.footer-img2 {
  max-width: 100%;
  height: auto;
  aspect-ratio: 410 / 220;
  margin-bottom: var(--spacing-lg);
  object-fit: cover;
}

.footer-img3 {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  aspect-ratio: 370 / 386;
  margin-bottom: 0;
}

.footer-img4 {
  object-fit: contain;
  max-width: 100%;
  height: auto;
  aspect-ratio: 269 / 330;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-img1 {
    max-width: 360px;
  }
  
  .footer-img2 {
    max-width: 410px;
  }
  
  .footer-img3 {
    max-width: 370px;
  }
  
  .footer-img4 {
    max-width: 269px;
  }
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeUpRight {
  0% {
    opacity: 0;
    transform: translate3d(80px, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

[data-aos="fade-custom"] {
  opacity: 0;
  transform: translate3d(80px, 40px, 0);
  transition-property: opacity, transform;
}

[data-aos="fade-custom"].aos-animate {
  animation: fadeUpRight 700ms ease-out forwards;
}

/* Footer */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid #333;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  width: 100%;
}

.newsletter-section {
  max-width: 100%;
  flex: 1 1 300px;
}

.newsletter-label {
  color: var(--gray-color);
  margin-bottom: var(--spacing-sm);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.thank-you {
  font-weight: 400;
  line-height: 1.5;
  margin-top: var(--spacing-xl);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.footer-menu {
  flex: 0 1 auto;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

@media (max-width: 767px) {
  .footer-menu ul {
    text-align: left;
  }
}

.footer-menu li {
 
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.footer-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: clamp(1rem, 2vw, 1.125rem);
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--gray-color);
}

.footer-logo-end {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  width: 100%;
}

.footer {
  background-color: white;
  color: black;
  font-family: "Manrope", sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
  height:230px;
}

.footer-curve {
  height: 90px;
  margin-bottom: -100px;
  background-color: #000000;
 border-radius: 0 0 35rem 35rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 98px auto;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.icon {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.icon i {
  font-size: 13px;
  color: #000;
}

.footer-address {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.footer-right {
  text-align: right;
  font-size: 14px;
}






.content {
  max-width: 600px;
}
/* Base styles with responsive units */
:root {
  --primary-font: "Manrope", sans-serif;
  --heading-font: "Oswald", sans-serif;
  --content-width: 90%;
  --max-width: 1200px;
}

/* Content section */
.content {
  max-width: min(var(--max-width), var(--content-width));
  /* margin: 0 auto; */
  text-align: left;
  padding: 0 1rem;
}

.content p {
  letter-spacing: -0.01em;
  max-width: min(660px, 100%);
  font-size: clamp(1rem, 3vw, 1.875rem);
  line-height: 120%;
  font-family: var(--primary-font);
}

.content .date-label {
  letter-spacing: -0.01em;
  max-width: min(660px, 100%);
  font-size: clamp(1rem, 3vw, 1.875rem);
  font-family: var(--primary-font);
  line-height: 120%;
  margin-top: 2.625rem;
}

.content .date {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 10vw, 9.375rem);
  font-weight: 700;
  line-height: 150%;
  font-family: var(--heading-font);
  color: white;
}

.last-ab-para {
  letter-spacing: -0.01em;
  max-width: min(660px, 100%);
  font-size: clamp(1.5rem, 5vw, 2.875rem);
  font-family: var(--primary-font);
  line-height: 120%;
  margin-top: 2rem;
}

.spa {
  color: gray;
}

/* Values section */
.values-section {
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 3.75rem);
  margin: auto;
  background-color: white;
  
}

.values-section h6 {
  letter-spacing: -0.09em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 7vw, 4.875rem);
  font-weight: 700;
  line-height: 80%;
  margin-bottom: 2rem;
  color: black;
}

.value-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  color: black;
  gap: 2rem;
}

.value-left {
  flex: 1 1 300px;
  letter-spacing: -.01em;
  max-width: 560px;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  line-height: 120%;
  color: black;
  font-family: var(--primary-font);
}

.value-left-t {
  flex: 1 1 300px;
  letter-spacing: -.01em;
  max-width: 340px;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  line-height: 120%;
  color: black;
  font-family: var(--primary-font);
}

.value-right {
  flex: 1 1 300px;
  letter-spacing: -.01em;
  max-width: 520px;
  font-size: clamp(1rem, 2.5vw, 1.625rem);
  line-height: 120%;
  color: black;
  font-family: var(--primary-font);
}

.value-right-t {
  flex: 1 1 300px;
  letter-spacing: -0.09em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: clamp(4rem, 15vw, 12.5rem);
  font-weight: 900;
  line-height: 80%;
  margin-bottom: 2rem;
  color: black;
  /* padding-left: clamp(1rem, 5vw, 6.25rem); */
}

/* Team sections */
.team-sections {
  position: relative;
  padding: clamp(3rem, 10vw, 11.25rem) clamp(1rem, 2vw, 1.875rem);
  width: 100%;
  margin: auto;
  background-color: white;
}

.team-section {
  position: relative;
  padding: clamp(2rem, 5vw, 4.375rem) clamp(1rem, 2vw, 1.875rem);
  width: 100%;
  margin: auto;
  background-color: white;
}

.bottom-right-note {
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: clamp(1rem, 2.5vw, 1.875rem);
  color: #100f0f;
  max-width: min(530px, 90%);
  font-family: var(--primary-font);
  padding: 1rem;
}

/* Team grid - responsive adjustments */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: left;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-name {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  font-weight: 500;
  text-transform: uppercase;
  color: #777;
  border-bottom: 1px solid #eee;
  font-family: var(--primary-font);
  width: 100%;
}

.member-name.highlight {
  color: #ff3b00;
}

.photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-top: clamp(2rem, 5vw, 4.375rem);
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gray color overlay */
.photo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080; /* gray tint */
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

/* On hover, fade out the overlay */
.photo-wrapper:hover::before {
  opacity: 0;
}
.curve-section {
  width: 100%;
  background-color: #000000; /* or your black color */
  border-radius: 3.125rem 0 3.125rem 0; /* top-left and bottom-right */
  overflow: hidden;
}

.logo-curve {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text-img {
  width: 100%;
}

.curve-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media queries for additional adjustments */
@media (max-width: 768px) {
  .value-item {
    flex-direction: column;
  }
  
  .value-right-t {
    padding-left: 0;
  }
  
  .bottom-right-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }
  .highlighted-section{
    height: 250px;
    width: 90%;
    margin-left: 20px;
    background-attachment: scroll;
    margin-top: -22px;

  }
  .stat-2{
    height: 230px!important;
  }
  .hero{
    height: calc(42vh - 134px);
  }
  .btn-group {
    margin-top: -13px;
    margin-left: 12px;
  }
  .right p{
            font-size: 18px;
        margin-top: 30px;
        color: #e4dede;
        margin-left: 12px;
  }
  .venture-title{
    margin-top: 30px;
     margin-left: 12px;
     font-size: 50px;

  }
  .btn-last{
     margin-top: -35px;
       margin-left: 12px;

  }
  .see-more{
    font-size: 22px;
  }
  .venture-card{
    margin-left: 12px;
    margin-top: 30px;
  }
  hr{
    margin-top: 35px;
  }
  .tag{
    padding-top: -20px!important;
  }
  .scroll-circle-wrapper {
            margin-top: 157px !important;
        height: 314px!important;
        margin: 11px!important;
  }
  .image-grids {
    width: 95%;
    gap: 12px;
    margin-top: 200px;
  }
  .start-1{
    margin-left: 10px;
  }
  .start-2{
    height: 350px!important;
  }
  .bg-img.left{
    display: block;
    width: 50px;
    left: 18%;
  }
  .bg-img.right{
    display: block;
    width: 50px;
    right: 10%;
  }
  .section{
    min-height: 60%;
    padding: 0px;
  }
  .mid-p{
    font-size: 70px;
    padding: 2px 14px;
  }
  .para{
    margin-top: 70px;
    margin-left: 12px;
  }
  .right-Po p{
    margin-top: 26px;
    font-size: 19px;
    color: #bababa;
    margin-left: 12px;
  }
  .para-four{
    margin-top: 160px;
    margin-left: 10px;
  }
  .paragrap-p{
    margin-top: 0px;
  }
  .about-us{
    padding: 0px;
  }
      .venture-card{
        padding: 0px;
         margin-top: 75px;
      }
      .vp-para {
        font-size: 35px;
      }
      .subtitle{
        font-size: 25px;
        color: #ffffff80;
      }
      .contact-title {
        margin-left: 12px;
      }
      .submit-button {
        font-size: 15px;
        font-weight: 200;
      }
      .stage {
        font-size: 16px;
      }
      .small{
        font-size: 16px;
      }
      .image-carousel{
        height: 250px;
      }
      .footer-content{
        margin-left: 60px;
      }
      .nav-bar{
        grid-column-gap:7px;
        grid-row-gap: 7px;
        padding: 28px;
        width: 95%;
      }
      .image-grid {
        padding: 49px 20px;
      }
      .about-left p {
        font-size: 76px!important;
      }
      .about-next-title{
        margin-top: 35px!important;
      }
      .about-right{
        margin-top: 20px!important;
        font-size: 28px!important;
      }
      .content{
        max-width: 775px!important;
      }
      
      .content p{
        font-size: 20px!important;
      }
      .section-ab{
        justify-content: center!important;
        padding: 0px!important;
        display: block!important;
         margin-top: 40px!important;
      }
      
      .content .date {
        font-size: 50px!important;
      }
      .content .date-label,.last-ab-para,.value-left{
        font-size: 20px!important;
      }
      .values-section h6{
        font-size: 52px!important;
      }
      .value-right,.value-left-t {
        font-size: 15px!important;
      }
      .value-right-t{
        font-size: 55px!important;
      }
      .footer{
          height:350px!important;
      }
      .footer-address{
          text-align:left!important;
      }
}

/* Ensure touch devices handle hover states properly */
@media (hover: none) {
  .photo-wrapper:active::before {
    opacity: 0;
  }
}

/* Add these fixes to your existing CSS */

/* Global overflow fix */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

/* Fix container sizing */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  box-sizing: border-box;
}

/* Fix image overflow issues */
img {
  max-width: 100%;
  height: auto;
}

/* Fix hero section text overflow */
.hero h1 {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Fix for flex items */
.venture-columns, 
.venture-columnss,
.image-side,
.btn-group,
.btn-groups,

.footer-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

/* Fix for flex items that need specific sizing */
.img-box,
.img-boxs,
.venture-card {
  box-sizing: border-box;
  width: 100%;
}

/* Update for mid-p class for better text handling */
.mid-p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}



/* Fix for image carousel */
.image-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.image-carousel {
  width: max-content;
  display: flex;
}

/* Fix for form fields */
.text-field {
  width: 100%;
  box-sizing: border-box;
}

.n-f {
  width: 100%;
  display: flex;
 
}

/* Fix for section with overflow issues */
.section {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Fix for side menu */
.side-menu {
  box-sizing: border-box;
  max-width: min(140px, 40vw);
}

/* Add responsive base for mobile devices */
@media (max-width: 480px) {
  .img-box, 
  .img-boxs {
    width: 100%;
    min-width: 33%;
  }
  .image-grid{
    flex-wrap: nowrap;
  }
  
  .venture-card {
    width: 100%;
    min-width: 100%;
  }
  
  .image-side img {
    width: 100%;
  }
  
  /* Fix additional padding/margin issues */
  .about-us,
  .invest-us,
  .venture-container,
  .contact-section {
    padding: var(--spacing-md);
  }
}

/* Fix for very large screens to maintain readability */
@media (min-width: 1800px) {
  body {
    font-size: 18px;
  }
  
  .container {
    max-width: 1600px;
  }
}



/* aboutpage */
 /* About page  */
 .about-next-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap; /* Makes it responsive */
}

.about-left p {
 letter-spacing: -0.09em;
    margin-top: 0px;
    margin-bottom: 0;
    padding-top: 0;
    font-family: "Oswald";
    font-size: 245px;
    font-weight: 700;
    line-height: 108%;
    opacity: 1;
    
    text-transform: uppercase;
}

.about-right {
  max-width: 460px;
 
 
  color: #ffffff;
    font-family: "Manrope", sans-serif;
        letter-spacing: -.01em;
    font-size: 35px;
    font-weight: 400;
    line-height: 120%;
   margin-top:290px;
}


.section-ab {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      min-height: 100vh;
      background-image: url('../img/about.webp');
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
      padding: 80px;
      box-sizing: border-box;
    }

    .content {
      max-width: 600px;
      text-align: left;
    }

    .content p {
    letter-spacing: -0.01em;
    max-width: 660px;
    font-size: 30px;
    line-height: 120%;
        font-family: "Manrope", sans-serif;
    }

    .content .date-label {
     letter-spacing: -0.01em;
    max-width: 660px;
    font-size: 30px;
     font-family: "Manrope", sans-serif;
    line-height: 120%;
     margin-top: 42px;
    }

    .content .date {
      letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    
    font-size: 150px;
    font-weight: 700;
    line-height: 150%;
     
      
    
      font-family: "Oswald", sans-serif;
    
      color: white;
    }
    .last-ab-para{
    letter-spacing: -0.01em;
    max-width: 660px;
    font-size: 46px;
     font-family: "Manrope", sans-serif;
    line-height: 120%;
      margin-top: 60px;
    }
    .spa{
      color: gray;
    }


    .values-section {
      padding: 80px 60px;
     
      margin: auto;
      background-color: white;
    }

    .values-section h6{
     letter-spacing: -0.09em;
    margin-top: 0;
    margin-bottom: 0;
     font-family: "Oswald", sans-serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 80%;
      margin-bottom: 60px;
      color: black;
    }

    .value-item {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 80px;
      color: black;
    }

    .value-left {
      flex: 1 1 45%;
      letter-spacing: -.01em;
    max-width: 560px;
    font-size: 30px;
    line-height: 120%;
      color: black;
        font-family: "Manrope", sans-serif;
    }
    .value-left-t{
        flex: 1 1 45%;
         letter-spacing: -.01em;
    max-width: 340px;
    font-size: 30px;
    line-height: 120%;
      color: black;
        font-family: "Manrope", sans-serif;
    }

    .value-right {
      flex: 1 1 45%;
      letter-spacing: -.01em;
   max-width: 520px;
    font-size: 26px;
    line-height: 120%;
      color: black;
        font-family: "Manrope", sans-serif;
        
    }
   .value-right-t{
   
 flex: 1 1 45%;
 letter-spacing: -0.09em;
    margin-top: 0;
    margin-bottom: 0;
     font-family: "Oswald", sans-serif;
    font-size: 200px;
    font-weight: 900;
    line-height: 80%;
      margin-bottom: 60px;
      color: black;
    }

