* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: white;
  background-size: cover;
  color: black;
}

/* Navbar */

#navbar {
  display: flex;
  justify-content: space-between;
  height: 70px;
  padding: 10px 30px;
  align-items: center;
  gap: 50px;
  border-radius: 10px;
  background: #030a17b2;
  backdrop-filter: blur(3px);
  margin: 20px 50px;
  position: fixed;
  width: calc(100% - 100px);
  z-index: 100;
}

@media (max-width: 1024px) {
  #navbar {
    width: 50%;
    left: 0;
    align-items: center;
    right: auto;
    padding: 10px 20px;
    margin: 20px auto;
  }
}

#navbar .logo img {
  max-width: 250px;
}

#navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  font-weight: 700;
}

#navbar .nav-links li {
  position: relative;
}

#navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 20px;
  margin-top: 10px;

  transition: color 0.3s ease, background 0.3s ease;
}

#navbar .nav-links a:hover {
  color: rgba(0, 118, 252);
}

#navbar .nav-links a.active {
  color: rgba(0, 118, 252);
  pointer-events: none;
}

#navbar .nav-buttons {
  display: flex;
  gap: 10px;
}

#navbar .btn.demo {
  width: auto;
  height: auto;
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  background: rgba(0, 118, 252, 0.8);
  box-shadow: none;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-left: auto;
  font-weight: 700;
}

#navbar .btn.demo:hover {
  background: rgba(0, 118, 252, 1);
}
/*Hero Section*/
.hero1 {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-color: #f4f4f4;
  text-align: center;
  padding: 50px 20px;
  background: url('images/products_page.jpeg') no-repeat center center fixed;
  background-size: cover;
  z-index: -1;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero1 h1 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 130px;
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin-top: 40px;
  margin-left: 30px;
  z-index: 1;
  position: absolute;
}

.hero1 p {
  font-size: 1.1rem;
  color: white;
  margin-left: 30px;
  margin-top: 150px;
  position: absolute;
  z-index: 1;
}

/*Welcome Section*/
.welcome1 {
  text-align: left;
  margin-top: 100px;
  margin-left: 50px;
  height: 100vh;
}

.welcome1 .line1 {
  font-weight: 700;
  font-size: 50px;
  color: black;
}

/* Grid Container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin-top: -190px;
  margin-left: 450px;
  margin-bottom: 200px;
  padding-bottom: 100px;
}

/* Box Styling */
.grid-container div {
  background: white;
  border: 1px solid rgb(208, 201, 201);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: 350px;
  min-height: 150px;
}

.grid-container h2 {
  font-weight: 700;
  font-size: 30px;
  color: #333;
  margin-bottom: 8px;
}

.grid-container h3 {
  font-weight: 400;
  font-size: 18px;
  color: #313f57;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Contact Us section */

.contact-us img {
  margin-top: -52px;
  width: 583px;
  height: 618px;
  border-radius: 10px 0 0 10px;
}

.contact-image {
  width: 100%;
  height: 665px;
  border-radius: 10px 0 0 10px;
}

.contact-us-container .contact-us-text {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  color: #fff;
}

.contact-us-container {
  position: relative;
  width: 583px;
  height: 565px;
}
.contact-us-text h1 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 130px;
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin-top: -100px;
  margin-right: 30px;
  z-index: 10;
  position: absolute;
}

.contact-details img {
  width: 28px;
  height: 28px;
  margin-top: 20px;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 17px;
  position: absolute;
  top: 40%;
  left: 60px;
}

.contact-us p {
  font-size: 24px;
  font-weight: 400;
  margin-top: 40px;
  color: #fff;
}

.contact-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 50px 0 0;
  border: 2px solid #ccc;
  border-radius: 10px;

  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: -100px;
  position: relative;
}

.contact-details-mail {
  display: flex;
  align-items: center;
  gap: 17px;
  position: absolute;
  top: 50%;
  left: 60px;
}

.contact-details-mail img {
  width: 28px;
  height: 28px;
  margin-top: 25px;
}

.contact-details-mail p {
  font-size: 24px;
  font-weight: 400;
  color: white;
}
.contact-form {
  width: 45%;
  padding: 20px;
  margin-top: -100px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form p {
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group {
  width: 45%;
}

textarea {
  height: auto;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type='text'],
input[type='tel'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #ccc;
}

.form-group-company {
  width: 100%;
  margin-top: 44px;
}

.form-row.mobile-email {
  margin-top: 44px;
}

.form-group-message {
  margin-top: 44px;
}
textarea {
  height: 50px;
}
.social-media {
  display: flex;
  gap: 32px;
  align-items: center;
  position: absolute;
  top: 95%;
  left: 180px;
}

.social-media img {
  width: 48px;
  height: 48px;
}

button[type='submit'] {
  display: inline-block;
  background-color: white;
  padding: 14px 32px;
  border: 2px solid;
  border-radius: 10px !important;
  border-image-source: linear-gradient(
    266.69deg,
    rgba(0, 117, 250, 0.95) 2.47%,
    rgba(108, 205, 188, 0.95) 50.44%,
    rgba(0, 117, 250, 0.95) 99.58%
  );
  border-image-slice: 1;
  cursor: pointer;
  margin-top: 20px;
  color: black;
  text-decoration: none;
  font-weight: 700;
}

/* As Seen In section */
.as-seen-in {
  background-color: #fff;
  height: auto;
  margin-top: 110px;
  text-align: center;
  margin-bottom: 50px;
}

.as-seen-in h3 {
  margin-bottom: 10px;
  color: rgb(47, 46, 46);
  text-align: center;
  font-weight: 700;
}

.as-seen-in img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* footer */
.footer {
  background-color: #010114;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-column {
  flex: 1;
  margin: 10px;
}

.footer-column h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}

.footer-column.subscribe p {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.footer img {
  max-width: 250px;
  margin-bottom: 30px;
}
.footer p,
.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.footer a:hover {
  text-decoration: underline;
}
.email {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: -30px;
}

.subscribe input[type='email'] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #242a4e;
  color: white;
  flex: 1;
  min-width: 200px;
}

.subscribe input[type='email']::placeholder {
  color: rgb(171, 168, 168);
}

.email button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 30px;
}

.email button img {
  width: 45px;
  height: 45px;
  height: auto;
}

.number {
  font-weight: 400 !important;
}

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: #ffffff;
  font-size: 20px;
}
.copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}

#navbar ul {
  margin-bottom: 0px !important;
}
