@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Special+Gothic+Expanded+One&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html, body {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 4rem;
}

.left-side,
.right-side {
  width: 50%;
  padding: 1rem;
}

.left-side {
  text-align: center;
}

.text-head {
  font-size: 44px;
  font-weight: 800;
}

.auto_text {
  font-size: 44px;
  font-weight: bold;
}

#element {
  color: #510099;
}

.typed-cursor {
  font-size: 3em;
}

.left-side > .para > p {
  font-size: 20px;
}

.para {
  margin-top: 2rem;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

.explore-btn,
.quote-btn {
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  border-width: 0px;
}

.explore-btn {
  background-color: #510099;
  color: white;
  padding: 17px 20px;
}

.quote-btn {
  border: 3px solid #510099;
  color: #510099;
  padding: 13px 20px;
}

.quote-btn > i {
  margin-right: 10px;
}

.right-side > img {
  width: 400px;
  height: 400px;
  margin: auto;
  display: block;
  z-index: 1;
  position: relative;
}

.right-side > img,
.illustration img {
  height: auto;
}

.down-btn {
  position: absolute;
  bottom: 3%;
  border: none;
  background-color: white;
}

.fa-angle-down {
  font-size: 3rem;
  color: #510099;
  text-align: center;
}

/* tab-section starts here */
.tabs-container {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
}

.tabs-navigation {
  display: flex;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow-x: auto;
}

.tab-button {
  padding: 16px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.tab-button.active {
  background-color: #4b0082;
  color: white;
}

.tab-content {
  display: none;
  padding: 0;
  border-radius: 4px;
  background-color: #4b0082;
  color: white;
}

.tab-content.active {
  display: flex;
  flex-wrap: wrap;
}

.content-item {
  width: 50%;
  padding: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.content-item:last-child {
  border-right: none;
}

.content-item h2 {
  margin-bottom: 15px;
  color: white;
  font-size: 24px;
}

.content-item p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.more-button {
  padding: 10px 20px;
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  align-self: flex-end;
  transition: background-color 0.3s;
}

.more-button:hover {
  background-color: #f0f0f0;
}
/* tab-section ends here */

/* service section start here */
.service-cont {
  height: 100%;
  margin: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.card {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  border: 2px solid black;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  transition: all ease 0.5ms;
}

.card:hover{
  box-shadow: 0 0 20px rgba(75,0,130,0.5)
}

.card-img-top {
  height: 60px;
  width: 60px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 15px 0 10px;
}

.card-text {
  font-size: 16px;
  padding: 0 10px;
}

.benefit-container {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.benefits-btn {
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background-color: #510099;
  color: white;
  padding: 15px 25px;
  cursor: pointer;
}
/* Service end here */

/* business section starts here */
.head {
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
}

.business-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.business-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px; /* grow, shrink, base width */
  max-width: 400px;
}

.card-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1em;
  line-height: 1.5;
}

/* info-section starts here */
.info-section {
  height: 100%;
  padding: 1rem 4rem;
}

.row-container {
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 3rem 0rem;
}

.text-box {
  width: 50%;
  padding: 20px 10px;
}

.text-box > h2 {
  font-size: 40px;
  color: #510099;
  margin-bottom: 20px;
}

.para-box {
  margin-bottom: 10px;
}

.get-btn,
.demo-btn {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background-color: #510099;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
}

.get-btn > a,
.demo-btn > a {
  color: white;
  list-style: none;
  text-decoration: none;
}
/* info section ends here */

/* hospital sections starts here */
.hospital-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
}

.box-1,
.box-2 {
  width: 50%;
  height: 100%;
}

.box-1 > h2 {
  height: 100%;
  width: 100%;
  font-size: 40px;
  color: #510099;
  margin: 1rem 0rem;
  text-align: start;
}

.box-1 > h3 {
  margin: 1rem 0rem 2rem 0rem;
  font-size: 1.17em;
}

.box-2 > img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.detials {
  padding: 3rem 0rem;
  font-size: 1.17em;
}

.detials-head {
  color: #004214;
  font-weight: 800;
}
/* hospital section ends here */

/* Assets track section starts here */
.asset-track {
  background-image: url(/images/BG_image/bg4.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 0.7rem 0rem;
}

.asset-head {
  font-size: 32px;
  margin: 2rem;
  color: #510099;
  text-decoration: underline;
}

.assets-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.assets-text {
  width: 80%;
  font-size: 28px;
  word-break: break-word;
}

.a,
.c {
  height: 100px;
  text-align: start;
  margin: 20px 0px;
  font-weight: bold;
}

.b {
  height: 100px;
  text-align: end;
  margin: 30px 0px;
  font-weight: bold;
}

.assets-highlight {
  color: #510099;
}
/* Assets track section ends here */

/* energy sections starts here */
.box-1 > ul {
  padding: 20px 20px;
}

.box-1 > ul > li {
  font-size: 21px;
  margin: 20px 0px;
}

.box-1 > ul > li::marker {
  color: #510099;
}
/* energy sections ends here */

/* About us section starts here */
.About-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 4rem;
}
.heading {
  text-align: center;
  color: #4b0082;
}
.heading h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.heading p {
  font-size: 1.8rem;
  color: #333;
  border-top: 2px solid #4b0082;
  display: inline-block;
  padding-top: 0.5rem;
}
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
}

.illustration, .form-box{
  width: 50%;
}

.illustration img {
  padding: 2rem;
  width: 400px;
  max-width: 100%;
}

.form-box {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.name-fields {
  display: flex;
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: #4b0082;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #360061;
}

/* About us section ends here */

@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: column-reverse;
    min-height: 140vh;
  }

  .right-side {
    position: absolute;
    top: 1rem;
  }

  .right-side > img {
    width: 300px;
    height: 300px;
    z-index: 1;
  }

  .left-side,
  .right-side {
    width: 100%;
    position: absolute;
  }

  .left-side {
    bottom: 7%;
    padding: 1rem 1.5rem;
  }

  .text-head {
    font-size: 30px;
  }

  .auto_text {
    font-size: 28px;
    font-weight: bold;
  }
  .typed-cursor {
    font-size: 2em;
  }

  .para > p {
    font-size: 15px;
    text-align: center;
    padding: 2rem 0rem;
  }

  .hero-btn {
    display: flex;
    flex-direction: column;
  }

  .explore-btn {
    margin-bottom: 1.5rem;
    background-color: #510099;
    color: white;
    padding: 17px 30px;
  }

  .down-btn {
    position: absolute;
    bottom: 0rem;
    font-size: 40px;
    color: #510099;
  }

  .content {
    flex-direction: column;
    align-items: flex-start;
  }

  .divider {
    display: none;
  }

  .tab {
    font-size: 14px;
  }

  /* service sections starts here */
  .service-cont {
    margin: 20px 0px;
  }

  .card {
    flex: 1 1 80%;
  }

  .card-img-top {
    height: 50px;
    width: 50px;
  }

  .card-title {
    font-size: 20px;
  }

  .benefits-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .row-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .box2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .text-box {
    width: 100%;
  }

  .text-box > h2 {
    font-size: 28px;
  }

  .info-section {
    padding: 1rem;
  }

  .hospital-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 1rem 1.5rem;
  }

  .box-1,
  .box-2 {
    width: 100%;
    height: 50%;
  }

  .box-1 > h2 {
    height: 100%;
    width: 100%;
    font-size: 30px;
    color: #510099;
    /* margin-bottom: 10rem; */
    text-align: start;
  }

  .detials {
    font-size: 15px;
  }

  .assets-text{
    font-size: 20px;
  }

  .asset-head {
    font-size: 20px;
  }

  .box-1 > ul > li {
    font-size: 18px;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .heading > h1 {
    font-size: 2rem;
  }

  .heading > p {
    font-size: 1.2rem;
  }

  .container {
    flex-direction: column;
  }

  .left-section {
    padding: 30px;
    text-align: center;
  }

  .left-section p {
    max-width: 100%;
  }

  .right-section {
    height: 300px;
  }

  .About-us-container {
    padding: 1rem;
  }

  .illustration, .form-box{
    width: 100%;
  }

  .content-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
    padding: 20px;
  }

  .content-item:last-child {
    border-bottom: none;
  }

  .tabs-navigation {
    flex-direction: row;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .tab-button {
    padding: 12px 5px;
    font-size: 16px;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .tab-button:last-child {
    border-right: none;
  }

  .content-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .more-button {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .tabs-container {
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .head{
    font-size: 1.8rem;
  }
}

.business-container {
  flex-direction: column;
  align-items: center;
}

.business-card {
  width: 90%;
  max-width: none;
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-img-top {
    height: 40px;
    width: 40px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }

  .benefits-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .tab-button {
    font-size: 14px;
    padding: 10px 5px;
  }
  
  .content-item {
    padding: 15px;
  }
  
  .content-item h2 {
    font-size: 18px;
  }
  
  .content-item p {
    font-size: 14px;
  }
}

/* service css file starts here */

.Our-services {
  min-height: 100vh;
  padding: 60px 20px;
}

.service-hero{
  border-radius: 8px;
  padding: 0.7rem 3rem;
}

.service-hero > h1{
  font-size: 2.9rem;
  font-weight: 800;
  color:#510099;
  text-align: center;
}

.card-conatiner{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2rem;
}

.service-card{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.15);
  width: 400px;
  height: 400px;
  border-radius: 8px;
}

.service-card:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card > h3{
  font-size: 1.7em;
  text-align: center;
  margin: 10px;
  color: #510099;
}

.service-card > p{
  text-align: center;
  margin: 10px;
  font-size: 1.2em;
}

.card-btn{
  border-radius: 8px;
  padding: 10px 20px;
  margin: 20px 0px;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 17px;
  background-color: #510099;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .service-hero > h1{
    font-size: 2rem;
  }

  .service-card > h3{
    font-size: 1.4rem;
  }

  .service-card > p{
    font-size: 1em;
  }

  .card-btn{
    border-radius: 8px;
    padding: 10px 20px;
    margin: 20px 0px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    background-color: #510099;
  }
}

/* ends here */

/* Product css file starts here */

section {
  min-height: 100vh;
  padding: 60px 20px;
  margin: auto;
}

.product-tittle {
  border-radius: 8px;
  padding: 0.7rem 3rem;
}

.product-tittle > h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #510099;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(81, 0, 153, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  display: block;
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(81, 0, 153, 0.8), transparent);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: 0.3s ease;
}

.product-card:hover .product-info {
  opacity: 1;
}

.product-info > p {
  font-size: 0.9em;
  margin: 8px 0 12px;
}

@media (max-width: 600px) {
    .product-tittle > h1{
        font-size: 2rem;
    }

  .product-info {
    padding: 15px;
  }

  .product-info > h3 {
    font-size: 1.2em;
  }
}

/* ends here */

/* Blog css file starts here */
.blog-section {
  padding: 20px 60px;
  width: 100%;
  margin: auto;
}

.blog-tittle {
  text-align: center;
}

.blog-tittle > h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #510099;
  text-align: center;
}

.blog-container {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.img {
  height: 250px;
  width: 100%;
  background-size: cover;
}

.card-content {
  padding: 20px;
}

.card-content > .tag {
  color: white;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1em;
  background-color: #510099;
  padding: 4px 15px;
}

.read-more {
  margin-top: 30px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}

.card-content > h3 {
  font-weight: bolder;
  font-size: 1.5em;
  margin: 15px 0px;
}

.card-content > p {
  font-size: 1em;
  color: gray;
  margin: 25px 0px 15px 0px;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 20px 0px;
  }

  .blog-tittle > h1{
    font-size: 2rem;
  }
}


/* ends here */

/* company css file starts here */


.about {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(81, 0, 153, 0.08);
  border-radius: 15px;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

.mission-container{
  display: flex;
  flex-direction: row-reverse;
}

.about-text,
.about-img {
  flex: 1;
}

.about-us-text{
  text-align: start;
}

.about-text > h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #510099;
  text-align: center;
}

.about-text > p {
  font-size: 1.2em;
  margin: 20px 0px;
}

.about-img{
  text-align: center;
}

.about-img img{
  max-width: 100%;
  margin: auto;
}

.team {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.team > h2{
  font-size: 2.9rem;
  font-weight: 800;
  color: #510099;
  text-align: center;
  margin: 20px 0px;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card{
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-card:hover{
  transform: translateY(-10px);
}

.team-card > img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.team-card > h2{
  margin: 20px 0px;
}

.team-card > p{
  color: gray;
  font-size: 1em;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-text > h1, .team > h2{
    font-size: 2rem;
  }

  .about-text > p {
    font-size: 0.9em;
  }

  .team > h2{
    margin: 30px;
  }
}
/* ends here */