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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

.main-container {
  /* padding: 2rem; */
  padding-top: 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  /* max-width: 900px; */
  width: 100%;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  /* margin-top: -50px; */
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

/* .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.card {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 10px;
  font-weight: 600;
} */

.button-wrapper {
  animation: fadeIn 1s ease-out 1s backwards;
}

.start-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.start-btn:hover {
  background-color: #333;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }
  
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #d5f0ff43;
  /* border-radius: 10px; */
  color: #222;
  text-align: center;
  animation: fadeIn 1s ease-out 1.2s backwards;
  height: auto;
  flex-wrap: wrap;
  display: flex;
}

.about-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.about-text {
  margin: 30px;
  background-color: white;
  padding: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.why-us-section{
  display: flex;
  height:auto;
  margin-top: 25px;
  animation: fadeIn 1s ease-out 1.2s backwards;
  /* justify-content: center; */
   flex-direction: column;
}
.why-us-heading{
  display: flex;
  justify-content: center;;
}
.why-us-section h2{
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  
}

.row{
  display: flex;
}
.logoDiv{
  flex: 20%;
  /* padding-left: 60px; */

}
.navDiv{
  flex:20%;
}
.extraDiv{
  flex:40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Header style with rounded corners */
/*  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px; 
 background-color: hsl(0, 0%, 100%);
  color: black;
  border-radius: 15px;  /* Rounded corners */
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */  /* Optional: add some shadow for effect */
   /*Optional: space around the header */
 /* margin-top: -150px;
  margin-left: 800px; */
/* }  */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
   position: sticky;
  top: 0;
  z-index: 999;
}
.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    /* right: 0; */
    width: 200px;
    padding: 1rem;
    z-index: 100;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/*  header  {
  height: 100px ;  
}  */
.logo {
  height :350px;
  width: auto;
  display:flex; /* keeps the image on the top left */ 
}
img{
  height:100%;
}
 header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 30px;
}

header nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

.features-section {
  margin-top: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
  justify-content: center;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #0078d4;
}

.container1{
  flex:50%;
  background-color: #f5f5f5;
}
.container2{
  flex:50%;
  background-color: #eaeaea;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
}
.grid-item {
  background-color: #2d89c2;
  padding: 2rem;
  color: white;
  /* border-radius: 10px; */
  text-align: center;
  font-weight: bold;
  border-color: #F2994A;
}
.grid-item-text:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
.grid-item-text{
  padding:40px;
  /* font-weight: bold; */
}
@media (max-width: 768px) {
  .grid-item-text{
    padding: 0px;
  }
}


.features-grid{
   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  /* margin: 2rem 0; */
  /* width: 100%; */
  padding:30px;
  align-self: center;
}
/* Mobile: Stack into 1 column */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-section {
  margin-top: 4rem;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-columns {
  display: flex;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid #ccc;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: transform 0.3s, z-index 0.3s;
  position: relative;
}

.pricing-card:hover {
  z-index: 3;
  transform: scale(1.05);
}

.pro {
  margin-top: -2rem;
  z-index: 2;
  border-color: #000;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
}


/* Enhanced contrasting pricing cards */
.pricing-card.basic {
  background-color: white;
   /* #e3f2fd; */
  border-color: #2196f3;
  color: #0d47a1;
}

.pricing-card.pro {
  /* background-color: #fff3e0;
  border-color: #ff9800;
  color: #e65100; */
  background-color: #e3f2fd;
  border-color: #2196f3;
  color: #0d47a1;
}

.pricing-card.enterprise {
  background-color: #fff3e0;
  border-color: #ff9800;
  color: #e65100;
}
@media (max-width: 768px) {
  .pricing-columns {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .pricing-card {
    width: 90%;
    margin-bottom: 1rem;
    transform: none !important;
  }

  .pro {
    margin-top: 0;
  }
}

.video-section {
  margin-top: 4rem;
  text-align: center;
  background-color: rgba(45, 137, 194, 0.3); /* #2d89c2; */
  padding: 1.5rem;
}
.video-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.video-div{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin: 2rem;
}

video{
  max-width: 100%;
  height: auto;
}

/* card  */
.container .card .icon {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: white
     /* #2c73df; */

}

.container .card .icon .fa {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 80px;

    color: #fff;

}

.container .card .slide {

    width: 300px;

    height: 200px;

    transition: 0.5s;

}

.container .card .slide.slide1 {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 1;

    transition: .7s;

    transform: translateY(100px);

}

.container .card:hover .slide.slide1{

    transform: translateY(0px);

}

.container .card .slide.slide2 {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    box-sizing: border-box;

    transition: .8s;

    transform: translateY(-100px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);

}

.container .card:hover .slide.slide2,
.container .card.active .slide.slide2 {

    transform: translateY(0);

}

.container .card .slide.slide2::after{

    content: "";

    position: absolute;

    width: 30px;

    height: 4px;

    bottom: 15px;

    left: 50%;

    left: 50%;

    transform: translateX(-50%);

    background: #2c73df;

}

.container .card .slide.slide2 .content p {

    margin: 0;

    padding: 0;

    text-align: center;

    color: #414141;

}

.container .card .slide.slide2 .content h3 {

    margin: 0 0 10px 0;

    padding: 0;

    font-size: 24px;

    text-align: center;

    color: #414141;

} 
.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-div {
  background-color: #f5f5f5;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 600;
  /* width: 20%; */
}

.arch-card {
  width: 260px;
  background: white;
  border-radius: 140px 140px 16px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-top: 60px;
  position: relative;
  margin: 3rem auto 2rem;
  height: 24rem;
}

.icon-circle {
  position: absolute;
  /* top: -30px; */
  left: 50%;
  transform: translateX(-50%);
  background: #1976d2;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
  padding: 1.2rem;
  margin-top: 4rem;
}

.card-content h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #222;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 1rem;
  justify-items: center;
}
.picture-div {
  flex: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
  --d: 10s;
  display: grid;
  overflow: hidden;
  width: 20rem;
  padding: 2rem;
  -webkit-mask: linear-gradient(90deg, #0000, #000 10% 90%, #0000);
  mask: linear-gradient(90deg, #0000, #000 10% 90%, #0000); /* Standard property */
}

.gallery > img {
  grid-area: 1/1;
  width: 100%;
  /* aspect-ratio: 1.5; */
  height: auto;
  object-fit: cover;
  animation: r var(--d) linear infinite;
}

/* Replacing @for loop manually */
.gallery > img:nth-child(2) {
  animation-delay: calc((-1/5) * var(--d));
}
.gallery > img:nth-child(3) {
  animation-delay: calc((-2/5) * var(--d));
}
.gallery > img:nth-child(4) {
  animation-delay: calc((-3/5) * var(--d));
}
.gallery > img:nth-child(5) {
  animation-delay: calc((-4/5) * var(--d));
}

@keyframes r {
  80% {
    transform: translate(-400%);
  }
  80.01% {
    transform: translate(100%);
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery > img{
    width:100%;
    height: 50%;
  }
}

.site-footer{
  background-color: black;
  height: auto;
}
.footer-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  color: white;
}
