.container {
  background: black;
  padding: 30px;
  max-width: 110%;
  height: 90vh;
  display: flex;
}
.content {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
  width: 50%;
}
.content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
}
.content p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 19px;
  color: #ccc;
}
.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 80vh;
  /* margin-top: 5px; */
  padding-right: 70px;
}

.image img {
  height: 70vh;
  margin-top:30px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .content {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .content h2 {
    font-size: 24px;
  }

  .content p {
    font-size: 16px;
  }

  .image {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding-right: 0;
  }

  .image img {
    width: 80%;
    height: auto;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .content {
    margin-top: 20px;
    padding: 0 10px;          /* add side padding for readability */
  }

  .content h2 {
    font-size: 20px;          /* smaller heading */
  }

  .content p {
    font-size: 14px;          /* smaller text */
    line-height: 1.4;
  }

  .image {
    margin-top: 20px;
  }

  .image img {
    width: 100%;              /* full width image on mobile */
  }
}


/* <=======================Next==================> */
  .work-section {
    /* width: 1200px; */
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  border-radius: 50%;
  /* height: 90vh; */
}



.tag {
  color: #d9534f;
  font-size: 14px;
  margin-bottom: 10px;
}

h1 {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  /* padding-bottom: 100px; */
}

h1 .dark {
  display: flex;
  color: #222;
  align-items: center;
  justify-content: center;
  
}

h1 .gradient {
  background: linear-gradient(to right, #7b2ff7, #f107a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.tabs {
  margin: 30px 0;
}

.tab {
  background: #f4f4f4;
  border: none;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background: #e0e0e0;
}

.tab.active {
  background: #e8dce9;
  color: #a42ba3;
  font-weight: bold;
}

.subtitle {
  font-size: 27px;
  margin-top: 40px;
  color: #222;
}
@media (max-width: 768px) {
  .work-section {
    height: auto;              /* Remove fixed height */
    border-radius: 0;          /* Remove circle shape on small screens */
    padding: 40px 20px;        /* Add spacing */
  }

  h1 {
    font-size: 28px;           /* Reduce heading size */
    line-height: 1.2;
  }

  .subtitle {
    font-size: 20px;           /* Smaller subtitle */
    margin-top: 25px;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;           /* Tabs wrap into new line */
    justify-content: center;
    margin: 20px 0;
  }

  .tab {
    padding: 10px 18px;
    font-size: 14px;
    margin: 5px;
  }
}
@media (max-width: 480px) {
  .work-section {
    padding: 25px 15px;       /* tighter spacing */
  }

  h1 {
    font-size: 22px;          /* smaller heading */
  }

  .subtitle {
    font-size: 16px;          /* shrink subtitle */
    margin-top: 20px;
  }

  .tabs {
    flex-direction: column;   /* stack tabs vertically */
    gap: 10px;
  }

  .tab {
    width: 100%;              /* full width buttons */
    font-size: 13px;
    padding: 8px 15px;
  }
}


.page {
      display: none; 
      padding: 20px;
      margin-top: 10px;
    }
    .active {
      display: block;  
    }
    .btn button:focus,
    .btn button.active {
      background: lightpink;   /* highlight color */
      color: #fff;
      outline: none;
}
    .btn{
      display: flex;

    }
    button {
      margin: 5px;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 15px;
    }
    button:focus{
      color:white;
      background-color: lightpink;
    }
  .page img{
    width: 500px;
    height: 400px;
    margin-top: 60px;
  }
  .page h2{
    color:rgb(134, 109, 156);
    font-size: 1.5rem;
  }
    
@media (max-width: 768px) {
  .btn {
    flex-direction: column;    /* Stack buttons vertically */
    align-items: center;
  }

  button {
    width: 100%;               /* Full width buttons */
    max-width: 300px;          /* Keep them neat */
    font-size: 14px;
    padding: 8px 15px;
  }

  .page img {
    width: 100%;               /* Shrinks to fit phone/tablet */
    height: auto;              /* Keep aspect ratio */
    margin-top: 20px;
  }

  .page h2 {
    font-size: 1.2rem;         /* Slightly smaller heading */
    text-align: center;
  }

  .page {
    padding: 10px;
    margin-top: 5px;
  }
}
@media (max-width: 480px) {
  .btn {
    flex-direction: column;     /* Keep stacked layout */
    align-items: center;
    gap: 8px;                   /* Add spacing between buttons */
  }

  button {
    width: 100%;                /* Take full width */
    max-width: 250px;           /* Slightly smaller than tablets */
    font-size: 12px;            /* Smaller text */
    padding: 6px 12px;
  }

  .page img {
    width: 100%;                /* Fit phone width */
    height: auto;               /* Keep proportions */
    margin-top: 15px;
  }

  .page h2 {
    font-size: 1rem;            /* Reduce heading size */
    text-align: center;
  }

  .page {
    padding: 8px;
    margin-top: 5px;
  }
}






/* <===============================cards======================> */


.industry-section {
  height: 180vh;
  text-align: center;
  padding: 30px 20px;
  background:linear-gradient(to bottom,#111827, #1f2937);
  position: relative;
  
}

.industry-section h1 {
  font-size: 2rem;
  margin-bottom: 60px;
  color: white;
}
.industry-section h1::before {
  content: "";
  width: 60px;
  height: 3px;
  background: white;
  position: absolute;
  top: 90px;
  left:600px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  height: 150vh;
  position: relative;
}

.card {
  background-color:#1f2937;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.card:nth-child(odd) {
  background-color:#007db2;  
}

.card:nth-child(even) {
  background-color:#084766; 
}
.card h2 {
  margin: 10px 0 10px;
  font-size: 23px;
  font-weight: bold;
  color: white;
  position: relative;
}


.card p {
  font-size: 18px;
  line-height: 1.8;
  color: white;
}
.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  perspective: 1000px;
}

.icon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.icon-inner img{
  width:65px;
  height:auto;

}

.card:hover .icon-inner {
  transform: rotateY(180deg);
}

.icon-front, .icon-back {
  max-width: 100px;
  height: 100px;
  position: absolute;
  width: 100%;
  /* height: 100%; */
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 40px; */
  backface-visibility: hidden;
  margin: 0 auto 20px;

}

.icon-front:nth-child(odd){
  border: 2px solid #084766;
  box-shadow: 0 0 10px white, 0 0 20px white;
}
.icon-back:nth-child(even){
  border: 2px solid #084766;
  box-shadow: 0 0 10px white, 0 0 20px white;
}


.icon-front:nth-child(odd){
  border: 2px solid #007db2;
}
.icon-back:nth-child(even){
  border: 2px solid #007db2;
  box-shadow: 0 0 10px white, 0 0 20px white;
}


.icon-back {
  transform: rotateY(180deg);
}
@media (max-width: 768px) {
  .industry-section {
    height: auto;                 /* Remove fixed height */
    padding: 20px 15px;
  }

  .industry-section h1 {
    font-size: 1.6rem;            /* Smaller heading */
    margin-bottom: 40px;
  }

  .industry-section h1::before {
    left: 50%;                    /* Center underline */
    top: 65px;
    transform: translateX(-50%);
    width: 40px;
  }

  .cards {
    grid-template-columns: 1fr;   /* Single column on tablets */
    height: auto;                 /* Remove fixed height */
    gap: 25px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 15px;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-inner img {
    width: 50px;
  }

  .icon-front,
  .icon-back {
    max-width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .industry-section {
    padding: 15px 10px;
  }

  .industry-section h1 {
    font-size: 1.3rem;        /* Smaller heading for mobile */
    margin-bottom: 25px;
  }

  .industry-section h1::before {
    top: 68px;
    width: 30px;              /* Thinner underline */
  }

  .cards {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .card {
    padding: 12px;
  }

  .card h2 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .icon-inner img {
    width: 40px;
  }

  .icon-front,
  .icon-back {
    max-width: 65px;
    height: 65px;
  }
}



/* <==========================process======================> */




.container-2{
  max-width: 1200px;
  height: 210vh;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

p.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

.step-card {
  height: 390px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  border: 2px solid rgb(177, 199, 232);
  box-shadow: 0 0 10px white, 0 0 20px rgb(167, 205, 244);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  flex: 1;
  padding-right: 20px;
  /* align-items: center; */
  justify-content: center;
}

.divider {
  width: 1px;
  background: #ddd;
  height: 100%;
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right img {
  max-width: 110%;
  height: 50vh;
  border-radius: 6px;
}
 
.step-number {
  font-size: 60px;
  font-weight: bold;
}

.step-card:nth-child(1) .step-number {
  color: #ff5722; /* Orange for Step 1 */
}

.step-card:nth-child(2) .step-number {
  color: #009688; /* Green for Step 2 */
}
.step-card:nth-child(3) .step-number {
  color: rgb(134, 6, 28); /* Green for Step 2 */
}
.step-card:nth-child(4) .step-number {
  color:darkturquoise; /* Green for Step 2 */
}
.step-card:nth-child(5) .step-number {
  color: rgb(233, 115, 233); /* Green for Step 2 */
}
.step-card:nth-child(6) .step-number {
  color: rgb(64, 64, 235); /* Green for Step 2 */
}

.step-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}


@media(max-width:768px){
  .container-2{
  max-width: 1200px;
  height: 470vh;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

p.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

.step-card {
  height: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  flex: 1;
  padding-right: 20px;
  /* align-items: center; */
  justify-content: center;
}

.divider {
  width: 1px;
  background: #ddd;
  height: 100%;
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right img {
  max-width: 110%;
  height: 20vh;
  border-radius: 6px;
}
 
.step-number {
  font-size: 60px;
  font-weight: bold;
  /* margin-bottom: 10px; */
  /* align-items: center; */
  /* justify-content: center; */
}

.step-card:nth-child(1) .step-number {
  color: #ff5722; /* Orange for Step 1 */
}

.step-card:nth-child(2) .step-number {
  color: #009688; /* Green for Step 2 */
}
.step-card:nth-child(3) .step-number {
  color: rgb(134, 6, 28); /* Green for Step 2 */
}
.step-card:nth-child(4) .step-number {
  color:darkturquoise; /* Green for Step 2 */
}
.step-card:nth-child(5) .step-number {
  color: rgb(233, 115, 233); /* Green for Step 2 */
}
.step-card:nth-child(6) .step-number {
  color: rgb(64, 64, 235); /* Green for Step 2 */
}

.step-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
}
@media (max-width: 480px) {
  .container-2 {
    height: auto;               /* Let height adjust naturally */
    padding: 20px 10px;
  }

  h1 {
    font-size: 28px;            /* Smaller heading */
  }

  p.subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .steps {
    grid-template-columns: 1fr; /* Single column */
    gap: 15px;
  }

  .step-card {
    height: auto;               /* Flexible height */
    padding: 15px;
  }

  .step-number {
    font-size: 36px;            /* Smaller step number */
  }

  .step-title {
    font-size: 20px;            /* Smaller title */
  }

  .step-desc {
    font-size: 14px;            /* Smaller text */
    line-height: 1.4;
  }

  .right img {
    max-width: 90%;             /* Image fits mobile */
    height: auto;
  }
}





