* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', Arial, sans-serif;
  margin: 0;
  background-color: #fcfdff;
}

/* navbar */
.navbar {
  background-color: #fcfdff;
  padding:  0.5rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}

.navbar-icon img {
  cursor: pointer;
  width: auto;
  height: 85px;
}
@media (max-width :400px) {
  .navbar-icon img {
    height: 60px;
  }
}

.navbar-list {
  display: none;
  list-style: none;
  position: absolute;
  top: 105px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #000000, #333333);

  padding: 20px;
  
  text-align: center;
  
}
@media (max-width:400px) {
  .navbar-list {
    top: 81px;
    height: 100vh;
  }
}

.navbar-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-list li {
  margin: 10px 0;
}

.navbar-list a {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

.navbar-list a:hover {
  background-color: #ccc;
  border-radius: 5px;
}

.navbar-menu-icon {
  display: block;
  cursor: pointer;
  font-size: 24px;
  color: #000;
}

.navbar-menu-icon .menu-open {
  font-size: 20px;
}

.navbar-menu-icon .menu-close{
  font-size: 30px;
}

.navbar-list.active {
  display: block;
}

@media (min-width: 768px) {
  .navbar-list {
      display: block;
      position: static;
      background: none;
      height: auto;
      background-color: #fff;
       
  }

  .navbar-list ul {
      display: flex;
      gap: 20px;
  }
  .navbar-list a {
    color: #000;
  }

  .navbar-menu-icon {
      display: none;
  }
}

/* alternav */
.alternav {
  background-color: #ffffff;
  padding: 20px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  position: relative;
}

.alternav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

.alternav-icon img {
  height: 30px;
}

.alternav-menu-icon {
  display: none;
  cursor: pointer;
}

.alternav-list {
  display: flex;
}

.alternav-list ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.alternav-list li {
  cursor: pointer;
  padding: 5px 10px;
  transition: background-color 0.3s;
  color: #000000;
}

.alternav-list li:hover {
  background-color: #ccc;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .alternav-menu-icon {
      display: block;
  }

  .alternav-list {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 70px;
      left: 0;
      padding: 20px 0;
  }

  .alternav-list.active {
      display: flex;
  }

  .alternav-list ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .alternav-container {
      width: 95%;
  }

  .alternav-icon img {
      height: 30px;
  }

  .alternav-list li {
      font-size: 14px;
  }
}

/* home */
.home {
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  height: 89vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 2px;
}

.home-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.home-contents {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.home-img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
}

.home-title {
  font-size: 3rem;
  font-weight: 600;
  padding: 10px 0;
  color: #fff;
}

@media (max-width : 400px) {
  .home-title {
      font-size: 2rem;
  }
  .home-contents {
      padding: 0px;
  }
}

.home-para {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 10px 0;
  font-weight: 100;
}

.home-para span {
  color: #FFE417;
}
 
 

 


/* self-service */
.self-service { 
  width: 100%;
  margin: 0 auto;
height: 89vh;
display: flex;
justify-content: center;
align-items: center;
background-color:#eff6ff;
 margin-top: 1px;
}

.self-service-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.self-service-content {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.self-service-content h2 {
  font-size: 3rem;
  font-weight: 600;
  padding: 10px 0;
}
@media (max-width :400px){
  .self-service-content h2 {
    font-size: 2rem;
  }
}

.self-service-content p {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 400;
}

.self-service-content span {
  color: #FF7455;
}

.self-service-img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.self-service-img img {
  /* width: 100%; */
  max-width: 400px;
}
@media (max-width: 768px) {
  .home-img, .self-service-img {
    display: none;
  }
  .self-service-content , .home-contents {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-img, .self-service-img {
    display: flex;
  }
}

.pharama {
  width: 100%;
  margin: 0 auto;
  background: 
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url('../assert/pharma.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;  
  color: white;
  display: flex; 
  align-items: center;
height: 89vh;
padding: 2rem;
margin-top: 2px;
}

.pharama-container {
  
}
.pharama-container span {
  font-weight:normal;
  color: #e66a35;
}

.pharama p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pharama h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width :400px) {
  .pharama h1 {
    font-size: 2rem;
  }
}

.pharama p span {
  font-weight: bold;

}

/* carousel */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel-content {
  width: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.container1, .container2 , .container3 {
  width: 100%;
  /* 
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; */
  transition: opacity 1s ease-in-out;
}

/* Hide second container by default */
.container2 {
  display: none;
}
.container3 {
  display: none;
}

 
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #005bb5;
}


/* section2 */
.section2-head{
  width: 90%;
  text-align: center;
  margin: 0 auto;
  line-height: 2;
  margin-bottom: 1rem;
}
.section2{
  background-color: #000;
 width: 100%;
 margin: 0 auto;
}
.section2-container{
 padding: 2rem;
}

/* our-vision */
.our-vision {
  display: flex;
  flex-direction: column;
  align-items: center; 
  background-color: #000;
  padding-top: 20px;
}

.our-vision-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.our-vision-head-content {
  max-width: 600px;
}

.our-vision-head-content .vision-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;  
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.our-vision-head-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.our-vision-head-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.our-vision-head-img img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .our-vision {
    flex-direction: row;
    justify-content: space-between;
  }

  .our-vision-head {
    text-align: left;
    align-items: flex-start;
  }

  .our-vision-head-content .vision-title {
    font-size: 1rem;
  }

  .our-vision-head-content h1 {
    font-size: 2rem;
  }

  .our-vision-head-content p {
    font-size: 1.125rem;
  }

  .our-vision-head-img {
    max-width: 400px;
  }
}

.operate-contents {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
}

.operate-product {
  display: flex;
  width: calc(50% - 20px);  
  gap: 10px;
}

.operate-icon {
  padding-top: 20px;
}

.operate-icon img {
  max-width: 100%;
  height: auto;
}

.operate-content {
  line-height: 2;
}

.operate-content h2 {
  font-size: 35px;
  font-weight: 500;
  color: #ffffff;
}

.operate-content p {
  color: #ffffff;
}
 
@media (max-width: 768px) {
  .operate-product {
    width: calc(100% - 20px); 
    flex-direction: column;  
  }

  .operate-content h2 {
    font-size: 1.3rem;
  }

  .operate-content p {
    font-size: 14px;
  }
}
 
@media (max-width: 480px) {
  .operate-content h2 {
    font-size: 1rem;
  }

  .operate-content p {
    font-size: 12px;
  }

  .operate-contents {
    gap: 20px;  
  }

  .operate-product {
    gap: 5px;  
  }
}

/* section3 */
 

.section3 {
 padding-top: 30px;
}

.section3-container {
width: 100%;
  margin: 0 auto;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.section3-head h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  
}

.section3-head p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Flexbox layout for cards */
.section3-content {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 1rem;
}

.section3-card {
  flex: 1 1 calc(14.285% - 1rem); 
  display: flex;
  flex-direction: column;
  align-items: center;
 background-color: #fafafa;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: calc(14.285% - 1rem);
  margin-bottom: 20px;
}

.section3-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section3-img img {
  max-width: 65%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.section3-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .section3-card {
    flex: 1 1 calc(33.33% - 1rem); 
    max-width: calc(33.33% - 1rem);
  }
}

@media (max-width: 768px) {
  .section3-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .section3-card {
    flex: 1 1 100%; 
    max-width: 100%;
  }

  .section3-head h1 {
    font-size: 1.5rem;
  }

  .section3-head p {
    font-size: 0.9rem;
  }
}

.section4{

}
.section4-container{
  width: 100%;
  margin: 0 auto;
}
.operate {
  background: url('../assert/DNA.png'),
    radial-gradient(circle, rgba(23, 124, 136, 1) 0%, rgba(23, 124, 136, 1) 0%, rgba(15, 83, 91, 1) 0%, rgba(0, 0, 0, 1) 49%, rgba(0, 0, 0, 1) 100%);
  color: #ffffff;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.operate-container {

 padding: 2rem;
}

.operate-head h2 {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 2rem;
}
.operate-text{

width: 100%;
 line-height: 2;
padding: 2rem;
}
/* .operate-text-container{
  width: 50%;
  line-height: 2;
} */
@media (max-width : 768px) {
  .operate-text{
    width: 100%;
    line-height: 2;
  }
}
.operate-text h1{
  font-size: 2rem;
  font-weight: 400;
}

.operate-contents {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
}

.operate-product {
  display: flex;
  width: calc(50% - 20px);  
  gap: 10px;
}

.operate-icon img {
  max-width: 40px;
  height: 40px;
}

.operate-content {
  line-height: 2;
}

.operate-content h2 {
  font-size: 2rem;
  font-weight: 500;
}

.operate-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.btn {
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 400;
  border: 3px solid white;
  background: transparent;
  color: #ffffff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  color: black;
  background-color: #ffffff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .operate-head h2 {
    font-size: 40px;  
  }

  .operate-product {
    width: calc(50% - 20px);  
  }

  .btn {
    font-size: 18px;  
  }
}

@media (max-width: 768px) {
  .operate-head h2 {
    font-size: 35px;  
  }

  .operate-contents {
    flex-direction: column; 
  }

  .operate-product {
    width: 100%; 
    gap: 20px;
  }

  .operate-icon img {
    width: 80px;  
  }

  .operate-content h2 {
    font-size: 30px;  
  }

  .btn {
    padding: 12px 25px;
    font-size: 18px;  
  }
}

@media (max-width: 480px) {
  .operate-head h2 {
    font-size: 28px;  
  }

  .operate-btn {
    padding: 10px 0;
  }

  .btn {
    padding: 10px 20px;
    font-size: 16px;  
  }
}

/* contact */
.section7{
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.contact {
  padding: 2rem;
  background-color: black;
  color: #ffffff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
   
  gap: 20px;
  
}

.contact-content {
  line-height: 2;
}

.contact-content h2 {
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(269.96deg, #005284 26.28%, rgba(90, 143, 175, 0.646581) 52.49%, #9FBED1 74.47%, #FFFFFF 101%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media (max-width : 400px) {
  .contact-content h2 {
    font-size: 2rem;
    font-weight: 400;
  }
}

.contact-content p {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 10px;
  display: flex;
  gap: 10px;
  
}

.contact-content-icon {
  display: flex;
  /* justify-content: center; */
  gap: 1rem;
  align-items: center;
}
.contact-content-icon img{
  width: 30px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-content-icon p{
  font-size: 1rem;
  padding-bottom: 0;
}
 

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-input1 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.contact-input1 input,
.contact-input2 input,
.contact-attachment input {
  width: 100%;
  font-size: 16px;
  padding: 15px;
}

.contact-attachment {
  margin-bottom: 10px;
}

 
.contact-attachment input[type="file"] {
  display: none;
}

 
.fileInputLabel {
  display: inline-block;
  /* width: 50%; */
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fileInputLabel span {
  color: #999;
}

.contact-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-btn button {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: #ffffff;
  transition: background-color 0.3s;
  border: 3px solid;
  border-image: linear-gradient(to right, #01F3FD, #FF6DC1);
  border-image-slice: 1;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

#captcha-text {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #333;
  border-radius: 4px;
}

.captcha button {
  padding: 10px;
  font-size: 18px;
  background-color: transparent;
  color: #01f3fd;
  border: none;
  cursor: pointer;
}

.captcha button i {
  font-size: 20px;
  color: #01f3fd;
  transition: transform 0.3s ease;
}

.captcha button:hover i {
  transform: rotate(360deg);
}

.captcha button img {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}


/* Media queries for responsiveness */
@media screen and (min-width: 300px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form{
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form{
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .contact-container {
    flex-direction: row;
  }
  .contact-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
  }
  .contact-form{
    width: 50%;
  }
}

.section5{
  width: 100%;
  margin: 0 auto;
}

.careerContainer {
 
}
.careerImg {
  width: 100%;
  max-height: 400px;  
  overflow: hidden;
  margin: 20px 0;
  border-radius: 10px;  
}
.careerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  border-radius: 10px;  
}
@media (max-width: 599px) {
  .careerImg {
    max-height: 250px;  
  }
}

.careerHead {
  text-align: center;
  padding: 1rem;
}

.careerHead h2 {
  font-size: 2rem;
  margin-top: 20px;
}

.careerHead h2 span {
  color: #5751E1;
}

.careerHead p {
  font-size: 1rem;
}

 
 

.careerHead h2 {
  font-size: 2rem;
}

.careerHead p {
  font-size: 1.2rem;
}

@media (max-width: 599px) {
   

   
  .careerHead h2 {
      font-size: 1.5rem;
  }

  .careerHead p {
      font-size: 1.2rem;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  

  .careerHead h2 {
      font-size: 2rem;
  }

  .careerHead p {
      font-size: 1rem;
  }
}

@media (min-width: 1024px) {
   

  
  .careerHead h2 {
      font-size: 2rem;
  }

  .careerHead p {
      font-size: 1rem;
  }
}

.careerFilter {
  display: flex;
  padding: 10px;
}

.filterHead {
  cursor: pointer;
  padding: 10px 20px;
}

.filterHead p {
  margin: 0;
  font-size: 20px;
}

.active {
  font-weight: bold;
  /* border-bottom: 3px solid #5751E1; */
}

.careerContent {
  display: flex;
  border: 1px solid #CCC8C8;
  padding: 15px;
  margin: 2% 1%;
}

.careerContentImg img {
  width: 100%;
}

.careerDetails {
  width: 70%;
}

.careerDetails h2 {
  font-size: 25px;
  padding: 0px 20px;
}

.careerDetails h6 {
  font-size: 20px;
  padding: 0px 20px;
  font-weight: 300;
}

.careerDetails p {
  font-size: 20px;
  color: #707070;
  padding: 5px 20px;
}

.careerBtn {
  width: 20%;
  padding: 80px 30px;
}

.careerBtn a {
  font-size: 20px;
  text-decoration: none;
  color: #527EE9;
  display: flex;
  align-items: center;
}

@media (min-width: 300px) and (max-width: 599px) {
  .careerFilter {
      flex-direction: column;
  }

  .filterHead {
      padding: 10px;
  }

  .careerContent {
      flex-direction: column;
      padding: 10px;
  }

  .careerContentImg {
      width: 100%;
      padding: 0;
  }

  .careerDetails {
      width: 100%;
      padding: 10px;
  }

  .careerDetails h2 {
      font-size: 20px;
  }

  .careerDetails h6 {
      font-size: 18px;
  }

  .careerDetails p {
      font-size: 16px;
  }

  .careerBtn {
      width: 100%;
      padding: 10px 20px;
  }

  .careerBtn a {
      font-size: 18px;
      padding: 10px;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .careerContent {
      flex-direction: row;
  }

  .careerDetails {
      width: 65%;
  }

  .careerBtn {
      width: 20%;
      padding: 60px 30px;
  }
}

 
 

.careerDescriptionContainer .descriptionData {
  display: flex;
  padding: 10px 0;
}

.descriptionHead {
  padding: 20px;
}

.descriptionHead h3 {
  font-size: 32px;
}

.descriptionBtn {
  padding: 20px;
  margin-left: auto;
}

.descriptionBtn button {
  all: unset;
  color: white;
  background: #5751E1;
  border-radius: 10px;
  padding: 15px 60px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.descriptionBtn button:hover {
  background: #4647b1;
}

.descriptionContent {
  padding: 10px;
}

.descriptionContent span {
  font-weight: bold;
  font-size: 21px;
}

.descriptionContent p {
  font-size: 20px;
  padding: 10px;
}

.descriptionDetails {
  padding: 10px;
}

.descriptionDetails h3 {
  font-size: 22px;
  padding: 10px;
}

.descriptionDetails span {
  font-weight: bold;
  font-size: 21px;
}

.descriptionDetails p {
  font-size: 20px;
  padding: 10px;
}

@media (min-width: 300px) and (max-width: 599px) {
  .careerDescriptionContainer .descriptionData {
      flex-direction: column;
  }

  .descriptionHead h3 {
      font-size: 26px;
  }

  .descriptionBtn button {
      padding: 12px 30px;
      font-size: 16px;
  }

  .descriptionContent, .descriptionDetails {
      padding: 10px;
  }

  .descriptionContent span,
  .descriptionDetails span {
      font-size: 18px;
  }

  .descriptionContent p,
  .descriptionDetails p {
      font-size: 16px;
  }
}

 

 
 /* invester */
 /* Base styles */
.invester { 
  /* padding: 2rem 0; */
  
}

.invester-container {
  width: 100%;
  margin: 0 auto; 

}

.invester-Content {
  background-color: #eff6ff;
  display: flex;
  flex-direction: row;  
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  height: 85vh;
}

.invester-head {
  max-width: 50%;  
}

.invester-head h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.invester-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

.invester-img {
  max-width: 50%;  
}

.invester-img img {
  width: 100%;  
  height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .invester-head h1 {
    font-size: 2rem;  
  }

  .invester-head p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .invester-Content {
    flex-direction: column;  
    text-align: center;
  }

  .invester-head,
  .invester-img {
    max-width: 100%;  
  }

  .invester-head h1 {
    font-size: 1.8rem;
  }

  .invester-head p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .invester {
    padding: 2rem 1rem;  
  }

  .invester-head h1 {
    font-size: 1.5rem;
  }

  .invester-head p {
    font-size: 0.9rem;
  }
}

 
.invester-cards {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.invester-cards-head{
  text-align: center;
}
.invester-cards-head h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.invester-cards-head p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.invester-cards-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem; 
  justify-content: center;
}

.invester-card {
  flex: 1 1 calc(33.33% - 2rem);   
  max-width: calc(33.33% - 2rem);  
  box-sizing: border-box;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

@media (max-width: 768px) {
  .invester-card {
    flex: 1 1 calc(50% - 2rem); 
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .invester-card {
    flex: 1 1 100%;  
    max-width: 100%;
  }
}


/* Individual Card */
.invester-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.invester-card:hover {
  transform: translateY(-10px);
}

/* Card Background Image */
.invester-card-bg {
  position: relative;
  height: 9rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #001b44;  
  display: flex;
 justify-content: center;
 align-items: center;
  text-align: center;
  padding: 1rem;
  color: #fff;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

/* .invester-card:nth-child(1) .invester-card-bg {
  background-color: #003366; 
}

.invester-card:nth-child(2) .invester-card-bg {
  background-color: #002244;  
}

.invester-card:nth-child(3) .invester-card-bg {
  background-color: #001b44;  
} */

.invester-card-bg img{
  height: 100px;
}

.invester-card-bg h1 {
  margin: 0;
  font-size: 1.2rem;
  padding-left: 10px;
}

/* Card List */
.invester-card-list {
  padding: 1.5rem;
  color: #555;
  text-align: left;
}

.invester-card-list ul {
  list-style: none;
  padding: 0;
}

.invester-card-list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* Card Amount Section */
.invester-card-amount {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: #f1f1f1;
  border-top: 1px solid #ddd;
}

.card-amount strong {
  font-size: 1rem;
  color: #333;
}

.card-amount p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .invester-cards-head h1 {
      font-size: 1.5rem;
  }

  .invester-cards-head p {
      font-size: 0.9rem;
  }

  .invester-card-bg h1 {
      font-size: 1.2rem;
  }

  .invester-card-amount {
      flex-direction: column;
      align-items: center;
  }

  .card-amount {
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .invester-cards-content {
      grid-template-columns: 1fr;
  }

  .invester-card-list li {
      font-size: 0.85rem;
  }
}

/* Footer Styling */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfdff; /* Dark background for footer */
  color: #000; /* White text color */
  padding: 1rem 2rem;
  font-size: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.footer-left p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-right {
  text-align: right;
}

.footer-right button {
  display: flex;
  align-items: center;
  background-color: #ee6c3c; /* Blue button background */
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-right button i {
  margin-right: 0.5rem;
}

.footer-right button:hover {
  background-color: #ee6c33; /* Darker blue on hover */
}

/* Responsive Styling */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 0.5rem 0;
  }

  .footer-right button {
    justify-content: center;
  }
}


/* footer */
.footerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background-color: #eff6ff;
  color: #333;
}

@media screen and (max-width: 768px) {
  .footerContainer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .footerContainer {
    padding: 1rem;
  }
}

.contactDetails {
  flex: 1;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .contactDetails {
    align-items: center;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.contactDetails .footerLogo img {
  width: 150px;
  margin-bottom: 1rem;
}

.contactDetails .footer-info {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 400px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .contactDetails .footer-info {
    text-align: center;
  }
}

.contactDetails .footerIcons {
  display: flex;
  gap: 1rem;
}

.contactDetails .footerIcons i {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.contactDetails .footerIcons i:hover {
  color: #0056b3;
}

@media screen and (max-width: 576px) {
  .contactDetails .footerIcons i {
    font-size: 1.2rem;
  }
}

.footerColumn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerColumn h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.footerColumn a {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #333;
  text-decoration: none;
}

.footerColumn a:hover {
  color: #0056b3;
}

@media screen and (max-width: 768px) {
  .footerColumn {
    align-items: center;
    margin-bottom: 2rem;
  }
}

.contacts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacts .address {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contacts .address .icon {
  font-size: 1.5rem;
  color: #333;
  margin-right: 1rem;
}

.contacts .address .title {
  font-weight: bold;
  font-size: 1rem;
}

.contacts .address p {
  margin: 0;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .contacts {
    align-items: center;
  }

  .contacts .address {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .contacts .address .icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }

  .contacts .address p {
    font-size: 0.85rem;
  }
}


.careerContainer1{
 padding: 2rem;
  margin-bottom: 1rem;
}
.careerContents-head{
  /* padding: 2rem; */
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.careerDesciption{
  margin-bottom: 1rem;
}
.career-head{ 
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.career-text{
  font-size: 1.2rem;
}
.career-span{
  font-weight: 600;
}