* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "General Sans", sans-serif;
  font-style: normal;
}

/* navbar */
.nav-item span {
  color: var(--redAccent);
}
.nav a {
  display: block;
  text-decoration: none;
  color: var(--black);
}
.main {
  height: 100vh;
}

.contact-child {
  position: absolute;
  top: 65.18%;
  right: 0%;
  left: 0%;
  overflow: hidden;
  background-size: cover;
  width: 1800px;
  height: 415px;
}
.isnt-just-technology {
  color: var(--darkGray);
}
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}
.item-container {
  display: flex;
  gap: 50px;
}
.here-ai-isnt-container {
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 120%;
  text-align: left;
  display: inline-block;
  max-width: 425px;
}
.full-name-wrapper {
  align-self: stretch;
  border-radius: var(--br-3xs);
  background-color: var(--lightGray);
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: var(--padding-3xs) 10px var(--padding-3xs) var(--padding-sm);
  box-sizing: border-box;
  border: none;
}

.discuss-with-us-wrapper {
  align-self: stretch;
  border-radius: var(--br-3xs);
  background-color: var(--lightGray);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: var(--padding-3xs) 140px 90px var(--padding-sm);
  border: none;
}
.frame-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.frame-group input:focus,
.frame-group textarea:focus {
  outline: none;
}
.submit {
  position: relative;
  letter-spacing: -0.03em;
  line-height: 140%;
}
.submit-wrapper {
  border-radius: var(--br-3xs);
  background-color: var(--yellowAccent);
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: var(--padding-3xs) var(--padding-mini);
  box-sizing: border-box;
  color: var(--mediumGray);
  font-weight: 500;
  border: none;
  transition: 0.3s;
}

.submit-wrapper:hover {
  background-color: var(--hover);
}

.frame-parent {
  max-width: 313px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  color: var(--darkGray);
  z-index: 20;
}

.contact {
  width: 100%;
  position: relative;
  background-color: var(--white);
  height: 100vh;
  overflow: hidden;
  text-align: center;
  font-size: var(--font-size-14-xs);
  color: var(--redAccent);
  font-family: var(--font-general-sans);
}

/* responsive styles using media query - mobile and smaller screens */
@media (max-width: 767px) {
  .heading {
    font-size: 3rem;
  }

  .subheading {
    font-size: 1.5rem;
    color: var(--mediumGray);
  }
  .contact-content {
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .item-container {
    display: block;
    position: relative;
  }
  .here-ai-isnt-container {
    padding-bottom: 30px;
    font-size: 24px;
    width: 311px;
    z-index: 1;
  }
  .frame-parent {
    top: 325px;
    left: 15px;
    width: 313px;
  }
}

/* Tablets and iPads */
@media (min-width: 768px) and (max-width: 1024px) {
  .main-section {
    padding: 48px;
  }
  .item-container {
    gap: 20px;
  }
  .heading {
    font-size: 3rem;
  }

  .subheading {
    font-size: 1.5rem;
    color: var(--mediumGray);
  }
}

.footer {
  background-color: var(--white);
  padding: 40px 0;
  border-top: 2px solid #ddd;
}
.footer .logo {
  font-size: 30px;
  font-weight: bold;
  color: var(--darkGray);
}
.footer .logo span {
  color: var(--redAccent); /* Red color for Aarohaa logo */
}
.footer h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer a {
  text-decoration: none;
  color: var(--darkGray);
}
.footer a:hover {
  color: var(--redAccent);
}
.footer .social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: var(--darkGray);
}
.footer .social-icons a:hover {
  color: var(--redAccent);
}
.footer .address {
  font-size: 14px;
  color: #777;
  margin-top: 15px;
}
.footer .copyright {
  font-size: 14px;
  color: #777;
  margin-top: 40px;
  text-align: center;
}
.footer .footer-links li {
  margin-bottom: 8px;
}
.footer .footer-links li a {
  font-size: 14px;
}
/* Card container styles */
.custom-card {
  background-color: var(--lightGray); /* Light gray background */
  border-radius: 15px; /* Rounded corners */
  padding: 20px;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.custom-card:hover {
  transform: translateY(-5px); /* Hover lift */
  box-shadow: 0 6px 12px var(--customCardHover); /* Stronger shadow on hover */
}

/* Title styles */
.custom-card h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--darkGray); /* Black text for the title */
}

/* Divider styles */
.custom-card hr {
  border: 0;
  height: 1px;
  background: var(--lineColor); /* Light gray divider */
  margin: 10px 0;
}

/* List styles */
.custom-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.custom-card li {
  margin-bottom: 10px;
}

.custom-card a {
  text-decoration: none;
  color: var(--mediumGray); /* Dark gray text for links */
  font-size: 16px;
}

.custom-card a:hover {
  color: var(--redAccent); /* Bootstrap primary blue on hover */
}
/* Card container styles */
/* Card styles */
.custom-card {
  background-color: var(--lightGray); /* Light gray background */
  border-radius: 15px; /* Rounded corners */
  padding: 15px; /* Adjusted padding for smaller size */
  height: 200px; /* Reduced height for cards */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Ensure spacing between items */
  overflow: hidden; /* Prevent content overflow */
}

.custom-card h5 {
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
}

.custom-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.custom-card li {
  margin-bottom: 5px;
}

.custom-card a {
  text-decoration: none;
  color: var(--mediumGray); /* Dark gray links */
  font-size: 14px; /* Smaller font size for links */
  font-weight: 500;
}

.custom-card a:hover {
  color: var(--redAccent); /* Bootstrap primary blue on hover */
}

/* Consistent <hr> positioning in cards */
.custom-card hr {
  margin-top: 1px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid var(--lineColor); /* Light gray border for <hr> */
}

/* Footer styles */
.footer-logo img {
  max-width: 250px; /* Increased width of the logo */
  height: auto; /* Maintain aspect ratio */
}

.footer-address {
  font-size: 14px;
  color: var(--darkGrayOpacity);
  margin-top: 15px;
}

/* Footer Bottom Styles */
.footer-bottom {
  font-size: 14px;
  color: #777;
}

.footer-bottom a {
  text-decoration: none;
  color: inherit;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.my-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("../images/mountain-2.png") no-repeat center center;
  background-size: cover;
}
