@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none; border: none;
  text-transform: capitalize;
  transition: all .2s linear;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow-x: hidden;
}

*::selection{
  background: #2b3dda;
  color: #fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar{
  width: .8rem;
}
html::-webkit-scrollbar-track{
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb{
  background: #420177;
}

/* Lottie Background Animations */
.background-animations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.lottie-bg {
  position: absolute;
  opacity: 0.15;
}

.lottie-bg-1 {
  top: 10%;
  right: -10%;
  transform: rotate(10deg);
}

.lottie-bg-2 {
  bottom: 5%;
  left: -10%;
  transform: rotate(-5deg);
}

.lottie-side {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.7;
}

.header-lottie {
  position: absolute;
  right: 5%;
  bottom: 0;
  opacity: 0.8;
}

.bottom-lottie {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Tech Particles Container */
.tech-particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.tech-particle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #010136, #0177b5);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(1, 1, 54, 0.7);
  padding: 1rem;
  width: 6rem;
  height: 6rem;
  text-align: center;
  z-index: 5;
  opacity: 0;
  transform-origin: center center;
  pointer-events: none;
  overflow: hidden;
}

.tech-particle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 10;
}

.particle-lottie-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.7;
}

/* navbar starts */
header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146,161,176,.3);
}
section{
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading{
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span{
  color: rgb(115, 3, 167);
}
header .logo{
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0E2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li{
  margin-left: 2.5rem;
}
header .navbar ul li a{
  font-size: 1.57rem;
  color: #0E2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
  color: #011aff;
  border-bottom: .2rem solid #011aff;
  padding: .5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu{
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media(max-width:768px){
  #menu{
      display: block;
  }
  header .navbar{
    position: fixed;
    top: 6.5rem; right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul{
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li{
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 26rem;
  }
  header .navbar ul li a{
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover{
    padding: 1rem;
    color: #fff;
    border-radius: .5rem;
    border-bottom: .5rem solid #011aff;
  }
  .fa-times{
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle{
    right: 0;
  }
}
/* hamburger icon ends */

/* Experience header section */
.experience-header {
  background: linear-gradient(to bottom, #010136, #00003a);
  margin-top: 5rem;
  padding: 4rem 9% 2rem;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.experience-header h2 {
  color: #fff;
  padding: 1rem;
}

.experience-header .heading span {
  color: rgb(255, 230, 0);
}

.experience-header .quote {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #f1f1f1;
}

/* experience section */
.experience {
  padding: 4rem 9%;
  min-height: auto;
  position: relative;
}

.lottie-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  max-width: 100%;
  height: 300px;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.experience-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #010136, #0177b5);
}

.experience-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.experience-card .experience-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.experience-card .company {
  font-size: 1.3rem;
  color: #0177b5;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.experience-card .duration {
  font-size: 1rem;
  color: #7f8c8d;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-item:hover {
  transform: translateY(-5px) rotateY(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #e3f2fd;
  animation: pulse 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.project-item .tech-blast-active {
  animation: techBlast 0.5s forwards;
}

@keyframes techBlast {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(1, 1, 54, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
}

.project-icon {
  font-size: 2.5rem;
  color: #0177b5;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.project-item:hover .project-icon {
  transform: scale(1.2);
}

.project-item h4 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.project-item p {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.tech-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 54, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}

.project-item:hover .tech-popup {
  opacity: 1;
  transform: translateY(0);
}

.tech-popup h5 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.tech-popup p {
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Back button styles */
.backbtn {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.backbtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: #fff;
  background: #010136;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, .6);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
}

.backbtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
}

.backbtn .btn i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.backbtn .btn:hover {
  background: #010124;
  transform: translateY(-5px);
}

.backbtn .btn:hover i {
  transform: translateX(-8px);
}

/* Media queries */
@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lottie-side {
    display: none;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-card {
    padding: 1.5rem;
  }
  
  .project-item {
    min-height: 180px;
  }
  
  .experience-header {
    padding: 3rem 5% 2rem;
  }
  
  .experience {
    padding: 2rem 5%;
  }
  
  .header-lottie,
  .bottom-lottie {
    transform: scale(0.8);
  }
  
  .lottie-bg {
    opacity: 0.1;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  
  .experience-header .heading {
    font-size: 3rem;
  }
  
  .experience-card .experience-header h3 {
    font-size: 1.6rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .header-lottie,
  .bottom-lottie {
    transform: scale(0.6);
  }
}

/* footer section starts */
.footer{
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box{
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3{
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p{
  font-size: 1.5rem;
  color: #ccc;
  padding: .7rem 0;
  text-transform: none;
}
.footer .box-container .box p i{
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a{
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: .3rem 0;
  display: block;
}
.footer .box-container .box a:hover{
  color: #ffae00;
}
.footer .box-container .box .share{
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a{
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: .2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover{
  background: transparent;
  transform: scale(0.98);
  border: .1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit{
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Nunito',sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: .1rem solid #fff3;
}
.footer .credit a{
  color: #ffae00;
}
.footer .fa{
    color: #E90606;
    margin: 0 .3rem;
    font-size: 1.5rem;
    animation: pound .35s infinite alternate;
}
@-webkit-keyframes pound{
  to{
    transform: scale(1.1);
  }
}
@keyframes pound{
  to{
    transform: scale(1.1);
}
}
@media(max-width:450px){
  .footer .box-container .box{
    margin: 1.5rem;
  }
  .footer .box-container .box p{
    padding: 0.7rem;
  }
  .footer .box-container .box .share a{
    padding: 0.4rem;
  }
}
/* footer section ends */

/* scroll top button */
#scroll-top{
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active{
  top: calc(100% - 12rem);
}

#scroll-top:hover {
  transform: translateY(-5px);
}

/* Project Showcase Section */
.showcase-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem 0;
}

.showcase-heading {
  font-size: 3rem;
  color: #2c3e50;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.showcase-heading span {
  color: #0177b5;
}

.showcase-subheading {
  text-align: center;
  font-size: 1.6rem;
  color: #7f8c8d;
  margin-bottom: 3rem;
}

.showcase-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.showcase-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.showcase-tech span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
}

.showcase-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.showcase-content h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.showcase-content p {
  font-size: 1.4rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.metrics-container {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.metric {
  text-align: center;
  flex: 1;
  padding: 1rem;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.metric:hover {
  background: #e3f2fd;
  transform: translateY(-5px);
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0177b5;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.showcase-cta {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.request-btn, .details-btn {
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: none;
}

.request-btn {
  background: #0177b5;
  color: #fff;
}

.request-btn:hover {
  background: #015d8e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(1, 119, 181, 0.4);
}

.details-btn {
  background: #f8f9fa;
  color: #2c3e50;
  border: 1px solid #ddd;
}

.details-btn:hover {
  background: #e3e3e3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Showcase Section */
@media (max-width: 980px) {
  .showcase-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .showcase-container {
    grid-template-columns: 1fr;
  }
  
  .metrics-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .showcase-cta {
    flex-direction: column;
  }
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 2rem 0;
  position: relative;
}

.testimonial-heading {
  font-size: 3rem;
  color: #2c3e50;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.testimonial-heading span {
  color: #0177b5;
}

.testimonial-subheading {
  text-align: center;
  font-size: 1.6rem;
  color: #7f8c8d;
  margin-bottom: 3rem;
}

.testimonial-slider {
  position: relative;
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 95%;
  margin: 0 auto;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 0 1rem;
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0.8;
}

.testimonial-card.active {
  transform: scale(1);
  opacity: 1;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: #0177b5;
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -1rem;
}

.testimonial-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  z-index: 2;
  position: relative;
}

.testimonial-info {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.testimonial-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  border: 3px solid #0177b5;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  flex: 1;
}

.testimonial-author h4 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  font-size: 1.3rem;
  color: #7f8c8d;
}

.testimonial-rating {
  display: flex;
  align-items: center;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.6rem;
  margin: 0 0.1rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.testimonial-nav-btn {
  background: #0177b5;
  color: #fff;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.testimonial-nav-btn:hover {
  background: #015d8e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(1, 119, 181, 0.4);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}

.dot {
  width: 1rem;
  height: 1rem;
  background: #ccc;
  border-radius: 50%;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0177b5;
  transform: scale(1.5);
}

/* Media Queries for Testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-content p {
    font-size: 1.4rem;
  }
  
  .testimonial-image {
    width: 5rem;
    height: 5rem;
  }
  
  .testimonial-author h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-info {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin: 0 auto 1rem;
  }
  
  .testimonial-rating {
    margin-top: 1rem;
  }
}

/* Download Portfolio CTA */
.download-cta {
  background: linear-gradient(135deg, #010136, #0177b5);
  padding: 5rem 0;
  margin: 6rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

.download-text {
  max-width: 60%;
}

.download-text h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.download-text p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 2rem;
}

.download-btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.download-btn.primary {
  background: #fff;
  color: #010136;
}

.download-btn.primary:hover {
  background: #f1f1f1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.download-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.download-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.download-animation {
  position: relative;
  z-index: 2;
}

/* Media Queries for Download CTA */
@media (max-width: 980px) {
  .download-content {
    flex-direction: column;
    text-align: center;
  }
  
  .download-text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .download-cta {
    padding: 4rem 0;
    margin: 4rem 0;
  }
  
  .download-text h2 {
    font-size: 2.8rem;
  }
  
  .download-text p {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .download-buttons {
    flex-direction: column;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  
  .download-animation {
    transform: scale(0.8);
  }
}

/* SEO-Optimized Intro Section */
.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.section-intro h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #010136, #0177b5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.seo-description {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
}

/* Tech Skills Section */
.tech-skills-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.skills-heading {
  font-size: 3rem;
  color: #2c3e50;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.skills-heading span {
  color: #0177b5;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.skill-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skill-item h3 {
  font-size: 2rem;
  color: #0177b5;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.skill-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #010136, #0177b5);
}

.skill-list {
  list-style: none;
}

.skill-list li {
  font-size: 1.5rem;
  color: #555;
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2.5rem;
}

.skill-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0177b5;
  font-weight: bold;
}

/* SEO Optimizations for Existing Elements */
.showcase-heading, .testimonial-heading {
  font-weight: 800;
  color: #2c3e50;
}

.showcase-content h3, .testimonial-author h4 {
  font-weight: 700;
  color: #2c3e50;
}

.showcase-content p, .testimonial-content p {
  line-height: 1.8;
}

.tech-particle {
  z-index: 5; /* Reduced from 1001 to prevent overlapping important content */
}

/* Accessibility Improvements */
.request-btn, .details-btn, .download-btn {
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.request-btn:focus, .details-btn:focus, .download-btn:focus {
  outline: 3px solid rgba(1, 119, 181, 0.5);
  outline-offset: 3px;
}

/* Media Queries for Responsive Design */
@media (max-width: 980px) {
  .section-intro h1 {
    font-size: 3rem;
  }
  
  .seo-description {
    font-size: 1.6rem;
    max-width: 90%;
  }
  
  .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-intro h1 {
    font-size: 2.5rem;
  }
  
  .seo-description {
    font-size: 1.5rem;
    max-width: 100%;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
  }
  
  .skill-item {
    padding: 2rem;
  }
}

@media (max-width: 450px) {
  .section-intro h1 {
    font-size: 2.2rem;
  }
  
  .skill-list li {
    font-size: 1.4rem;
  }
}