* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);


}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #231c5f, #6a0592, #131377);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}


.trail {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00f7ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: trailFade 0.6s ease-out forwards;
}

@keyframes trailFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ffee;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00ffee;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(135deg, #350b35, #2d1553);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #00ffee;
}

.modal-content {
  padding: 25px;
  line-height: 1.6;
  min-height: 120px;
}

.modal-footer {
  padding: 0 25px 25px;
  display: flex;
  justify-content: flex-end;
}

.btn-continue {
  background: linear-gradient(135deg, #00ffee, #0099cc);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 255, 238, 0.3);
}

.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 238, 0.5);
  background: linear-gradient(135deg, #00ffee, #00ccff);
}

.btn-continue:active {
  transform: translateY(0);
}

/* Hero */
.hero {
  text-align: left;
  padding: 0px 4%;
  position: relative;
  display: flex;
  align-items: center;
}

.quote {
  text-align: left;
  max-width: 600px;
}

.quote h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  height: 40px;
}

.quote p {
  font-size: 1rem;
  opacity: 0.9;
  font-family: poppins;
  text-align: left;
}

.portfolio-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 60px 0px 0 55px;
  width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-box h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.buttons .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.heart {
  margin-top: 30px;
}

#heartIcon {
  font-size: 2.2rem;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
}

#heartIcon.liked {
  color: #ff4da6;
}

#heartText {
  font-size: 0.9rem;
  opacity: 0.9;
}

.socials {
  margin-top: 30px;
  display: flex;
  justify-content: right;
  padding: 0px 50px;
  gap: 15px;
}

.socials a {
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s;
  opacity: 0.8;
}

.socials a:hover {
  color: #00ffee;
  opacity: 1;
  transform: translateY(-3px);
}

/* About */
.about {
  padding: 20px 2%;
  display: flex;
  justify-content: center;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 1220px;
}

.profile-container {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  
  position: relative;
  z-index: 2;
  transition: transform 0.5s;
}

.profile-container:hover .profile-img {
  transform: scale(1.05);
}

.color-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.profile-container:hover .circle {
  opacity: 0.7;
}

.circle-1 {
  top: -10px;
  left: -10px;
  width: 320px;
  height: 320px;
  border: 3px solid #ff4da6;
  animation: rotate 8s linear infinite;
}

.circle-2 {
  top: -20px;
  left: -20px;
  width: 340px;
  height: 340px;
  border: 3px solid #00ffee;
  animation: rotate 12s linear infinite reverse;
}

.circle-3 {
  top: -30px;
  left: -30px;
  width: 360px;
  height: 360px;
  border: 3px solid #ffcc00;
  animation: rotate 15s linear infinite;
}

.circle-4 {
  top: -40px;
  left: -40px;
  width: 380px;
  height: 380px;
  border: 3px solid #9d4edd;
  animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-text {
  flex: 2;
}

.about-text p {
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  border-radius: 10px;
}

/* Cards */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  padding: 0 10%;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.btn-view {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

.btn-view:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Documents */
.documents {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.doc-header {
  text-align: left;
  margin-bottom: 20px;
}

.doc-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.doc-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.doc-list {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.doc-list p {
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-list p:last-child {
  border-bottom: none;
}

#viewMoreBtn {
  display: block;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

.contact {
  margin-bottom: 20px;
}

.contact a {
  color: #00ffee;
  text-decoration: none;
}

.thanks {
  margin: 15px 0;
  font-weight: 500;
}

.copy {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 4%;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }


  
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text p {
    text-align: center;
  }
  
  .portfolio-box {
    width: 90%;
  }
  
  .cards {
    flex-direction: column;
    align-items: center;
  }
  
  .documents {
    width: 90%;
  }
  
  .profile-container {
    width: 300px;
    height: 300px;
  }
  
  .circle-1 {
    width: 270px;
    height: 270px;
  }
  
  .circle-2 {
    width: 290px;
    height: 290px;
  }
  
  .circle-3 {
    width: 310px;
    height: 310px;
  }
  
  .circle-4 {
    width: 330px;
    height: 330px;
  }

  /* Add these to the existing responsive section */

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .portfolio-box {
    margin: 30px auto 0;
    width: 90%;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .cards {
    padding: 0 5%;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .navbar {
    padding: 15px 5%;
  }
  
  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 20px 5%;
  }
  
  .quote h2 {
    font-size: 1.3rem;
    height: auto;
    min-height: 40px;
  }
  
  .portfolio-box {
    padding: 20px;
    margin: 20px auto 0;
  }
  
  .buttons .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .about {
    padding: 20px 5%;
  }
  
  .about-text p {
    padding: 30px 20px;
    font-size: 0.9rem;
  }
  
  .profile-container {
    width: 250px;
    height: 250px;
  }
  
  .circle-1 {
    width: 220px;
    height: 220px;
  }
  
  .circle-2 {
    width: 240px;
    height: 240px;
  }
  
  .circle-3 {
    width: 260px;
    height: 260px;
  }
  
  .circle-4 {
    width: 280px;
    height: 280px;
  }
  
  .card {
    padding: 25px 20px;
    width: 100%;
    max-width: 300px;
  }
  
  .documents {
    padding: 20px;
    width: 95%;
  }
  
  .socials {
    padding: 0px 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .modal {
    width: 95%;
    margin: 0 10px;
  }
  
  .modal-content {
    padding: 20px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .nav-links {
    gap: 8px;
    font-size: 0.8rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .quote h2 {
    font-size: 1.1rem;
  }
  
  .profile-container {
    width: 200px;
    height: 200px;
  }
  
  .circle-1 {
    width: 200px;
    height: 200px;
  }
  
  .circle-2 {
    width: 220px;
    height: 220px;
  }
  
  .circle-3 {
    width: 240px;
    height: 240px;
  }
  
  .circle-4 {
    width: 260px;
    height: 260px;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .navbar {
    padding: 10px 4%;
  }
  
  .hero {
    padding: 10px 4%;
  }
  
  .about {
    padding: 10px 2%;
  }
  
  .portfolio-box {
    margin: 20px 0px 0 20px;
  }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .hero {
    overflow: hidden;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .nav-links a,
  .buttons .btn,
  .btn-view,
  #viewMoreBtn,
  #heartIcon {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links a {
    padding: 8px 12px;
  }
}

}


