* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {

  color: rgb(255, 255, 255);
  margin: 0;
  font-family: "Genos", sans-serif;
  background-color: #000;
}

h1 {
  font-family: "Genos", sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 60px;
}

h3 {
  font-size: 48px;
  font-weight: 400;
  line-height: 38px;
}

p {
  font-size: 40px;
  font-weight: 400;
  line-height: 30px;
}

button {
  font-family: "Genos", sans-serif;
  font-size: 35px;
  font-weight: 400;
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid #02a3dd;
  background: white;
  color: black;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

button:hover {
  box-shadow: 0 0 15px 5px #02a3dd; /* Glowing effect */
  background-color: #02a3dd; /* Optional: Change background on hover */
  color: white; /* Optional: Change text color on hover */
}

span {
  color: #02a3dd;
}
a{
font-size: 24px;
font-weight: 700;
text-decoration: none;
color: #fff;

}

.commonSectionSpecing{
  padding: 150px 0;
  border-bottom: 1px solid #fff;
}

/* header */
.navbar-nav .nav-link {
    margin-left: 20px;
    font-size: 30px;
    font-weight: 400;
    color: #fff; /* Text color */
    transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .navbar-nav .nav-link:hover {
    color: #00bcd4; /* Change text color on hover */
    text-shadow: 0 0 10px #00bcd4, 0 0 20px #00bcd4, 0 0 30px #00bcd4;
  }
  

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* header */

/* hero */
.heroSection {
  height: calc(100vh - 62px);
}
.herosectionWrapper{
  border-bottom: 1px solid #fff;
}
/* hero */


/* business section */
.businessSection {
  position: relative;
}
.businessButtomImage {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
/* business section */

/* about atom virtual */
.atomVirtual {
  position: relative;
}
.aboutAtomVirtualBottomImage {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
/* about atom virtual */

/* our services */
.ourService .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border: 2px solid #02a3dd; /* Cyan border */
  border-radius: 10px;
  width: 340px; /* Fixed width for uniformity */
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #02a3dd;
}
.service-card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 20px;
}
/* our services */


/* how it works */
.howItWorks p{
    font-size: 32px;
}
/* how it works */

/* why choose us */
.whyChooseUs p{
  font-size: 32px;
  margin-bottom: 30px;
}
.whyChooseUsRow{
  margin-top: -165px;
  
}
/* why choose us */

/* success story */
.successStories {
  position: relative;
}

.succssstoriesbg {
  position: absolute;
  top: 0;
  left: 10%;
  z-index: -1;
}

.story1{
  border: 1px solid #02a3dd;
  border-radius: 15px;
  padding: 20px;
}
.prson{
font-size: 24px;
font-weight: 500;
color: #02a3dd;
}
.designation{
font-size: 24px;
font-weight: 500;
color: #02a3dd;
}
.mainStory{
font-size: 24px;
font-weight: 400;
line-height: 30px;
color: #fff;
}
/* success story */
footer{
  padding: 80px 0;
}
footer p{
  font-size: 24px;
}

/* Media Queries for Mobile */
@media (max-width: 991px){
  .commonSectionSpecing{
    padding: 130px 0;
  }
  .succssstoriesbg {
    left: 0%;
  }
  .whyChooseUsRow{
    margin-top: -80px;
  }
}
@media (max-width: 768px) {
  .story1{
    margin-bottom: 20px;
  }
  .whyChooseUs p {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .howItWorks p {
    font-size: 24px;
  }
  .commonSectionSpecing{
    padding: 100px 0;
  }
  .whyChooseUsRow{
    margin-top: -50px;
  }
  h1 {
    font-size: 40px;
    line-height: 33px;
  }

  p {
    font-size: 24px;
    line-height: 30px;
  }
  h3 {
    font-size: 40px;
  }
}
