@import url(https://fonts.googleapis.com/css?family=Overpass:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

/* VARIABLES */
:root {
  --primary-color: #081b29;
  --secondary-color: #0ef;
  --third-color: #fff;
  --four-color: rgba(0, 200, 217, 0.3);
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Overpass", sans-serif;
}

/* RESET DEFAULT STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  margin-bottom: 1rem;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-primary {
  color: var(--third-color);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.btn {
  display: inline-block;
  max-width: max-content;
  padding: 0.7rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--four-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary {
  border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.section-subheading {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: 3rem;
  max-width: 600px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.section-heading.left {
  margin-right: auto;
}

.section-heading.right {
  margin-left: auto;
}

/* GLOBAL STYLES */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--third-color);
}

section {
  position: relative;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* HEADER */
header {
  padding: 0.4rem;
  width: 100%;
  position: absolute;
  z-index: 999;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.header_logo img {
  width: 100px;
  border-radius: 0.25rem;
}

.header_menu {
  gap: 1rem;
}

.header_menu li a {
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  /* background-color: rebeccapurple; */
}

.header_menu li a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  transition: all 0.3s;
}

header .right {
  gap: 1rem;
}

.menu-btn {
  display: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* HERO */

#hero {
  min-height: 100vh;
}

.hero_content {
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 5rem;
}

.hero_content h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero_content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero_image {

  width: 55%;
  margin-top: 5rem;
}

.hero_image img {
  border-radius: 1.5rem;
}

.video-element {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;

}

.hero_content h1 {
  font-size: 3.2rem;
}

.hero_content_btn {
  display: flex;
  gap: 1rem;
}

.hero_content_btn .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-width: 150px;
  max-width: 150px;
  height: 50px;
  box-sizing: border-box;
  text-align: center;
}

/* ABOUT */

.about_details {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
}

.about_details-content {
  width: 100%;
}

.about_details-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about_details-content p {
  font-size: 0.9rem;
  font-weight: 400;
}

.about_details -img {
  width: 50%;
}

.about_details-image img {
  border-radius: 1.5rem;
  opacity: 0.8;

  transform: perspective(1000px) rotateY(-10deg); /* Tilts the image towards the left */
}

/* Challenges*/

.features {

  margin-top: 5rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.center-content {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;

}

.feature {
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
}

.feature_icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature_title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature_text {
  font-size: 0.9rem;
}

.project_feature_img img {
  border-radius: 1.5rem;
}

/* Sollutions*/

.solution_features {
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  transition: transform 0.3s ease;
}

/* .center-content {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
} */

.solution_feature {
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--third-color);
}

.solution_feature:hover {
  border: 4px solid var(--secondary-color);
  transform: scale(1.05);
}

.solutiom_feature_icon {
  font-size: 2rem;
  color: var(--third-color);
  margin-bottom: 1rem;
}

.solution_feature_title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.solution_feature_text {
  font-size: 0.9rem;
}

/* Projects */

.project_features {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 5rem;
  margin-bottom: 0;
}

.project_feature {
  display: flex;
  gap: 10%;
  align-items: center;
}

.project_feature:nth-child(2),
.project_feature:nth-child(4) {
  flex-direction: row-reverse;
}

.project_feature_img {
  position: relative;
  min-width: 35%;
}



.project_feature_category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.project_feature_title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.project_feature_text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* APPLICATION */

.center-content h2 {
  font-size: 3.2rem;
}
.application-container {
  /* border-top: 2px solid var(--secondary-color); */
  /* border-bottom: 2px solid var(--secondary-color); */
}


.application-btn {

  display: flex;
  justify-content: center;
  padding: 1rem;

}

.application-btn a {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* CONTACT */

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact_form input,
.contact_form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.content_details .text {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--third-color);
}

.contact_form textarea {
  resize: vertical;
}

.content_details {
  display: flex;
  width: 100%;
}

.content_details .details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content_details .detail {
  display: flex;
  gap: 1rem;
}

.detail {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.detail_icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--third-color);
  font-size: 1rem;
  border: 2px solid var(--secondary-color);
}

.detail_content h3 {
  line-height: 0.2;
  /* padding:0; */
}

.detail_content p {
  /* color: #bab5b5; */
  font-size: 3rem;
  font-size: 1rem;
}

.detail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.contact_linkedin {
  font-size: 30px;
}

.detail_content_icon p {
  font-size: 1.5rem;
}

/* FOOTER */

footer {
  padding: 2rem 0;
}

.footer_content {
  font-size: 1rem;
  color: #bab5b5;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer_logo {
  width: 60px;
  margin-bottom: 0.5rem;
}

.footer_bottom-icon {
  display: flex;
  gap: 0.5rem;
}

























/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
 
 
  /* GLOBAL */
 
 
 
 
  .container {
    padding: 0 1rem;
  }

  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    /* background-color: rebeccapurple; */
  }


  .center-content{
    /* background-color: red; */
    /* padding: 1rem; */
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .center-content h2 {
    /* background-color: #0ef; */
    font-size: 2rem;
  }

  /* HEADER */
  .header_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .header_menu.show {
    transform: translateX(0);
  }

  .menu-btn {
    display: block;
    z-index: 99;
  }

  .header_menu li {
    margin: 1rem 0;
  }

  header{
    padding: 0;
     }


  .head_info {
    /* background-color: red; */
  }

  .header_logo{
    width: 22%;
  }
  /* HERO */

  #hero {
    flex-direction: column;
    justify-content: center;
  }

  .hero_content {
    width: 100%;
    text-align: center;
  }

  .hero_content h1 {
    padding-top: 10%;
    font-size: 2rem;
  }

  .hero_content .btn {
    margin: 0 auto;
  }

  .hero_image {
    width: 100%;
  }

  .hero_content_btn {
    flex-direction: column;
  }

  /* VISION */

  .features {
    grid-template-columns: repeat(1fr);
  }

  .feature {
    padding: 1rem;
  }

  /* ABOUT */

  .about_details {
    flex-direction: column;
    /* background-color: #0ef; */
    /* margin-top: 10rem; */
  }

  .about_details-image {
    display: flex;
    justify-content: center;
  }

  .about_details-content,
  .about_details-image {
    width: 100%;
  }

  .about_details-image img {
    /* background-color: red; */
    transform: perspective(1000px) rotateY(0deg); /* Tilts the image towards the left */
    width: 80%;
  }






  /* PROJECTS FEATURES */
  

  .project_feature {
    flex-direction: column !important;
    gap: 2rem;
  }

  .project_feature_img {
    width: 100%;
    max-width: 300px;
  }

  .project_feature_title {
    font-size: 1.5rem;
  }

  /* APPLICATION */

  .application-btn a {
    font-size: 1.2rem;
  }

  /* CONTACT */
  .contact {
    flex-direction: column;
  }

  .contact_form,
  .content_details {
    width: 100%;
  }

  .detail_content_icon p{
    font-size: 1.2rem;
  }



  /* FOOTER */

  .footer_content_details {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer_container {
    justify-content: center;
    /* background-color: red; */
  }

  .footer_content {
    display: flex;
    align-items: center;
  }

  .footer_bottom-icon {
    padding: 0.5rem;
  }




  .footer_content{
    /* background-color: red; */
    padding: 0;
  }



 .footer_bottom-icon{
  /* background-color: #0ef; */
  padding: 0;
 } 



  .about_details,.features,.solution_features,.project_features{
    /* background-color: red; */
    margin-top: 0rem;
    margin-bottom: 0rem;
  }


  .footer_content p{
    /* background-color: red; */
  font-size: 0.9rem;
  }

  .footer_logo img
  {
    display: inline;
    width: 80%;

      }

}

@media screen and (max-width: 400px)  {


 .footer_content
 
 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* background-color: red; */
 } 

}






