/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonts);
  line-height: 1.5;
}

/* CSS VARIABLES */
:root {
  --fonts: "Josefin Sans", sans-serif;
  --primary-clr: #ff9900;
  --hover-clr: #f19f23;
  --secondary-clr: #372069;
  --orange-clr: #4fe8ff;
}

/* REUSEABLE CSS */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.heading-primary {
  font-size: 40px;
  margin-top: 30px;
  color: #080920;
}

.para-primary {
  font-size: 16px;
}

p {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #4f4f4f;
}

.cta {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 15px;
  background-color: var(--primary-clr);
}

.orange {
  color: var(--orange-clr);
}

.blue {
  color: var(--secondary-clr);
}

/* NAVBAR SECTION BEGIN */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #dfdfdfc7;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.086);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  color: var(--primary-clr);
  text-decoration: none;
  font-weight: bold;
}

.nav-ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
}

.nav-li {
  padding: 10px 15px;
}

.nav-li a {
  text-decoration: none;
  color: #000;
  opacity: 50%;
  transition: all 0.3s;
}

.nav-li a:hover {
  opacity: 100%;
}

.active {
  opacity: 100% !important;
}

.nav-cta:hover {
  background-color: var(--hover-clr);
}

.account {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* HOME SECTION BEGIN */

.home {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
}

.left-side {
  margin-top: 20px;
}

.para-box {
  margin-top: 50px;
}

.home-para-box {
  max-width: 600px;
}

.home-para {
  text-align: justify;
  line-height: 1.7;
}

.home-cta {
  margin-top: 60px;
}

.home-cta:hover {
  background-color: var(--hover-clr);
}

.home-cta2 {
  color: #0f0e0e;
  background-color: #fff;
  border: 2px solid black;
  margin-left: 10px;
  transition: all 0.3s;
}

.home-cta2:hover {
  background-color: black;
  color: #fff;
}

.right-side {
  height: 500px;
  grid-column: 2 / -1;
  background-image: url("../img/bg4.jpg");
  background-size: cover;
  background-position: center center;
  border-radius: 40px;
}

/* ABOUT US SECTION */

.piccontainer {
  display: flex;
  gap: 20px;
  padding-bottom: 60px;
  padding-top: 10px;
}

.p1 {
  background-image: url(../img/1.jpg);
}

.p2 {
  background-image: url(../img/2.jpg);
}

.p3 {
  background-image: url(../img/3.jpg);
}

.p4 {
  background-image: url(../img/4.jpg);
}

.p1,
.p3 {
  margin-top: 60px;
}

.photo {
  width: 350px;
  height: 400px;
  background-size: cover;
  background-position: center center;
  /* border-radius: 500px; */
}

.about-p {
  max-width: 800px;
}

/* PORTFOLIO SECTION */

.port-head {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: var(--secondary-clr);
}

.port-hr {
  height: 2px;
  width: 40px;
  border: 1px solid var(--secondary-clr);
}

.main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.box {
  background-color: #ffffff;
  width: 300px;
  padding: 30px 10px;
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.box:hover {
  transform: scale(1.1);
}

.box:hover .info {
  opacity: 100%;
}

.profile-box {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: rgb(2, 2, 2);
  margin-top: 20px;
  background-size: cover;
  background-position: center center;
}

.pic1 {
  background-image: url(../img/khem.jpeg);
}

.pic2 {
  background-image: url(../img/philos.jpeg);
  background-position: center right;
}

.pic3 {
  background-image: url(../img/bishesh.jpg);
}

.info {
  margin-top: 40px;
  text-align: center;
}

.info span {
  color: #9c9b9b;
  margin-top: 6px;
}

.social {
  background-color: #89c8ff;
  margin-top: 35px;
  border-radius: 100px;
  transition: all 0.3s;
}

.social:hover {
  background-color: #5aaef8;
}

.social a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.facebook {
  width: 25px;
}

/* CONTACT PAGE */
.form {
  width: 400px;
  padding: 10px 0;
  display: block;
  margin: 0 auto;
}

.same {
  padding: 10px 15px;
  font-size: 16px;
  width: 400px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.gender {
  margin: 5px 0px;
}

.form-para {
  font-size: 18px;
  font-weight: bold;

  max-width: 400px;
  margin: 0 auto;
}
