/* color area  */

:root {
  --primary-color: #0e3458;
  /* Main dark */
  --secondary-color: #8a8a8a;
  /* Dark gray-blue */
  --accent-color: #e5e7e8;
  /* Highlight turquoise */
  --background-color: #F9F9F9;
  /* Light background */
  --text-light: #FFFFFF;
  /* White text */
  --text-dark: #000000;
  /* Dark text */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

.card {
  --main-color: #000;
  --submain-color: #78858F;
  --bg-color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: relative;
  width: 300px;
  height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: var(--bg-color);
  margin: auto;
}

.card__img {
  height: 192px;
  width: 100%;
}

.card__img svg {
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.card__avatar {
  position: absolute;
  width: 114px;
  height: 114px;
  background: var(--bg-color);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 57px);
}

.card__avatar svg {
  width: 100px;
  height: 100px;
}

.card__title {
  margin-top: 60px;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-color);
}

.card__subtitle {
  margin-top: 10px;
  font-weight: 400;
  font-size: 15px;
  color: var(--submain-color);
}

.card__btn {
  margin-top: 15px;
  width: 76px;
  height: 31px;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  color: var(--main-color);
  background: var(--bg-color);
  text-transform: uppercase;
  transition: all 0.3s;
}

.card__btn-solid {
  background: var(--main-color);
  color: var(--bg-color);
}

.card__btn:hover {
  background: var(--main-color);
  color: var(--bg-color);
}

.card__btn-solid:hover {
  background: var(--bg-color);
  color: var(--main-color);
}

/* Carousel Styling */
.carousel-inner {
  display: flex;
}

.carousel-item {
  display: flex;
  justify-content: center;
  gap: 20px;
}




@media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
  .section-1-mobile {
    background-image: url('../assets/updatedpic-1.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    height: 40vh;
  }

  .section-1-h1 {
    text-align: center;
    padding-top: 6rem;
    padding-left: 1rem;
    font-size: 2rem;
    font-weight: bold;
  }

  .section-1-p {
    text-align: center;
    padding-left: 1rem;
    font-size: 1rem;
    padding-top: 1.5rem;
    color: black;
  }
  .rounded{
    margin-top: 2rem;
  }

  .service-p {
    font-weight: 500;
    color: var(--secondary-color);
  }

  .service-h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }

  .service-detail {
    font-weight: 300;
  }

  .cust-btn-hero {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 1.5rem;
    margin-left: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cust-btn-hero:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #0e3458;
    transition: 0.3s;
  }

  .section-2 {
    background-color: #16163f;
    color: white;
    padding-bottom: 3rem;
    padding-top: 5rem;
  }

  .section-2 .row h2 {
    font-size: 30px;
    word-spacing: 2.2px;
    padding-bottom: 2rem;
  }

  .section-number-2 .col-12 h1 {
    font-size: 40px;
  }

  .section-number-2 .col-12 {
    text-align: left;
    padding-bottom: 2rem;
  }

  .text-section-3 .text {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
  }

  .text-section-3 .text .heading {
    text-align: center;
    color: #9e3ffd;
    font-size: 18px;
    font-weight: 500;
  }

  .text-section-3 .text h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 639;
    padding-bottom: 2rem;
  }

  .text-section-3 .text .written {
    font-size: 14px;
    color: #555;
  }

  .img-section-3 {
    display: none;
    /* background: url('../assets/updatedpic-2\ -\ Copy.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
  }

  .section-4 {
    background-color: black;
  }

  .section-4-logo {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }



  .section-4-logo div img {
    width: 95%;
    aspect-ratio: 2/2;
    object-fit: contain;
  }

  .section-4 h2 {
    padding-top: 5rem;
    color: #ffffff;
    text-align: center;
  }

  .photo-card {
    position: relative;
    /* display: inline-block; */
    margin-bottom: 80px;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
  }

  .photo-card img {
    width: 100%;
    height: 300px;
    /* border-radius: 4px; */
  }

  .text-card {
    position: absolute;
    bottom: -70px;
    left: 60%;
    transform: translateX(-50%);
    width: 70%;
    background: #8a8a8a;
    padding: 15px;
    /* border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    color: white;
  }

  .text-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .text-card p {
    margin: 10px 0;
    font-size: 14px;
  }

  .row-team {
    border-bottom: 2px double white;
    background-color: #16163f;
    color: white;
  }

  .row-team h1 {
    padding-left: 30px;
    font-size: 2rem;
  }

  .our-img img {
    width: 100%;
    object-fit: contain;
    padding-top: 20%;
    filter: grayscale(100%); 
    
  }

  .founder-img img {
    object-fit: contain;
    width: 65%;
  }
  .founder-name h2{
    text-align: center;
    padding-top: 3rem;
  }
  .row-2 img {
  padding-top: 10px;
}
.row-team h1{
  text-align: center;
}
.founder-name .para{
  text-align: center;
}
.our-img img {
  margin-bottom: 2rem;
  width: 20%;
  object-fit: contain;
  padding-top: 20%;
  filter: grayscale(100%); 
}
.visson p{
  max-width: 340px;
}
.img-take{
  display: none;
  
}
.img-border{
  border-right: 2px solid gray;
  border-left: 2px solid gray;
}
.img-take img{
  object-fit: contain;
  width: 13%;
  filter: grayscale(100%);  
}

.service-icon img{
  object-fit: contain;
 width: 45%;
 padding-bottom: 0rem;
}
.container text{
  padding-bottom: 0;
}

}






@media only screen and (min-width: 1030px) and (max-width: 1605px) {

  .cust-btn-hero {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 1.5rem;
    margin-left: 15%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cust-btn-hero:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #0e3458;
    transition: 0.3s;
  }

  .section-1 {
    background-image: url('../assets/updatedpic-1.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    background-color: var(--primary-color);
  }

  .section-1-h1 {
    padding-top: 15%;
    padding-left: 15%;
    font-size: 300%;
    font-weight: bold;
  }

  .section-1-h4 {
    padding-left: 15%;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .section-1-p {
    padding-left: 15%;
    font-size: 1.2rem;
    padding-top: 1rem;
    color: #5f5e5e;
  }

  .service-p {
    font-weight: 500;
    color: var(--secondary-color);
  }

  .service-h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }

  .service-detail {
    font-weight: 300;
  }

  .section-2 {
    background-color: #16163f;
    color: white;
    padding-bottom: 7rem;
    padding-top: 6rem;
  }

  .section-2 .row h2 {
    font-size: 36px;
    word-spacing: 2.2px;
    padding-bottom: 2rem;
  }

  .section-number-2 .col-md-2 h1 {
    font-size: 60px;
  }

  .section-number-2 .col-md-2 {
    text-align: left;
  }

  .text-section-3 .text {
    padding-top: 5rem;
    padding-bottom: 4rem;
    padding-left: 5rem;
  }

  .text-section-3 .text .heading {
    color: #9e3ffd;
    font-size: 18px;
    font-weight: 500;
  }

  .text-section-3 .text h1 {
    font-size: 36px;
    font-weight: 639;
    padding-bottom: 2.5rem;
    display: inline-block;
  }

  .text-section-3 .text .written {
    color: #555;
    line-height: 1.8;
    display: inline-block;
    width: fit-content;
    max-width: 82%;
    padding-bottom: 15px;

  }

  .img-section-3 {
    background: url('../assets/updatedpic-2.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .section-4 {
    background-color: black;
  }

  .section-4-logo {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }



  .section-4-logo div img {
    width: 80%;
    height: 150px;
    aspect-ratio: 2/2;
    object-fit: contain;
  }

  .section-4 h2 {
    padding-top: 5rem;
    text-align: center;
    color: white;
  }

  .photo-card {
    position: relative;
    display: inline-block;
    margin-bottom: 80px;
    padding-top: 30px;
  }

  .photo-card img {
    width: 100%;
    height: 500px;
    /* border-radius: 4px; */
  }

  .text-card {
    position: absolute;
    bottom: -70px;
    left: 60%;
    transform: translateX(-50%);
    width: 90%;
    background: #8a8a8a;
    padding: 15px;
    /* border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    color: white;
  }

  .text-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .text-card p {
    margin: 10px 0;
    font-size: 14px;
  }

  .row-team {
    /* border-bottom: 2px double white; */
    background-color: #16163f;
    color: white;
  }

  .row-team h1 {
    padding-left: 80px;
    font-size: 2.7rem;
    border-bottom: 2px double white;
    padding-bottom: 15px;
  }

  .founder-img{
    padding-top: 3rem;
  }
  .founder-img img {
    object-fit: contain;
    width: 61%;
  }
  .our-row{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .row-2 img {
  padding-top: 50px;
}
.row-2 h2 {
  padding-top: 30px;
}
.para p {
  display: inline-block;
  width: fit-content;
  max-width: 72.9%;
  padding-top: 20px;
}
.our-img img {
  width: 25%;
  margin-bottom: 2rem;
  object-fit: contain;
  padding-top: 20%;
  filter: grayscale(100%); 
}
.founder-name{
  padding-top: 4rem;
}
.visson p{
  max-width: 340px;
}
.img-take{
  margin-top: 2rem;
  
}
.img-border{
  border-right: 2px solid gray;
  border-left: 2px solid gray;
}
.img-take img{
  object-fit: contain;
  width: 13%;
  filter: grayscale(100%);  
}
.msoon {
  border-left: 2px solid gray;
  border-right: 2px solid gray;
}
.service-icon img{
  object-fit: contain;
 width: 45%;
 padding-bottom: 2rem;
}
}

.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  margin: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  min-height: 60px;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #007bff;
}

.client-name {
  font-weight: 600;
  margin-top: 5px;
  font-size: 1rem;
  color: #333;
}

.client-role {
  color: #777;
  font-size: 0.85rem;
}
.col-4 h3 {
  font-weight: bold;
}