@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Borel&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Edu+NSW+ACT+Cursive:wght@400..700&family=El+Messiri:wght@400..700&family=MonteCarlo&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.first-section {
  width: 100%;
  position: relative;
  height: 60vh;

  
}

.first-section .first {
  width: 100%;
  height: 30vh;
  background: url(./img/img1.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* more flexible */
  background-position: center;
}
.first-section .second{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;


}



.me-img {
    position: relative;
  width: 200px;
  height: 200px;
  
  border-radius: 50%;
  position: absolute;
  top: 17vh; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  /* optional enhancement */
  display: flex;
  align-items: center;
  justify-content: center;
}
.me-img img{
    width: 190px;
    height: 190px;
    border-radius: 50%;
}
.verify{
    width: 50px;
    height: 50px;
    background: url(./img/verify.png);
    background-size: cover;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
}
.glass {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.8vh;
}
.first-section .second p {
  margin-top: 20px;
  width: 30%;
  font-size: 1.9vh;
  letter-spacing: 0.5px;
}
.social-icons{
  margin-top: 20px;
  width: 15%;
  display: flex;
  justify-content: space-between;
}

.myname{
  text-align: center; margin-top: 8vh; letter-spacing: 2px;
}


.social-icons a {
  position: relative;
  font-size: 3vh;
  color: #000;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
  background: white;
  overflow: hidden;
}

/* Rotating border using ::before */
.social-icons a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border-left: 2px solid #000;
  border-radius: 50%;
  animation: rotate-border 1.5s linear infinite;
  z-index: -1;
}

/* Animation */
@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact{
  margin-top: 30px;
  width: 20%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  /* Styles for screens wider than 768px */
  .first-section .second p {
  margin-top: 20px;
  width: 90%;
  font-size: 1.9vh;
  letter-spacing: 0.5px;
}

.social-icons{
  margin-top: 20px;
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.myname{
  margin-top: 13vh;
}

.contact{
  margin-top: 30px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  
}
.contact span{

  
  margin: auto;
  
}
}
.contact span{
  font-size: 20px;
}

.btns{
  margin-top: 20px;
}
.btns .button1{
  background: #000;
  color: #fff;
  padding: 10px;
  border:none;
  font-size: 22px;
  border-radius: 10px;
  cursor: pointer;
}
.btns .button2{
  background: #fff;
  color: #000;
  padding: 10px;
  border:none;
  font-size: 22px;
  border-radius: 10px;
  border: #000 2px solid;
  cursor: pointer;
}

/* From Uiverse.io by CristianMontoya98 */ 
.btn {
 width: 6.5em;
 height: 2.3em;
 margin: 0.5em;
 background: black;
 color: white;
 border: none;
 border-radius: 0.625em;
 font-size: 20px;
 font-weight: bold;
 cursor: pointer;
 position: relative;
 z-index: 1;
 overflow: hidden;
}

button:hover {
 color: black;
}

button:after {
 content: "";
 background: white;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

button:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.full-boxer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comment-box:hover{
    margin-top: 12px;
}

.comment-box{
    width: 500px;
    background: white;
    padding: 20px;
    margin: 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 3px 3px 25px rgba(0,0,0,0.3);
}

.Profile{
    display: flex;
    align-items: center;
}

.profile-image{
    width: 70px;
    height: 70px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.Name{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.Name strong{
    color: black;
    font-size: 18px;
}

.Name span{
    color: gray;
    margin-top: 2px;
}

.comment p{
    color: black;
}












#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner */
#loader::after {
  
}

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/**/


@keyframes blinkCursor {
  50% {
    border-right-color: transparent;
  }
}

@keyframes typeAndDelete {
  0%,
  10% {
    width: 0;
  }
  45%,
  55% {
    width: 6.2em;
  } /* adjust width based on content */
  90%,
  100% {
    width: 0;
  }
}

.terminal-loader {
  border: 0.1em solid #333;
  background-color: #1a1a1a;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
  padding: 1.5em 1em;
  width: 12em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.terminal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5em;
  background-color: #333;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 0 0.4em;
  box-sizing: border-box;
}

.terminal-controls {
  float: right;
}

.control {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.4em;
  border-radius: 50%;
  background-color: #777;
}

.control.close {
  background-color: #e33;
}

.control.minimize {
  background-color: #ee0;
}

.control.maximize {
  background-color: #0b0;
}

.terminal-title {
  float: left;
  line-height: 1.5em;
  color: #eee;
}

.text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.2em solid green; /* Cursor */
  animation:
    typeAndDelete 4s steps(11) infinite,
    blinkCursor 0.5s step-end infinite alternate;
  margin-top: 1.5em;
}
