@font-face {
    font-family: 'Agustina';
    src: url('./Agustina.woff') format('woff');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

html, body {
    height: 100%;
}

html {
    scroll-padding-top: 80px; /* header height offset for anchor scrolling */
    scroll-behavior: smooth;
}

/* Standard section spacing: gives consistent rhythm between sections */
section {
    padding: 80px 20px; /* top/bottom and horizontal padding */
    margin: 0; /* remove negative offsets so scrollIntoView start aligns correctly */
}

/* Page container to center content and limit max width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Full-screen home section */
.home {
    min-height: 100vh; /* full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px; /* internal spacing */
}

/* Centered content inside home */
.home .home-content {
    width: 100%;
    max-width: 1100px;
}

body {
    color: white;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(9, 97, 13, 1) 48%, rgba(0, 0, 0, 1) 100%);
     zoom: 80%;
    
}

::-webkit-scrollbar{
    width: 12px;
    background-color: #000;
}
::-webkit-scrollbar-thumb{
    background: rgb(7, 183, 7);
    border-radius: 6px;
}
/* ===== Loading Screen ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: limegreen;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.loading-content {
  text-align: center;
}

.loading-pixel {
  width: 20px;
  height: 20px;
  background: limegreen;
  margin: 0 auto 15px;
  animation: blink 0.4s infinite alternate;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.2; }
}

.loading-text {
  font-family: "Courier New", monospace;
  font-size: 25px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.loading-bar {
  width: 250px;
  height: 20px;
  border: 2px solid rgba(193, 21, 18, 0.645);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  width: 0;
  background: limegreen;
  animation: loadProgress 2s linear forwards;
}

@keyframes loadProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Hide content initially */
#main-content {
  display: none;
}

/* Header & Logo */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Agustina', 'Rubik', sans-serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 1000;
  letter-spacing: 1px;
  z-index: 110;
}

/* Glass Navbar */


.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  z-index: 100;
  transition: 0.3s ease;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: var(--text-primary, #fff);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 5px;
  border: 1px solid transparent;
  z-index: 1;
  cursor: pointer;
}

/* Hover effect for navbar links */
.navbar a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color:rgb(3, 237, 61);
  box-shadow: 0 0 15px rgb(3, 237, 61);
}

/* Active link style */
.navbar a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(3, 237, 61);
  box-shadow: 0 0 10px rgb(3, 237, 61);
  font-weight: 600;
  pointer-events: auto;
}

/* Ensure hover effect shows even when active */
.navbar a.active:hover {
  border-color: rgb(3, 237, 61);
  box-shadow: 0 0 20px rgba(30, 253, 18, 0.558);
  background: rgba(255, 255, 255, 0.15);
}



/* Scroll Effect */
.scrolled {
  box-shadow: 0 .1rem 1rem rgba(0,0,0,0.6);
}

/* ========== Responsive Navbar ========== */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 110;
}
/* Smooth scrolling fix for navbar */
/* Ensure consistent scrolling offset for anchor navigation */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* equal to your header height */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    transform: none;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0;
    transition: left 0.3s ease;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Show menu when checked */
  .menu-toggle:checked ~ .navbar {
    left: 0;
  }
}



/*======================home=================*/

.home {
    position: relative;
    width: 100%;
    justify-content: space-between;
    min-height: 125vh;
    color: white;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0px 10% 0;
    /* margin-top: 60px; */
    overflow: hidden; /* ensures particles don't spill out */
}


.home-content {
    max-width: 600px;
}

.home-content h2 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    letter-spacing: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: 1s;
    color: #00e910e7;
}
.initial{
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    letter-spacing: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: 1s;
    color: #b20a0a9c;
}
.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h4 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    z-index: 10;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.home-content h4 span {
    color: rgb(7, 183, 7);
    font-size: 32px;
    font-weight: 700;
}

.home-content h4:nth-of-type(2) {
    margin-bottom: 30px;

}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #b20a0a9c;
    border-radius: 50%;
    font-size: 20px;
    color: rgb(7, 183, 7);
    text-decoration: none;
    margin: 30px 15px 30px 0;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.home-sci a:hover {
    background: rgb(7, 183, 7);
    color: #000;
    box-shadow: 0 0 20px rgb(7, 183, 7);
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(7, 183, 7);
    border-radius: 40px;
    font-size: 15px;
    text-align: center;
    color: #081b29;
    border: 2px solid #b20a0a9c;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.btn-box:hover {
    box-shadow: 0 0 5px rgb(63, 234, 25), 0 0 25px rgb(63, 234, 25), 0 0 50pc rgb(63, 234, 25), 0 0 100px rgb(63, 234, 25), 0 0 200px rgb(63, 234, 25);
}

.img {
    display: inline-block;
    left: 55%;
    bottom: 25%; /* Adjusted upward */
    margin-right: 5%;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    opacity: 0;
    animation: slideUP 1s ease forwards;
    animation-delay: 1s;
    z-index: 0;
    border: 10px solid #11e9099c;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    
}

/* Image itself */
.img img {
    width: 100%;
    max-width: 492px;
    max-height: 492px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.6s ease;
}

/* Hover effect on the image */
.img img:hover {
    transform: scale(1.08) rotate(-2deg); /* Slight zoom + tilt */
    box-shadow: 0 10px 25px rgba(183, 7, 7, 0.5), 
                0 0 40px rgba(183, 7, 7, 0.4);
}
.responsive {
    width: 100%;
    height: auto;
    max-width: 492px;
    max-height: 492px;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .home {
        flex-direction: column;
        justify-content: center !important; 
        align-items: center !important;
        text-align: center;
        padding: 20px;
    }

    .home-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .img {
        position: static !important; /* disable absolute positioning */
        margin: 20px auto 0;
        text-align: center;
    }

    .responsive {
        max-width: 250px;
        width: 100%;
        height: auto;
    }
}
/* about section starts */
.about {
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(9, 97, 13, 1) 48%, rgba(0, 0, 0, 1) 100%);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  margin-left:15rem;
  width: 25rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(166, 3, 3, 0.6);
  mix-blend-mode: normal;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  filter: none;
  /* Red color effect before hover */

}

/* On hover, show the real image */
.about .row .image img:hover {
  filter: grayscale(100%) sepia(100%) hue-rotate(-50deg) saturate(600%) brightness(70%);
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color:#d40000;
}

.resumebtn .btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(7, 183, 7);
    border-radius: 40px;
    font-size: 15px;
 
    color: #081b29;
    border: 2px solid #b20a0a9c;
    letter-spacing: 1px;
    font-weight: 200;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}
.resumebtn .btn:hover {
    box-shadow: 0 0 5px rgb(63, 234, 25), 0 0 25px rgb(63, 234, 25), 0 0 50pc rgb(63, 234, 25), 0 0 100px rgb(63, 234, 25), 0 0 200px rgb(63, 234, 25);
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */


/*===================================== Skills===================*/

#Skills{
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(9, 97, 13, 1) 48%, rgba(0, 0, 0, 1) 100%);
    color: #ffffff;
    padding-bottom: 2rem;
    justify-content: center;
    align-items: center;
    min-height: 125vh;
}
.subtitle {
    text-align: center;
    font-size: 60px;
    padding-bottom: 50px;
    padding-top: 30px;
    
}
.subtitle span {
    color: rgb(7, 183, 7);
}
.skills-container {
    margin-left: 10%;
    margin-right: 10%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    
}
.skill-box {
    background-color: #1a1d25;
    border-radius: 8px;
    text-align: left;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #b20a0a9c;
    display: flex;
    align-items: center;
}

.skill-box img {
    max-width: 80px;
    margin-right: 5px;
}

.skill-box p {
    margin: 10px;
    flex-grow: 1;
    
}

.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
/* ✅ FORCE 3 SKILLS PER ROW ON MOBILE */
@media screen and (max-width: 768px) {
  .skills-container {
    grid-template-columns: repeat(3, 1fr);  /* ✅ Always 3 per row */
    margin-left: 4%;
    margin-right: 4%;
    gap: 12px;
  }

  .skill-box {
    padding: 10px;
    justify-content: center;
  }

  .skill-box img {
    max-width: 28px;
  }

  .skill-box p {
    font-size: 14px;
    text-align: center;
    margin: 5px 0 0 0;
  }
}

/*projects*/
/*================== PROJECTS SECTION STYLING ===========*/

.prj{
    padding-top: 6rem;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(9, 97, 13, 1) 48%, rgba(0, 0, 0, 1) 100%);
}
.featured-projects-box h2{
    font-size: 60px;
    letter-spacing: 5px;
}
.featured-projects-box h2 span{
    color: rgb(7, 183, 7);
}
.featured-projects-box,
.other-projects-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.project {
    display: flex;
    flex-direction: column-reverse;
    max-width: 30rem;
    max-height: 58rem;
    background: rgb(38, 50, 67);
    box-shadow: 0 1rem 2rem 0 rgba(27, 27, 27, 0.1);
    border-radius: 1.2rem;
    zoom: 140%;
    }

.project-details-box {
    padding: 2.5rem;
    padding-bottom: 0;
}

.project-main-info span,
h3 {
    margin: 0;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}
.project-main-info h3{
    background: rgb(7, 183, 7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}
.project-main-info p > a {
    font-family: 'Rubik', sans-serif;
    color: #1de4ff;
}

.project-main-info p {
    font-family: 'Rubik', sans-serif;
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.project-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgb(7, 183, 7);
    border-radius: 50%;
    font-size: 20px;
    color: rgb(7, 183, 7);
    text-decoration: none;
    margin: 30px 15px 30px 0;
}

.project-icons a:hover{
    background: rgb(7, 183, 7);
    color: #000;
    box-shadow: 0 0 20px rgb(7, 183, 7);
}

.project-tools p {
    background: linear-gradient(150deg,rgba(29, 228, 255, 0.81) -6.94%,rgba(59, 83, 168, 0.9) 97.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.3rem;
    font-family: 'Rubik', sans-serif;
}

.project-image-box {
    position: relative;
}

.project-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.project-img-link > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem 1.2rem 0 0;
}

.project-img-link > img:hover {
    transform: none;
}

/*========================Timeline====================*/
.acc-sec{
    padding-top: 7%;
}
.hed{
    font-weight: 600;
    font-size: large;
    letter-spacing: 2.5px;
}
.acc-sec h1{
    font-size: 60px;
    letter-spacing: 5px;
}
.acc-sec h1 span{
    color: rgb(14, 156, 38);
}
.exp-sec{
    padding-top: 5%;
    
}
.exp-sec h1{
    font-size: 60px;
    letter-spacing: 5px;
}
.exp-sec h1 span{
    color: rgb(29, 153, 7);
}
.timeline{
    position: relative;
    width: 100%;
    margin: 20px 1%;
}
.timeline-container {
    margin: 0;
    margin-left: 10%;
    margin-right: 10%;
    padding: 0;
    box-sizing: border-box;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.containerTline{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0%{
        opacity: 1;
        transform:translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.containerTline:nth-child(1){
    animation-delay: 0s;
}

.containerTline:nth-child(2){
    animation-delay: 1s;
}

.containerTline:nth-child(3){
    animation-delay: 2s;
}

.text-box{
    padding: 20px 30px;
    background-color: #fff;
    color: #000;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}
.text-box h2{
    font-size: medium;
}
.text-box p{
    text-align: justify;
}
.left-container{
    left: 0;
}
.right-container{
    left: 50%;
}
.containerTline img{
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
}
.right-container img{
    left: -20px;
}
.academics::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    background-color: #fff;
    border-radius: 5px;
    animation: moveline 3s linear forwards;
}
.internships::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    background-color: #fff;
    border-radius: 5px;
    animation: moveline 3s linear forwards;
}
@keyframes moveline {
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
}

.left-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
    right: -15px;
}
.right-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
    left: -15px;
}

/*==============================Contact===========*/
.contacts {
    color: #fff;
    display: grid;
    /*grid-template-columns: repeat (2, 1fr);*/
    align-items: center;
    gap: 3rem;
    padding: 40px;
    padding-top: 70px;
    justify-content: center;
    background: url('../img/bgWorld.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.contact-text {
    align-content: center;
}

.contact-text h2 span {
    color: rgb(7, 183, 7);
}

.contact-text h4 {
    margin: 15px 0;
    color: rgb(228, 228, 228);
    font-size: 20px;
    font-weight: 600;
}

.contact-list {
    margin-bottom: 3rem;
}

.contact-list li {
    margin-bottom: 10px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-list i {
    display: inline-block;
    color: rgb(7, 183, 7);
    font-size: 20px;
    font-weight: 600;
    transition: all .40s ease;
    padding: 10px;
}


.contact-icons i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgb(7, 183, 7);
    border-radius: 50%;
    font-size: 20px;
    color: rgb(7, 183, 7);
    text-decoration: none;
    margin: 0px 15px 0px 0;
    opacity: 1;
}

.contact-icons i:hover {
    background: rgb(7, 183, 7);
    color: #000;
    box-shadow: 0 0 20px rgb(7, 183, 7);
}

.last-text p{
    width: 100%;
    text-align: center;
    padding: 25px;
    font-weight: 300;
    margin-top: 20%;
}

/* Go Top Button */
.top{
    position: fixed;
    bottom: 2.1rem;
    left: 1rem;
    display: flex;
    opacity: 0;
    transition: all .4s;
}

.top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.top i{
    color: black;
    background: rgb(7, 183, 7);
    font-size: 20px;
    padding: 10px;
    border-radius: 0.5rem;
}

.top i:hover {
    box-shadow: 0 0 5px rgb(63, 234, 25),
    0 0 25px rgb(63, 234, 25), 0 0 50px rgb(63, 234, 25),0 0 200px rgb(63, 234, 25);
}

/* ==================================Scroll Reveal===================== */
.reveal{
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(20px);
}


/*============================== Animations ===========================*/

@keyframes animate-path1 {
    100% {
        stroke-dashoffset: 180;
    }
}

@keyframes animate-path2 {
    100% {
        stroke-dashoffset: 140;
    }
}

@keyframes animate-path3 {
    100% {
        stroke-dashoffset: 90;
    }
}

@keyframes animate-path4 {
    100% {
        stroke-dashoffset: 50;
    }
}

@keyframes animate-bar {
    100% {
        stroke-dashoffset: -1;
    }
}

@keyframes showText {
    100% {
        opacity: 1;
    }
}

@keyframes animate {

    100% {
        transform: scaleX(1);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideUP {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/*===================================Responsive My Phone===============*/

@media (max-width: 900px) and (min-width: 700px) {
   

    /*=========Home=========*/
    .home{
        align-items: normal;
        padding-top: 14%;
        padding-bottom: 40px;
        margin-top: 10px;
    }
    .home-content h1 {
        font-size: 45px;
        font-weight: 600;
    }
    
    .home-content h3 {
        font-size: 30px;
        font-weight: 300;
    }
    
    .home-content h4 {
        font-size: 30px;
        font-weight: 200;
    }
    
    .home-content h4 span {
        font-size: 30px;
        font-weight: 200;
    }
    .img{
        max-width: 400px;
        position: relative;
        left: -10%;
        top: 0%;
    }
    .home-sci a{
        margin-top: 0px;
        padding-top: 0%;
    }

    /*========About====*/
    .about {
        grid-template-columns: 1fr;
        text-align: center; 
    }

    .about-img {
        order: 2;
        margin-top: 0%;
        padding-right: 0; 
        justify-self: center;
    }

    .about-text {
        order: 1; 
        padding-left: 5%;
        padding-right: 5%;
    }

    .about-text h2 {
        text-align: center;
        font-size: 60px;
        letter-spacing: 5px;
        padding-bottom: 10px;
    }

    .abtbtn-box {
        margin-top: 10px;
        max-width: max-content;
        display: block;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 20px;
        line-height: normal;
        letter-spacing: 0px;
        margin-bottom: 1rem;
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    /*================timeline responsive====*/
    .acc-sec{
        padding-top: 15%;
    }
    .acc-sec h1{
        font-size: 50px;
    }
    .exp-sec h1{
        font-size: 50px;
    }
    .timeline{
        margin: 50px auto;
    }
    .timeline::after{
        left: 31px;
    }
    .containerTline{
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    .text-box{
        font-size: 13px;
    }
    .text-box small{ 
        font-size: 10px;
    }
    .right-container{
        left: 0;
    }
    .left-container img, .right-container img{
        left: 10px;
    }
    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}
/*=============================Responsive Small phone==============*/
@media (max-width: 700px) and (min-width: 400px) {
    
    /*===============navbar============*/
    .menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
            background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(9, 97, 13, 1) 48%, rgba(0, 0, 0, 1) 100%);

        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 .1rem 1rem #000;
        padding: 20px 0;
    }

    .menu-toggle:checked + .menu-icon + .navbar {
        display: flex;
    }

    .navbar a {
        margin: 15px 0;
    }

    /*================home===============*/
    .home{
        align-items: normal;
        padding-top: 30%;
        padding-bottom: 40px;
        margin-top: 10px;
    }
    .home-content h1 {
        font-size: 35px;
        font-weight: 600;
    }
    
    .home-content h3 {
        font-size: 25px;
        font-weight: 300;
    }
    
    .home-content h4 {
        font-size: 15px;
        font-weight: 200;
    }
    
    .home-content h4 span {
        font-size: 15px;
        font-weight: 200;
    }
    .img{
        max-width: 400px;
        position: relative;
        left: -10%;
        top: 2%;
        padding-bottom: 10px;
        padding-left: 0;
        margin-left: 0;
    }
    .btn-box:hover {
        box-shadow: 0 0 5px rgb(63, 234, 25), 0 0 10px rgb(63, 234, 25), 0 0 15pc rgb(63, 234, 25), 0 0 20px rgb(63, 234, 25), 0 0 25px rgb(63, 234, 25);
    }
    /*=============about================*/
    .about {
        grid-template-columns: 1fr;
        text-align: center; 
    }

    .about-img {
        order: 2;
        margin-top: 0%;
        padding-right: 0; 
        justify-self: center;
    }

    .about-text {
        order: 1; 
        padding-left: 5%;
        padding-right: 5%;
    }

    .about-text h2 {
        text-align: center;
        font-size: 30px;
        letter-spacing: 5px;
        padding-bottom: 10px;
    }

    .abtbtn-box {
        margin-top: 10px;
        max-width: max-content;
        display: block;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0px;
        margin-bottom: 1rem;
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    /*===================skills==============*/
    .subtitle{
        font-size: 40px;
        text-align: center;
        letter-spacing: 5px;
    }
    .skill-box p{
        font-size: 19px;
    }
    .skills-container {
        margin-left: 5%;
        margin-right: 5%;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .skill-box img{
        max-width: 30px;
        padding-bottom: 5px;
    }

    /*==========================project==============*/
    .project{
        max-width: 25rem;
    }
    .prj{
        padding-bottom: 30px;
    }
    /*===================contact====================*/
    .contacts h2{
        font-size: 50px;
    }
    .contact-list i{
        font-size: 15px;
        padding: 5px 5px 0 0;
    }
    .contact-list li{
        font-size: 15px;
    }
    .top{
        position: fixed;
        bottom: 2rem;
        left: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        transition: all .4s;
    }
    /*================timeline responsive====*/
    .timeline-container{
        margin-left: 5%;
        margin-right: 5%
    }
    .acc-sec{
        padding-top: 20%;
    }
    .acc-sec h1{
        font-size: 40px;
    }
    .exp-sec h1{
        font-size: 40px;
    }
    .timeline{
        margin: 50px auto;
    }
    .timeline::after{
        left: 31px;
    }
    .containerTline{
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    .text-box{
        font-size: 13px;
    }
    .text-box p{
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .text-box small{
        font-size: 10px;
    }
    .right-container{
        left: 0;
    }
    .left-container img, .right-container img{
        left: 10px;
    }
    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}
/*==============My mob========*/
@media (max-width: 400px) {
    
    .menu-icon {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 40%;
        background: hsl(228, 15%, 20%);
        position: absolute;
        top: 80px;
        right: 0;
        transition: 0.5s;
        padding: 20px 0;
        
    }
    .scrolled{
        box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.5);
    }
    .menu-toggle:checked + .menu-icon + .navbar {
        display: flex;
    }

    .navbar a {
        margin: 15px 0;
    }

    /*home*/
    .home{
        width: 100%;
        align-items: normal;
        padding-top: 35%;
        padding-bottom: 25;
        margin-top: 15px;
    }
    .home-content h1 {
        font-size: 25px;
        font-weight: 600;
    }
    
    .home-content h3 {
        font-size: 15px;
        font-weight: 300;
    }
    
    .home-content h4 {
        font-size: 18px;
        font-weight: 200;
    }
    
    .home-content h4 span {
        font-size: 20px;
        font-weight: 200;
    }
    .btn-box:hover {
        box-shadow: 0 0 5px rgb(63, 234, 25), 0 0 10px rgb(63, 234, 25), 0 0 15pc rgb(63, 234, 25), 0 0 20px rgb(63, 234, 25), 0 0 25px rgb(63, 234, 25);
    }
    .img{
        max-width: 300px;
        position: relative;
        left: -10%;
        top: 2%;
        padding-bottom: 2%;
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .btn-box{
        margin-top: 2.5%;
    }
    
    /*about*/
    .about {
        grid-template-columns: 1fr;
        text-align: center; 
    }

    .about-img {
        order: 2;
        margin-top: 0%;
        padding-right: 0; 
        justify-self: center;
    }

    .about-text {
        order: 1; 
        
        padding-left: 5%;
        padding-right: 5%;
    }

    .about-text h2 {
        text-align: center;
        font-size: 30px;
        letter-spacing: 5px;
        padding-bottom: 10px;
    }

    .abtbtn-box {
        margin-top: 10px;
        max-width: max-content;
        display: block;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0px;
        margin-bottom: 1rem;
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    /*====== GO TO TOP ======*/
.top {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}
.top i {
    color: #000;
    font-size: 20px;
}

/* Show button when active */
.top.active {
    opacity: 1;
    pointer-events: auto;
}

    /*================timeline responsive====*/
    .acc-sec{
        padding-top: 30%;
    }
    .exp-sec h1{
        font-size: 30px;
    }
    .acc-sec h1{
        font-size: 30px;
    }
    .hed{
        letter-spacing: 1px;
    }
    .timeline-container{
        margin-left: 2.5%;
        margin-right: 2.5%
    }
    .timeline{
        margin: 50px auto;
    }
    .timeline::after{
        left: 31px;
    }
    .containerTline{
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    .text-box{
        font-size: 13px;
    }
    .text-box p{
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .text-box small{
        font-size: 10px;
    }
    .right-container{
        left: 0;
    }
    .left-container img, .right-container img{
        left: 10px;
    }
    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}


/*=============================Project for desktop display==================*/


@media screen and (min-width: 1024px) {
    .featured-projects-box{
        margin-left: 10%;
        margin-right: 10%;
        padding-bottom: 30px;
    }
    .separator ~ .project {
        position: relative;
        min-width: 100%;
        background: none;
    }
    .project {
        box-shadow: none;
        padding-bottom: 50px;
    }
    .project-details-box {
        position: relative;
        margin-top: 1.5rem;
        padding: 0;
        max-width: 80%;
        z-index: 9;
    }
    .project-main-info {
        width: 600px;
        position: relative;
        padding: 15px;
        border-radius: 0.8rem;
        background: rgb(38, 50, 67);
        z-index: 1;
    }
    .project-main-info p{
        text-align: justify;
    }
    .project .project-image-box {
        z-index: 0;
        max-width: auto;
        height: 350px;
    }
    .project-tools p {
        display: inline-block;
    }
    .project-image-box::before {
        top: -3rem;
        bottom: 0;
    }
    .project-image-box:hover{
        z-index: 10;
    }
    .project-img-link > img {
        border-radius: 1.2rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .project-img-link > img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }


    .separator ~ .project:nth-child(odd) {
        flex-direction: row-reverse;
        text-align: right;
    }
    .project-main-info::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        bottom: 0;
        border-radius: 0.8rem;
        transform: skew(-16deg);
        background-color: rgb(38, 50, 67);
        z-index: -2;
    }
    .separator ~ .project:nth-child(even) .project-main-info::before {
        top: 0;
        left: 3.7rem;
    }
    .separator ~ .project:nth-child(odd) .project-main-info::before {
        top: 0;
        right: 2.7rem;
        bottom: 0;
        border-radius: 0.8rem;
        transform: skew(-10deg);
        background-color: rgb(38, 50, 67);
        z-index: -2;
    }
    .separator ~ .project:nth-child(odd) .project-links {
        justify-content: flex-end;
    }
    
    .separator ~ .project:nth-child(even) .project-image-box {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        align-self: stretch;
    }
    .separator ~ .project:nth-child(odd) .project-image-box {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        align-self: stretch;
    }
    
}
/* certifications section styling */
.teams {
  
  background-color: transparent;
  color: black;
  margin-bottom: auto;
  padding: 30vh;
  padding-top: 10vh;
}
.teams .title {
  text-align: center;
  font-size: 55px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6vh;
}

.teams .title::after {
  content: " Credentials";
  color: rgb(8, 194, 15);
}

.owl-carousel .card {
  background: linear-gradient(90deg,rgba(6, 191, 0, 1) 0%, rgba(186, 182, 182, 1) 45%, rgba(6, 191, 0, 1) 100%);  border-radius: 10px;
  padding: 5vh; 
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}



.owl-carousel .card img {
  width: 10px;
  height: autox;
  border-radius: 2%;
  border: 4px solid white;
  margin-bottom: 1px;
  transition: border-color 0.3s ease;
}

.owl-carousel .card:hover img {
  border-color: rgba(191, 3, 3, 0.655);
}

.button-area {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.button-area button {
  color: #fff;
  width: 160px;
  height: 45px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  background: rgb(0, 0, 0);
  border: 2px solid rgba(195, 6, 6, 0.556);
  transition: all 0.3s ease;
  outline: none;
}

.button-area button:hover {
  color: crimson;
  background: transparent;
}


.owl-carousel .card .text {
  font-size: 35px; /* certificate title*/
  font-weight: bold;
  margin-bottom: 5px;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background: transparent;
  border: 2px solid crimson;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
  background: crimson;
}

  
/* auto play slider */
.slider {
  background-color: #e5ecfb;
  height: 100px;
  overflow: hidden;
  position: relative;
  width: 80%;
  margin: 2rem auto 0 auto;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem white;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 100px;
  z-index: 2;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 40s linear infinite;
}

.slide {
  height: 100px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  height: 100px;
  width: 250px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* =================== Responsive Fixes =================== */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .teams {
    padding: 15vh 5vw; /* reduce padding */
  }

  .teams .title {
    font-size: 28px;
    padding-bottom: 4vh;
  }

  .owl-carousel .card {
    padding: 3vh;
  }

  .owl-carousel .card .text {
    font-size: 28px;
  }

  .button-area button {
    width: 140px;
    height: 40px;
    font-size: 16px;
  }

  .slider {
    width: 90%;
    height: 80px;
  }

  .slide, .slide img {
    width: 180px;
    height: 80px;
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .teams {
    padding: 12vh 4vw;
  }

  .teams .title {
    font-size: 24px;
  }

  .owl-carousel .card {
    padding: 2.5vh;
  }

  .owl-carousel .card img {
    width: 120px;
    height: auto;
  }

  .owl-carousel .card .text {
    font-size: 22px;
  }

  .button-area button {
    width: 120px;
    height: 50px;
    font-size: 15px;
  }

  .slider {
    width: 100%;
    height: 70px;
  }

  .slide, .slide img {
    width: 150px;
    height: 70px;
  }
}

/* Small Mobiles (max-width: 480px) */
@media screen and (max-width: 480px) {
  .teams {
    padding: 10vh 3vw;
  }

  .teams .title {
    font-size: 20px;
  }

  .owl-carousel .card {
    padding: 2vh;
  }

  .owl-carousel .card img {
    width: 100px;
  }

  .owl-carousel .card .text {
    font-size: 18px;
  }

  .button-area button {
    width: 100px;
    height: 50px;
    font-size: 14px;
  }

  .slider {
    height: 60px;
  }

  .slide, .slide img {
    width: 120px;
    height: 60px;
  }
}

/* ====================== STATS SECTION ====================== */
.stats-section {
  padding: 4rem 2rem;
  background:linear-gradient(90deg,hsl(118, 82%, 20%) 1%, rgba(0, 0, 0, 1) 51%, rgba(12, 92, 9, 1) 100%);
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ff99;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-card img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}
.stat-card img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}
/* --- CONTACT SECTION STYLING --- */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Hides parts of blobs that go off-screen */
    font-family: 'Poppins', sans-serif; /* Recommended to add a font */
    background:linear-gradient(90deg,hsl(118, 82%, 20%) 1%, rgba(0, 0, 0, 1) 51%, rgba(12, 92, 9, 1) 100%);
}

/* --- A container is recommended for centering content --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    gap: 30px;
}

/* --- LEFT COLUMN: CONTACT INFO --- */
.contact-info {
    flex-basis: 40%;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #fffcfc;
    margin-bottom: 15px;
}

.contact-info .info-desc {
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;    
    background:linear-gradient(90deg,hsl(118, 82%, 20%) 1%, rgba(0, 0, 0, 1) 51%, rgba(12, 92, 9, 1) 100%);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #b20a0a9c;
    transition: box-shadow 0.3s ease;
    font-size: 1.5rem;
}

.info-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-item .icon {
    font-size: 1.2rem;
    color: #c70a0ac5;
    background-color: #eef2ff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-color: #b20a0a9c;
}

.info-item .details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #eeeeee;
    margin: 0;
    font-size: 1.5rem;
}

.info-item .details span {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-socials {
    margin-top: 40px;
}

.contact-socials h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons a {
    color: #fbf3f3;
    font-size: 1.6rem; /* Increased from 1.2rem */
    margin-right: 20px; /* Increased margin for better spacing */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ff5d5d;
    transform: translateY(-3px);
}

/* --- RIGHT COLUMN: CONTACT FORM --- */
.contact-form {
    flex-basis: 60%;
    background:linear-gradient(90deg,hsl(118, 82%, 20%) 1%, rgba(0, 0, 0, 1) 51%, rgba(12, 92, 9, 1) 100%);
    padding: 40px;
    border-radius: 15px;   
    color: #000000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 2px double rgba(126, 10, 10, 0.737);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 1.5rem;
    color: #fff9f9;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ab0000d3;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #900d0dcc;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex-basis: 50%;
}

textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(204, 41, 41, 0.74); /* Fixed border */
    border-radius: 8px;
    background: transparent;
    color: #ffffffc4;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.btn-submit:hover {
    box-shadow: 0 5px 15px rgba(93, 93, 255, 0.4);
    transform: translateY(-2px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex-basis: 100%;
    }

    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===================================
   14. Footer 
==================================== */
.footer {
    background: linear-gradient(135deg, rgba(13, 17, 31, 0.95), rgba(9, 174, 14, 0.95));
    position: relative;
   
    padding: 80px 5% 30px;
    color: white;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #3cc10c, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-nav h4, 
.footer-social h4 {
    color: #ff9e2c;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #0ab229, rgba(255, 158, 44, 0.2));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-nav ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
    transform: translateY(-5px);
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}
