
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", 
  "Noto Sans", "Liberation Sans", Arial, sans-serif, 
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 50px;
  justify-content: space-evenly;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

header.sticky {
  background: white;
 padding: 10px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 14px;
  font-weight:800;
  color: #000;
}
.logo img{
  height: 10vh;
  filter: brightness(0) invert(1);
}
header.sticky img{
 filter: none;
}
.nav{
 display: flex;
 justify-content: space-evenly;
 list-style: none;
 text-align: left;
 align-items: flex-start;
}

.nav a {
  margin-left: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header.sticky .nav a {
  color: black;
}
.contact{
  background-color: transparent;
  color:white;
  border: 1px solid white;
  padding: 10px 20px;
  }
  .contact:hover{
    background-color: #C62828;
    border: 1px #C62828 solid ;
  }
  .contact a{
    color: white;
    text-decoration: none;
    font-size: medium;
  }
  header.sticky .contact{
    border: 1px solid #2c2c2c;

  }
  header.sticky .contact a{
    color: #2c2c2c;
  }
  header.sticky .contact:hover{
    background-color: #C62828;
    border: 1px solid #C62828;
  }
  header.sticky .contact:hover a{
    color: white;
  }
  .dropdown-menu{
    position: absolute;
    background-color: white;
    color: #000;
    border-radius: 2%;
    list-style: none;
    top:96px;
    padding: 10px 0px;
    border: 1px solid rgb(209, 205, 205);
    text-align: left;
    max-width: 80%;
    display: none;
  }
  .dropdown-menu li{
    padding-right: 10px;
  }
  .dropdown-menu a{
    gap:15px;
    font-size:medium;
    font-weight: 450;
    color: #4d4d4d;
    line-height:2rem;
  }
  #services:hover .dropdown-menu{
    display: block;
  }
  .dropdown-menu li:hover{
    background-color: rgb(236, 236, 236);
  }
li i{
  font-weight: 100;
  padding-left: 6px;
  font-size: small;
}
.dropdown-menu2 a{
    gap:15px;
    font-size:medium;
    font-weight: 450;
    color: #4d4d4d;
    line-height:2rem;
  }
  .dropdown-menu2{
    position: absolute;
    background-color: white;
    color: #000;
    border-radius: 2%;
    list-style: none;
    border: 1px solid rgb(209, 205, 205);
    max-width: 300px;
    display: none;
    top: -1px;
    right: -170px;
  }
 
  .dropdown-menu2 li:hover{
    background-color: rgb(236, 236, 236);
  }
  .dropdown-menu li:hover .dropdown-menu2{
    display: block;
  }

.insite{
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 2%;
  list-style: none;
  top:96px;
  border: 1px solid rgb(209, 205, 205);
  text-align: left;
  /* display: none; */
  /* right:200px; */
  padding: 0px;
  margin: 0px;
  border-radius: 3%;
}
.insite a{
  font-size:medium;
  font-weight: 450;
  color: #4d4d4d;
}
.insite li{
  align-items: center;
  text-align: center;
  margin-left: -20px;
  padding: 10px 20px;
  padding-right: 70px;
  font-weight: 100;
  font-size: small;
}
.insite:hover {
  background-color: rgb(236, 236, 236);
}
#blog:hover .insite{
  display: block;
}
header.sticky .insite a{
  color: #504f4f;
}
header.sticky .insite{
    top: 56px;
}
#blog:hover .dropdown-menu2{
  display: block;
}
  header.sticky .dropdown-menu{
    top:56px
  }
  header.sticky .dropdown-menu a{
    color: #504f4f;
  }
.hero {
  background: url('../images/image.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-content button {
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #C62828;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form {
  background: white;
  padding: 30px;
  width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top:160px;
  right: 140px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #2c2c2c;
  font-weight: 100;
}

.contact-form p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #ffeded;
}

.contact-form textarea {
  resize: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 10px;
}

.row input {
  flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: none;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid rgb(162, 203, 216);
  outline: none;
}

.recaptcha-box {
  display: flex;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 6px;
  color: #2c2c2c;
  width: 70%;
  height: 70px;
  align-items: center;
  justify-content:space-evenly;
  background-color: #ffeded;
  gap: 5px;

}
#recaptcha{
  border-radius: 0px;
  border: 1px solid gray;
  width: 30px;
  margin-bottom: 0px;
  
}
.recaptcha-box input[type="checkbox"] {
  transform: scale(1.5);
  margin: 0 10px 0 0;
}

button {
  background-color: #C62828;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #c52e2e;
}
.bim-section {
  padding: 50px 20px;
  background-color:white;
}

.bim-container {
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.bim-left {
  flex: 1 1 40%;
  text-align: center;
}

.bim-left img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-top: 39px;
}

.bim-right {
  flex: 1 1 55%;
}

.bim-right h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}

.bim-right p {
  margin-bottom: 20px;
  line-height: 1.6;

}
.stats-wrapper {
  background-color: #C62828;
  padding: 50px 40px;
  border-radius: 30px;
  border-top-left-radius: 0px;
  max-width: 1100px;
  margin: 0px auto;
  margin-top: -60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: white;
}

.stat-box {
  padding: 35px 15px;
  text-align: center;
}
.border{
  border: 1px solid #f09393 ;
  background-color:#eb6363 ;
}
.stat-box h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 17px;
  margin: 0;
}

.section {
  background: #f9c6c6	;
  text-align: center;
  max-width: 850px;
  margin: 10px auto;
}
.section h1 {
  font-size: 42px;
  font-weight:bold;
  color: #000;
  line-height: 3rem;

}
.section p {
  font-size: 18px;
  margin-top: 10px;
  color: #222;
}
.services {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  padding-bottom: 80px;
  margin-bottom: 0px;
}
.service-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 530px;
  padding: 40px;
  position: relative;
  text-align: left;
  transition: transform 0.3s ease-in-out;
  
}
.service-box:hover {
  transform: translateY(-10px);
}
.vertical-line {
  width: 1px;
  height: 80px;
  background-color:#f19c9c;
  position: absolute;
  top: 35px;
  left: 57px;
  z-index: 0;
}
.icon img{
  height: 40px;
}
.icon {
  width: 60px;
  height: 60px;
  background: #C62828;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position:absolute;
  top: -25px;
  left: 30px;
}
.service-box h2 {
  color: #C62828;
  font-size: 27px;
  line-height: 1.2;
  padding-left: 61px;
  font-weight: 550;
}
.service-box p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  padding-left: 61px;
}
.services a{
  text-decoration: none;
}

.bim-banner {
  position: relative;
  background-color: #521010;
  color: white;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 80px;
}


.bim-content {
  position: relative;
  z-index: 1;
}

.bim-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px;
}

.bim-content p {
  font-size: 16px;
  margin: 0;
}

.bim-button {
  position: relative;
  z-index: 1;
}

.bim-button button {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bim-button button:hover {
  background: white;
  color: #C62828;
}
.container {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.container h1 {
  font-size: 2.7rem;
  font-weight: 700;
  width: 1000px;
  margin: auto;
  line-height: 2.7rem;
  margin-top: -90px;
}

.subtitle {
  font-size: 1.3rem;
  color: #1b1b1b;
  margin: 10px 0 20px;
}

.description {
  font-size: 1.3rem;
  color: #1d1d1d;
  margin-bottom: 40px;
  max-width: 1160px;
  margin: auto;
  line-height: 2rem;
  padding-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
  justify-content: center;
}

.card {
  flex: 1 1 300px;
  max-width: 350px;
  border-top: 1px solid #302f2f;
  padding-top: 20px;
  text-align: left;
}

.card-title {
  color: #C62828;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.card p{
  line-height: 1.6rem;
}
.section-2 {
  padding: 40px 20px;
  /* margin: auto; */
  max-width: 1000px;
  background-color: white;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.intro {
  font-size: 1rem;
  color: #333;
  margin-bottom: 40px;
  
}

.content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #C62828;
  position: relative;
  padding: 0;
  flex-wrap: wrap;
}

.features {
  padding: 50px 20px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  background: transparent;
  color: white;
  max-width: 700px;
}

.feature-box {
  background: white;
  color: black;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: #C62828;
  color: white;
}

.feature-box.blue {
  background-color: #C62828;
  color: white;
}

.feature-box.blue:hover {
  background-color: #C62828;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.image-container {
  flex: 1;
  min-width: 300px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 50%;
}
.section-2 {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.section-2 h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-align: left;
}
.head{
  font-size: 1.3rem;
  color: #080808;
}
.intro {
  font-size: 1.06rem;
  color: #161616;
  max-width: 60%;
  margin-bottom: 0px;
  text-align: left;
  padding-right: 27px;
  line-height: 1.7rem;
}

.image-wrapper {
  flex: 1;
  min-width: 300px;
  margin-top: 0px;
  padding-top: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
 background-color: #9c2020;
 overflow: visible;
 position: relative;
}

.image-wrapper img {
  height: auto;
  border-radius: 100%;
  float: right;
  max-width: 35%;
  margin-top: -20%;
  margin-right: 90px;
  position: relative;
}

.features-bar-1 {
  color: white;
  display: grid;
  justify-content: space-around;
  padding-left:70px;
  grid-template-columns: auto auto auto;
  gap: 10px;
  max-width: 1070px;
  overflow: visible;
}

.feature-box {
  background: white;
  color: black;
  padding: 45px;
  margin: 10px;
  width: 305px;
  transition: all 0.3s ease;
  border: #525151;
  box-shadow: 0 0 10px rgba(26, 25, 25, 0.1);
  position: relative;
  top:-170px;
}

.feature-box:hover {
  background: #C62828;
  color: white;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.collab-section {
  position: relative;
  padding-top: 80px;
  margin-bottom: 0px;
}

.img-container {
  position: relative;
  width: 60%;
  margin: auto;
  margin-top: -200px;
  margin-bottom: -200px;
}

.blue-bar {
  position: absolute;
  width: 100px;
  height: 70%;
  background-color: #811b1b;
  top: 50px;
  left: -80px;
  z-index: 1;
}

.img-container img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.text-box {
  position: absolute;
  bottom: -80px;
  right: 0;
  background: white;
  padding: 30px;
  width: 66%;
  margin-right: -170px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 3;
  padding-right:70px ;
}

.text-box p {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}

.text-box h2 {
  font-size: 2.6rem;
  margin: 10px 0 0;
  line-height: 2.5rem;
  font-weight: bold;
}
   .steps-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 40px 20px;
      background-color: #f7d1d1;
      padding-top: 300px;
    }

    .step-card {
      position: relative;
      background: #fff;
      width: 220px;
      margin: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .step-number {
      position: absolute;
      top: -12px;
      right: 20px;
      background:#f5acac;
      border: 1px solid #ddd;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
    }

    .step-icon {
      margin-bottom: 20px;
      color:#C62828 ;
    }

    .step-label {
      color: #ec8181;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .step-title {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.3;
      color: #161616;
    }

    .cta-wrap1 {
      background: white;
      color: #C62828;
      padding: 20px 20px;
      position: relative;
      overflow: hidden;
      margin-top: 0px;
    }

    .cta-wrap1::before,
    .cta-wrap1::after {
      content: '';
      position: absolute;
      bottom: 0;
      top: 0;
      width: 300px;
      background: rgba(255, 255, 255, 0.05);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: 0;
    }

    .cta-wrap1::after {
      left: 120px;
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .cta-wrap1::before {
      left: 0;
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .custom-container {
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    .cta-box {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.2;
      max-width: 60%;
    }

    .btn-primary {
      background: #C62828;
      color: #fffafa;
      padding: 15px 25px;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.3s ease;
    }

    .btn-primary:hover {
      background: #d42c2c;
    }

    .section-heading {
      text-align: center;
      padding: 40px 20px 10px;
    }
    .section-heading p {
      font-size: larger;
      font-weight: 400;
      color: #424242;
    }
    .section-heading h2 {
      margin-top: 0px;
      font-size: 3rem;
      padding-bottom: 30px;
    }
  
    .frq{
      margin-top: 220px;
    }

    .footer {
      background:#6e2e2e;
      color: #ccc;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 50% 50%;
      padding-bottom: 20px;
      margin-left: 50px;
    }

    .certifications img {
      height: 50px;
      margin-right: 10px;
    }
    .contact-info p {
      margin: 10px 0;
      color: #ccc;
      max-width: 250px;
      
    }

    .contact-info a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: x-large ;
    }
    .contact-info i{
      font-size: 55px;
      color:rgb(176, 221, 176);
    }
    .icons{
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    hr {
      border: none;
      border-top: 1px solid #444;
      margin: 20px 0;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer-logo img {
      height: 40px;
    }

    .footer-logo p {
      color: #ccc;
      font-size: 14px;
      margin-top: 10px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 20px;
    }

    .footer-links .column {
      min-width: 150px;
    }

    .footer-links h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #fff;
    }

    .footer-links a {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .social-icons a img {
      height: 20px;
      margin-right: 10px;
    }
    
    @media (max-width: 768px) {
      .cta-box {
        flex-direction: column;
        align-items: flex-start;
      }
      .cta-title {
        max-width: 100%;
        font-size: 1.3rem;
      }
    }


@media screen and (max-width: 768px) {
  .image-container {
    width: 95%;
  }

  .text-box {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: -20px;
  }

  .text-box h2 {
    font-size: 1.6rem;
  }
}


@media screen and (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }

  .intro {
    max-width: 100%;
  }

  .features-bar {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .features {
    max-width: 100%;
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }

  .image-container img {
    border-radius: 0;
  }
}


@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .contact-form {
    width: 100%;
    margin-top: 20px;
  }
}
