@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,500&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}
body{
  background: linear-gradient(
    to right bottom,
    #1e2761,
    #1e2761,
    #441229,
    #441229
  );
  
}
a {
  text-decoration: none;
}
body {
  width: 100%;
}
h1 {
  font-size: 50px;
  color: #252525;
}
h2 {
  font-size: 46px;
  color: #252525;
}
h4 {
  font-size: 20px;
  color: #252525;
}
h6 {
  font-size: 12px;
  font-weight: 700;
}
p {
  font-size: 18px;
  margin: 15px 0px 20px 0px;
  color: grey;
}

/* Navbar  */

.header {
 display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5rem;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
}
.logo {
  width: 170px;
  margin: 1rem;
}
.header nav {
  width: 55%;
}
.navbar {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
}
.navbar li {
  font-size: 18px;
  transition: 0.25s ease;
}
.navbar li a {
  color: #f5f5f5;
  transition: 0.5s ease;
}
.navbar li a:hover,
.navbar li a.active {
  color: #f5f5f5;
}
.navbar li:hover {
  transform: translateY(-5px);
}
.hamburger {
  display: none;
  width: 10rem;
}
.smallbanners {
  padding: 0rem 5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.box1 {
  margin: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 40px;
  justify-content: center;
  min-width: 580px;
  height: 50vh;
}
.box3 {
  background-image: url(./Images/JobsHomepage.webp);
  background-size: 120%;
  background-position: left;
}
.box3 h2 {
  color: #f5f5f5;
}
.box2 {
  background-size: 105%;
  background-position: left;
  background-image: url(./Images/IntershipHomepage.webp);
}
.box1 h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0px;
}
.box1 button {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #252525;
  color: #252525;
  transition: 0.3s ease;
  background-color: transparent;
}
.box1:hover button {
  background-color: #f5f5f5;
  border: 1px solid transparent;
}
.newsletter {
  display: flex;
  padding: 2rem 5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-position: bottom;
 background-size: cover;
 background: linear-gradient(to right, #4364f7, #0052d4);

  cursor: default;
}
.newsletter h4 {
  font-size: 28px;
  font-weight: 700;
  color: #f5f5f5;
}
.newsletter p {
  font-size: 20px;
  font-weight: 600;
  color: #f5f5f5;
}
.newsinput {
  display: flex;
  width: 40%;
}
.newsletter input {
  height: 3rem;
  padding: 0px 1.25rem;
  font-size: 17px;
  width: 70%;
  border: 1px solid transparent;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.newsletter button {
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 4px;
  cursor: pointer;
  color: #f5f5f5;
  border: none;
  background: linear-gradient(to right, #4364f7, #0052d4);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: 0.3s ease;
}
.newsletter button:hover {
  background-color: #f5f5f5;
}
.footer {
  padding: 2rem 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #252525;
}
.column1 {
  background-color: #252525;
}
.column1 i {
  color: #f5f5f5;
  font-size: 30px;
}
.column1 h4 {
  color: #f5f5f5;
  margin-top: 30px;
  margin-bottom: 20px;
}
.column1 p {
  margin: 10px 0px;
  cursor: pointer;
  color: rgb(200, 200, 200);
}
.column1 ul {
  line-height: 30px;
}
.column1 ul li {
  color: rgb(200, 200, 200);
  cursor: pointer;
  list-style: none;
}
.copyright {
  background-color: #252525;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  cursor: none;
}
#closebtn {
  display: none;
}
.banner {
  height: 35vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: default;
  background-size: auto;
}
.banner h2 {
  color: #f6f6f6;
  font-size: 4rem;
}

/* DarkMode */

body.dark {
  background: #f6f6f6;
}
.toggle {
  position: relative;
  height: 30px;
  width: 60px;
  border-radius: 100px;
  background-color: #f6f6f6;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.toggle::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  background: #4070f4;
  border-radius: 50%;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.toggle.active::before {
  background-color: #252525;
  left: calc(100% - 24px - 4px);
}

/* Login Page */
.container {
  height: 80vh;
  margin: 1rem auto;
  position: relative;
  display: flex;
  justify-content: space-around;
}
.container .form-1 {
  scale: 0.8;
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 40rem;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(180, 180, 180);
}
.form-1 h1 {
  text-align: center;
  margin-top: 0.7rem;
  margin-bottom: 1.5rem;
}
input[type="uname"],
input[type="pwd"] {
  border: none;
  outline: none;
  border-bottom: 1px solid;
  background: none;
  margin: 0.5rem 2rem;
  font-size: 1rem;
}
.label {
  margin: 0 2rem;
}
.span {
  margin: 1rem 2rem;
  cursor: pointer;
}
.sm-btn {
  margin: 1rem 2rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 1rem;
  border: none;
  font-size: 1.1rem;
  font-weight: bolder;
  color: #fff;
  background: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
}
.sm-btn2 {
  padding: 0.5rem;
  margin: 0rem 2rem;
  cursor: pointer;
  border-radius: 1rem;
  border: none;
  font-size: 1.1rem;
  font-weight: bolder;
}
.sm-btn2 a {
  color: #0052d4;
}
.loginP {
  text-align: center;
  font-weight: bolder;
}
.icons {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 0rem;
  margin-top: 0rem;
}
.icons a {
  text-decoration: none;
  font-size: 1rem;
  margin: 0.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1rem;
  width: 1rem;
  scale: 2;
  color: #f6f6f6;
}
.icons a i{
  scale: 0.8;
}
.google {
  background: tomato;
}
.facebook {
  background: steelblue;
}
.linkedin {
  background: teal;
}
.twitter {
  background: #25aae1;
}

/* About us  */

.section {
  width: 100%;
  min-height: 80vh;
}
.containerAbout {
  width: 80%;
  display: block;
  margin: auto;
  padding-top: 100px;
}
.content-section {
  float: left;
  width: 55%;
}
.image-section {
  float: right;
  width: 40%;
}
.image-section img {
  width: 100%;
  height: auto;
}
.content-section .title {
  text-transform: uppercase;
  font-size: 28px;
}
.title h1 {
  color: rgb(150, 150, 150);
}
.content-section .content h3 {
  margin-top: 20px;
  color: rgb(150, 150, 150);
  font-size: 24px;
}
.content-section .content p {
  margin-top: 10px;
  color: rgb(150, 150, 150);
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.content-section .content .button {
  margin-top: 30px;
}
.content-section .content .button a {
  background-color: #3d3d3d;
  padding: 0px 40px;
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.5px;
}
.content-section .content .button a:hover {
  background-color: #a52a2a;
  color: #fff;
}
.content-section .social {
  margin: 40px 40px;
}
.content-section .social i {
  color: #a52a2a;
  font-size: 35px;
  padding: 0px 10px;
}
.content-section .social i:hover {
  color: #3d3d3d;
}

/* ======================
jobs.html styles start
====================== */
.box_cont {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.box {
  font-weight: bold;
  font-size: 38px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 250px;
  margin: 1%;
  width: 22%;
  color: #252525;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease;
  cursor: pointer;
}
.box:hover {
  transform: translateY(-10px);
}
.box h4 {
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6f6f6;
}
.web {
  background-image: url("./Images/webimg.jpg");
  color: #f6f6f6;
}
.cloud {
  background-image: url("./Images/cloudimg.jpg");
  color: #f6f6f6;
}
.uiux {
  background-image: url("./Images/uiux.jpg");
  color: #f6f6f6;
}
.android {
  background-image: url("./Images/android.jpg");
  color: #f6f6f6;
}
.flutter {
  background-image: url("./Images/flutterimg.jpg");
  color: #f6f6f6;
}
.react {
  background-image: url("./Images/react.jpg");
  color: #f6f6f6;
}
.java {
  background-image: url("./Images/java.jpg");
  color: #f6f6f6;
}
.c {
  background-image: url("./Images/c.jpg");
  color: #f6f6f6;
}
.pages {
  padding: 5rem 0rem;
  text-align: center;
}
.pages a {
  text-decoration: none;
  background-color: #252525;
  color: #f6f6f6;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s ease;
}
.pages a:hover {
  background-color: royalblue;
}
/* ======================
jobs.html styles end
====================== */

/* Contact Page  */

.contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact .content {
  max-width: 800px;
  text-align: center;
}
.contact .content h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #f6f6f6;
}
.contact .content p {
  font-weight: 300;
  font-size: 1.45rem;
  color: #f6f6f6;
}
.containerContact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.containerContact .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.containerContact .contactInfo .boxCon {
  position: relative;
  padding: 20px 0;
  display: flex;
}
.containerContact .contactInfo .boxCon .icon {
  min-width: 60px;
  height: 60px;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}
.containerContact .contactInfo .boxCon .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #252522;
  flex-direction: column;
  font-weight: 300;
}
.containerContact .contactInfo .boxCon .text h3 {
  font-weight: 500;
  color: #0052d4;
}
.contactForm {
  width: 40%;
  padding: 40px;
  background: #f6f6f6;
}
.contactForm h2 {
  font-size: 30px;
  color: #252525;
  font-weight: 500;
}
.contactForm .inputBoxCon {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.contactForm .inputBoxCon input,
.contactForm .inputBoxCon textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #252525;
  outline: none;
  resize: none;
}
.contactForm .inputBoxCon span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}
.contactForm .inputBoxCon input:focus ~ span,
.contactForm .inputBoxCon input:valid ~ span,
.contactForm .inputBoxCon textarea:focus ~ span,
.contactForm .inputBoxCon textarea:valid ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}
.contactForm .inputBoxCon input[type="submit"] {
  width: 100px;
  background: #0052d4;
  color: #f6f6f6;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .containerContact {
    flex-direction: column;
  }
  .containerContact .contactInfo {
    margin-bottom: 40px;
  }
  .containerContact .contactInfo,
  .contactForm {
    width: 100%;
  }
}

/* MEDIA QUERY  */
@media (max-width: 850px) {
  .header a {
    width: 20rem;
  }
  .header a img {
    width: 8rem;
  }
  .contactimg {
    display: none;
  }
  .contacttext {
    width: 100%;
  }
  .contactus {
    height: 40vh;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -330px;
    height: 100vh;
    width: 325px;
    box-shadow: 0px 40px 60px rgba(0, 0, 0, 0.3);
    padding: 100px 0px 0px 80px;
    transition: 0.3s ease;
  }
  .activebar {
    right: 0px;
  }
  .navbar li {
    margin-bottom: 40px;
    font-size: 30px;
  }
  .hamburger {
    display: flex;
    align-items: center;
  }
  .hamburger i {
    color: #f5f5f5;
    font-size: 30px;
    margin-left: 25px;
  }
  #closebtn {
    display: block;
    position: absolute;
    top: 2rem;
    color: #f5f5f5;
    font-size: 40px;
  }
  .homepage {
    height: 70vh;
    background-position: left;
  }
  .banner {
    height: 20vh;
  }
  .banner h2 {
    font-size: 30px;
  }
  .box1 {
    min-width: 100%;
    margin-top: -10px;
    height: 30vh;
    padding: 0;
    background-size: 300%;
    background-position: left;
  }
  .box1 h2,
  .box1 button {
    margin-left: 30px;
    color: #f6f6f6;
  }
  .newsinput {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .containerAbout {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 50px;
  }
  .content-section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }
  .image-section {
    float: none;
    width: 100%;
  }
  .image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0rem;
  }
  .content-section .title {
    text-align: center;
    font-size: 19px;
  }
  .content-section .content .button {
    text-align: center;
  }
  .content-section .content .button a {
    padding: 9px 30px;
  }
  .content-section .social {
    text-align: center;
  }
}
@media (max-width: 620px) {
  .toggle {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .form-1 {
    scale: 0.7;
  }
  .header {
    padding: 0rem 1rem;
  }
  .banner {
    height: 18vh;
  }
  .smallbanners {
    padding: 1rem;
  }
  .box1 {
    height: 40vh;
  }
  .newsletter {
    padding: 1rem;
  }
  .newsletter h4 {
    font-size: 20px;
  }
  .newsinput input {
    width: 80%;
  }
  .newsinput button {
    font-size: 10px;
    width: 20%;
    padding: 10px 5px;
  }
}
