* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 60px 20px;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif,"Noto Sans Bengali", sans-serif;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
  padding: 60px 20px;
  background-color: #030e2c;
  background-size: 400% 400%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;

 
}

#heading-text {
  font-size: 24px;
  color: #eeeeee;
  white-space: normal;
  overflow: hidden;
  text-align: center;
  border-right: 2px solid #00dd00; /* কিউরসর ইফেক্ট */
  width: fit-content;
  margin: 10px auto 50px auto; /* horizontal center */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1.2px;
  user-select: none; /* টেক্সট সিলেক্ট না হয় */
  animation: blink-caret 0.7s step-end infinite;
}


@media (max-width: 350px) {
  #heading-text {
    padding: 0 6px;
    font-size: 16px;  
    max-width: 95vw;  
  }
}




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.download-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.download-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;

}


.download-btn:hover {
  background: linear-gradient(45deg, #ff3c3c, #11ca00);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  letter-spacing: 1px;
}




.counts {
  font-size: 16px;
  color: #fff;
 
  text-align: left;

}

.counts h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffe9e9;
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 1px solid #ffc9c930;
  padding-bottom: 10px;
}

.counts div {
  margin: 8px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.count-label {
  width: 180px;
  display: inline-block;
  font-weight: bold;
}

.count-label.blue { color: #4db8ff; }
.count-label.orange { color: #ff9933; }
.count-label.grey { color: #cccccc; }





.version-info{
  font-size: 18px;
  font-weight: bold;

}

.version-info::before {
  content: "🚀";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  animation: floatRocket 2s infinite ease-in-out;
}

@keyframes floatRocket {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-60%) translateX(5px); }
}

.version-info:hover {
  background: linear-gradient(45deg, #ff3c3c, #0afa02);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  letter-spacing: 1px;
}



  #releaseNotesModal {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }

  .modal-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    max-width: 90%;
    width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    font-family: sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .modal-content h2 {
    color: #ffffff;
    margin-top: 0;
  }

  #releaseNotesText {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'Fira Code', 'Courier New', monospace;
  color: #5af700; /* soft light text */
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  line-height: 1.6;
  font-size: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.closeButtonContainer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.closeButton {
  background-color: #3f51b5;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}



 .images {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  padding: 10px 16px;
  box-sizing: border-box;
  scroll-padding: 16px;
}

.images::-webkit-scrollbar {
  height: 4px;

}
.images::-webkit-scrollbar-thumb {
    visibility: hidden;
}

.images img {
  flex-shrink: 0;
  width: 120px; /* Fixed width for consistency */
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  scroll-snap-align: center;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.images img:hover {
  transform: scale(1.05);
  border: 2px solid #07e80a;
  box-shadow: 
    0 0 5px #07e80a,
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 10px rgba(0, 255, 140, 0.5);
}






@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    animation: typing 5s steps(20, end) 0s 1 normal both;
  }

  .download-btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
  }

  .download-btn:hover {
    transform: scale(1.0);
    box-shadow: 0 4px 10px rgb(255, 0, 0), 0 6px 15px rgba(43, 255, 0, 0.3);
  }

 

  .description {
    font-size: 16px;
  }
  
} .section {
  padding: 60px 0;
  animation: fadeIn 2s ease-in-out;
  width: 100%;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #ffee00;
}
h3{
  color: #ffffff;
  margin-bottom: 10px;

  
}



.card {
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 40px;
  background-color: #050b22;

  border: 1px solid rgb(15, 148, 88); /* subtle neon border */
  box-shadow: 0 8px 20px rgba(0, 255, 140, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  backdrop-filter: blur(5px);
}

/* Hover effect */
.card:hover {
  border-color: rgba(0, 255, 204, 0.7);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.25);
}


/* Keyframe */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-us .button{
  text-decoration: none;
  color: white;
 

}




/* Card-style container */
.description {
 
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease both;
}


/* Paragraphs inside card */
.card p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #ffffff;
  
}

/* Strong inside paragraph */
.card p strong {
  color: #00ff00;
  font-size: 2rm;
}

/* Emphasis line */
.card p em {
  font-style:normal;
  color: #ff9100;
  font-weight: 700;
  font-size: 28px;
}

.features-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  padding-left: 40px;
  margin: 16px 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  word-break: break-word;
}

.features-list .icon {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.features-list li:hover .icon {
  transform: scale(1.5);
}

/* Colorful Icons */
.icon.income   { color: #2ecc71; }   /* Green 💰 */
.icon.debt     { color: #e67e22; }   /* Orange 📒 */
.icon.budget   { color: #3498db; }   /* Blue 📊 */
.icon.report   { color: #9b59b6; }   /* Purple 📄 */
.icon.backup   { color: #f1c40f; }   /* Yellow 🔄 */
.icon.design   { color: #1abc9c; }   /* Teal 🎨 */
.icon.free     { color: #e74c3c; }   /* Red 🎉 */

/* 🔁 Responsive Tweaks */
@media (max-width: 768px) {
  .features-list li {
    font-size: 1rem;
    padding-left: 36px;
    margin: 14px 4px;
  }

  .features-list .icon {
    font-size: 1.2rem;
    width: 26px;
  }
}

@media (max-width: 480px) {
  .features-list li {
    font-size: 0.95rem;
    padding-left: 32px;
    margin: 12px 2px;
  }

  .features-list .icon {
    font-size: 1.1rem;
    width: 24px;
  }
}


/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  

  .main-heading {
    font-size: 1.25rem;
  }

  .card p {
    font-size: 1.16rem;
  }
}


/* === Developer Card === */
.dev-card {
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 40px;
  background-color: #050b22;

  border: 1px solid rgb(15, 148, 88); 
  box-shadow: 0 8px 20px rgba(0, 255, 140, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  backdrop-filter: blur(5px);
 

  display: flex;
  flex-direction: column;
}
.dev-card:hover{
   border-color: rgba(0, 255, 204, 0.7);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.25);
}

/* === Image Section === */
.profile-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* === Info Section === */
.info {
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Desktop Layout === */
@media (min-width: 768px) {
  .dev-card {
    flex-direction: row;
    max-width: 100%;
    height: auto;
  }

  .profile-img-wrapper {
    width: 40%;
    aspect-ratio: unset;
    height: auto;
  }

  .profile-img {
    height: 100%;
  }

  .info {
    width: 60%;
    text-align: left;
    align-items: flex-start;
    padding: 40px;
    justify-content: center;
  }

  .social-links {
    justify-content: flex-start;
  }
}

.name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0;
}

.title {
  font-size: 1rem;
  color: #ffd900;
  font-weight: 600;
}

.dept {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.9rem;
}

/* === Social Buttons === */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}


.social-links a {
  text-decoration: none;
}


.social-btn:hover {
  background-color: #ffe600;
  color: #ff1515;
  transform: scale(1.1);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .dev-card {
    margin: 20px;
  }

  .name {
    font-size: 1.5rem;
  }

  .title,
  .dept {
    font-size: 0.9rem;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .info {
    padding: 20px;
  }

  .social-links {
    justify-content: center;
  }
}

  



.social-links a i {
  margin: 0;
   font-size: 1.5rem;
}

@media (max-width: 650px) {
  .social-links a {
    width: 50px;
    height: 50px;
  
  }
}


/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

footer a {
  color: #13df00;
  text-decoration: none;
}

footer a:hover {
  color: #ff6600;
  transform: scale(1.05);
  text-decoration: underline;
}
