* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 12px;
    width: 100%;
    /* background-color: black; */
  }
  
  
  /* Importing Google font - Poppins */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* background-color: #0000005c; */
    background-color: white;
    height: 12vh;
  }
  
  header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .navbar .logo {
    color: black;
    font-weight: 600;
    font-size: 2.1rem;
    text-decoration: none;
    margin-left: -7%;
  }
  
  
  .navbar .logo img{
    width: 100px;
  }
  
  
  
  
  .navbar .logo span {
    color: #C06B3E;
  }
  
  .navbar .menu-links {
    display: flex;
    list-style: none;
    gap: 35px;
  }
  
  .navbar a {
    color: black;
    text-decoration: none;
    transition: 0.2s ease;
  }
  
  .navbar a:hover {
    color: #C06B3E;
  }
  
  .hero-section {
    height: 100vh;
    background-image: url("gg.gif");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
  }
  
  .hero-section .content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    margin-left: 30%;
    margin-top: 5%;
  }
  
  .hero-section .content h2 {
    font-size: 3rem;
    max-width: 600px;
    line-height: 70px;
  }
  
  .hero-section .content p {
    font-weight: 300;
    max-width: 600px;
    margin-top: 15px;
  }
  
  .hero-section .content button {
    background: #fff;
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    margin-top: 38px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
    margin-left: 19%;
  }
  
  .hero-section .content button:hover {
    color: #fff;
    background: #C06B3E;
  }
  
  #close-menu-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    display: none;
  }
  
  #hamburger-btn {
    color: black;
    cursor: pointer;
    display: none;
  }
  
  @media (max-width: 768px) {
    header {
      padding: 10px;
    }
  
    header.show-mobile-menu::before {
      content: "";
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(5px);
    }
  
    .navbar .logo {
      font-size: 1.7rem;
    }
  
  
    #hamburger-btn,
    #close-menu-btn {
      display: block;
    }
  
    .navbar .menu-links {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      padding: 70px 40px 0;
      transition: left 0.2s ease;
    }
  
    header.show-mobile-menu .navbar .menu-links {
      left: 0;
    }
  
    .navbar a {
      color: #000;
    }
  
    .hero-section .content {
      text-align: center;
    }
  
    .hero-section .content :is(h2, p) {
      max-width: 100%;
    }
  
    .hero-section .content h2 {
      font-size: 2.3rem;
      line-height: 60px;
    }
  
    .hero-section .content button {
      padding: 9px 18px;
    }
  }
  
  
  
  
  
  
  
  
  
  
  /* screenshort */
  .col5 {
    background-image: url(./ss.png);
    height: 20vh;
    background-size: 90%;
    background-repeat: no-repeat;
    margin-left: 8%;
    margin-top: 3%;
  
  }
  
  




  .col2 h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    margin-left: 39%;
    margin-top: 2%;
  }
  
  
  
  .col2 h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 55px;
    margin-left: 34%;
  }















  
/* photos */

.profile-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0px 2px 3px #222;
    top: 60px;
  }
  
  .profile-card:hover .profile-img img {
    transform: scale(1.2);
  }
  
  .profile-card .profile-img img {
    width: 100%;
    height: auto;
    transition: transform 1s;
  }
  
  .profile-card .profile-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 40%;
    border: 3px solid #333;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: scale(1, 1);
    transition: all 0.50s linear;
  }
  
  .profile-card .profile-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 40%;
    border: 3px solid #222;
    border-left: 3px solid transparent;
    border-top: 3px solid transparent;
    transition: all 0.50s linear;
  
  }
  
  .profile-card:hover .profile-content:before {
    top: 20px;
    left: 20px;
  }
  
  .profile-card:hover .profile-content:after {
    bottom: 20px;
    right: 20px;
  }
  
  .profile-card .profile-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50% 4%;
    text-align: center;
  
  }
  
  .profile-card .profile-content:hover {
    background-color: rgba(255, 255, 255, 0.853);
  }
  
  .profile-card .profile-content .title {
    font-size: 24px;
    color: #333;
    opacity: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(-100px);
    transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
  }
  
  .profile-card:hover .title {
    opacity: 1;
    transform: translateY(0);
  }
  
  .profile-card:hover .title::after {
    content: "";
    display: block;
    width: 50%;
    margin: 10px auto;
    border-bottom: 2px solid #222;
  }
  
  .profile-card .profile-content .title>span {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .profile-card .profile-content .social-link {
    margin: 20px 0;
    padding: 0;
    opacity: 0;
    transform: translateY(100px);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
  }
  
  .profile-card:hover .social-link {
    opacity: 1;
    transform: translateY(0);
  }
  
  .profile-card .profile-content .social-link li {
    display: inline-block;
    list-style: none;
    margin: 0 4px;
  }
  
  .profile-card .profile-content .social-link li a {
    color: #333;
    width: 30px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
  }
  
  
  .profile-card h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .profile-card h2 a{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #000;
    text-decoration: none;
  }
  
  
  
  





  /* separator */
  
  .col59 {
    background-image: url(seperator.png);
    height: 10vh;
    background-size: 90%;
    background-repeat: no-repeat;
    margin-left: 8%;
    margin-top: 7%;
  
  }
  
  


  
.site-footer {
  /* background-color: #26272b; */
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: black;
  margin-top: -3%;
  margin-left: 13%;
}

.site-footer hr {
  border-top-color: black;
  opacity: 0.5;
  margin-right: 10%;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: black;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
  text-decoration: underline;
}

.site-footer a {
  color: black;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block
}

.footer-links a {
  color: black;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: white;
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-right: 30%;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: black;
  color: black;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: black;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89
}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}