/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Body */
body {
    background-color: #f5f5f5;
    overflow-x: hidden;
}


/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: orange;
    text-decoration: none; /* Removes underline */
}
.logo span {
    color: rgb(73, 73, 231);
}

/* Navigation Menu (Centered) */
.nav-container {
    flex: 1; /* Takes available space */
    display: flex;
    justify-content: center; /* Centers the nav */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: rgb(245, 143, 10);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
}

.nav-links a:hover {
    background-color: rgb(14, 14, 139);
    border-radius: 5px;
    color: white;
}

/* Download CV Button */
.btn-container {
    text-align: right;
}

.btn {
    background-color: orange;
    color: rgb(28, 60, 241);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* Mobile Styles */
/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Hide Desktop Navigation */
    .nav-container {
        display: none;
    }
    
    .nav-links {
        display: none; /* Hide menu */
    }

    /* Dynamic Mobile Icons */
    .mobile-icons {
        display: flex;
        flex-direction: column;
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 15px;
        z-index: 999;
    }

    .mobile-icons a {
        font-size: 1.8rem;
        color: rgb(161, 161, 161);
        transition: color 0.3s ease-in-out;
        text-align: center;
    }

    .mobile-icons a:hover {
        color: orange;
    }
}


/* Hide Mobile Icons on Desktop */
@media screen and (min-width: 769px) {
    .mobile-icons {
        display: none;
    }
}
/* Hero Section */
/* Hero Section */
.hero {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 10px;
    max-width: 1000px;
    margin: 80px auto 0; /* Added margin-top for spacing */
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
}

/* Remove background overlay */
.hero-overlay {
    display: none;
}

/* Hero Content */
.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: bold; /* Make text bold */
    margin-top: 10px;
}

/* Hero Image */


/* Section Title */
.section-title {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: bold;
}




/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    margin-top: 80px;
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Full-Fit Image */
.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Name Below Image */
.name-title {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* About Content */
.about-content {
    flex: 1;
    color: white;
    padding-left: 40px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    background: linear-gradient(to right, orange, rgb(14, 14, 139));
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Skill List */
.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.skills-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #f9f9f9;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.skills-list i {
    font-size: 1.2rem;
    color: white;
    background-color: #0e0e8b;
    padding: 10px;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-title {
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.skill-items {
    color: #555;
    font-size: 0.95rem;
    display: block;
    margin-top: 2px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .skills-list li {
        flex-direction: row;
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .skills-list i {
        font-size: 1rem;
        padding: 8px;
        min-width: 34px;
        min-height: 34px;
    }

    .skill-title {
        font-size: 1rem;
    }

    .skill-items {
        font-size: 0.9rem;
    }
}

.skills-button-wrapper {
    margin-top: 30px;
    text-align: center;
}

/* Optional: Add margin if button appears too close on smaller screens */
@media (max-width: 480px) {
    .skills-button-wrapper {
        margin-top: 20px;
    }
}

/* LinkedIn Button */
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: rgb(14, 14, 139);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.linkedin-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.linkedin-btn:hover {
    background-color: orange;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .about-content {
        padding: 0;
    }

    .about-image img {
        width: 80%;
        border-radius: 15px;
    }
}

/* Education Section */
.education {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 900px;
    margin: 80px auto;
}

/* Education Content */
.education-content {
    color: white;
    width: 100%;
    padding: 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(255, 165, 0, 0.8), -2px -2px 5px rgba(14, 14, 139, 0.8);
    margin-bottom: 25px;
}

/* Education Card */
.education-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 800px;
    margin: auto;
}

.education-card:hover {
    transform: scale(1.02);
}

/* University Logo */
.university-logo {
    width: 250px;
    height: auto;
    
   
}

/* Education Details */
.education-details {
    text-align: left;
    flex: 1;
}

.education-details h3 {
    font-size: 1.8rem;
    color: rgb(14, 14, 139);
    font-weight: bold;
    margin-bottom: 10px;
}

.degree {
    font-size: 1.3rem;
    font-weight: bold;
    color: orange;
}

/* Introduction Text */
.education-intro {
    font-size: 1.1rem;
    margin: 15px 0;
    line-height: 1.6;
    color: rgb(60, 60, 60);
}

/* Course List */
.course-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.course-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: rgb(14, 14, 139);
}

/* Check Icons */
.course-list i {
    color: orange;
    font-size: 1.3rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .education {
        flex-direction: column;
        text-align: center;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .university-logo {
        margin-bottom: 15px;
    }
}
/* Projects Section */
.projects {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    margin: 80px auto;
    max-width: 1100px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(255, 165, 0, 0.8), -2px -2px 5px rgba(14, 14, 139, 0.8);
    margin-bottom: 30px;
}

/* Projects Container */
.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 320px;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
}

/* Project Image */
.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Project Content */
.project-content {
    padding: 20px;
    text-align: left;
}

/* Project Title */
.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #16213e;
}

/* Project Company & Date */
.project-company {
    font-size: 1.2rem;
    color: orange;
    font-weight: bold;
}

.project-date {
    font-size: 1rem;
    color: gray;
    margin-bottom: 10px;
}

/* Project Intro */
.project-intro {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

/* Project Features */
.project-features {
    list-style: none;
    padding: 0;
}

.project-features li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    color: #16213e;
}

/* Check Icons */
.project-features i {
    color: orange;
    font-size: 1.2rem;
}

/* Details Button */
.details-button {
    display: inline-block;
    background: orange;
    color: white;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.details-button:hover {
    background: #ff8500;
}

/* See More Projects Button */
.see-more-container {
    margin-top: 30px;
}

.github-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #1a1a2e;
    padding: 12px 18px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.github-button i {
    margin-right: 8px;
    font-size: 1.5rem;
}

.github-button:hover {
    background: orange;
    color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .projects-container {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        width: 100%;
        max-width: 400px;
    }
}
/* Events Section */
.events {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    margin: 80px auto;
    max-width: 1100px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(255, 165, 0, 0.8), -2px -2px 5px rgba(14, 14, 139, 0.8);
    margin-bottom: 30px;
}

/* Events Container */
.events-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 320px;
    transition: transform 0.3s ease-in-out;
}

.event-card:hover {
    transform: scale(1.05);
}

/* Event Image */
.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Event Content */
.event-content {
    padding: 20px;
    text-align: left;
}

/* Event Title */
.event-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #16213e;
}

/* Event Location */
.event-location {
    font-size: 1rem;
    color: orange;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Event Introduction */
.event-intro {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

/* What I Learned */
.event-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #16213e;
    margin-top: 10px;
}

/* Event Learnings */
.event-learnings {
    list-style: none;
    padding: 0;
}

.event-learnings li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    color: #16213e;
}

/* Check Icons */
.event-learnings i {
    color: orange;
    font-size: 1.2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 100%;
        max-width: 400px;
    }
}






/* Connect Me Section */
.connect {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    margin: 80px auto;
    max-width: 900px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(255, 165, 0, 0.8), -2px -2px 5px rgba(14, 14, 139, 0.8);
    margin-bottom: 30px;
}

/* Container Layout */
.connect-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Profile Image */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.8);
    transition: transform 0.3s ease-in-out;
}

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

.profile-image:hover {
    transform: scale(1.1);
}

/* Contact Buttons */
.contact-btn {
    display: block;
    width: 200px;
    padding: 12px;
    margin: 10px auto;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.email {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    box-shadow: 0px 4px 10px rgba(255, 87, 34, 0.6);
}

.call {
    background: linear-gradient(135deg, #00c853, #64dd17);
    box-shadow: 0px 4px 10px rgba(0, 200, 83, 0.6);
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 2rem;
    color: white;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-links a:hover {
    transform: scale(1.2);
    color: orange;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .connect-container {
        flex-direction: column;
    }
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

/* Browser Support - Horizontal Layout */
.browser-support {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Icons - Styled and Animated */
.browser-support i {
    font-size: 1.5rem;
    color: orange;
    margin: 0 10px;  /* Adds spacing between icons */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.browser-support i:hover {
    transform: scale(1.2);
    color: #ffeb3b;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: #bbbbbb;
    margin-bottom: 10px;
}

/* Copyright */
.copyright {
    font-size: 1rem;
    font-weight: bold;
    color: #ff9800;
}
/* Apply background to the entire page */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('space-soldier-ai-wallpaper-4k.png') center/cover no-repeat fixed;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Create a wrapper to structure the content */
.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Make sections semi-transparent */
section {
    background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    backdrop-filter: blur(10px); /* Smooth effect */
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Make text inside sections bold & professional */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 165, 0, 0.9);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .wrapper {
        padding: 10px;
    }
    
    section {
        padding: 20px;
    }
}
.certification-section {
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    color: white;
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.certification-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.certification-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.certification-card:hover {
    transform: scale(1.05);
}

.certification-card img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.certification-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.certification-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    color: white;
}

.certification-card ul li {
    font-size: 0.9rem;
    padding: 5px 0;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: darkorange;
}

/* Responsive */
@media (max-width: 768px) {
    .certification-container {
        flex-direction: column;
        align-items: center;
    }

    .certification-card {
        width: 90%;
    }
}






.project-details {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.back-btn {
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.back-btn:hover {
    background: linear-gradient(to right, #ff7b00, #007BFF);
}

h1, h2 {
    color: #f7c08a;
}
/* Grid Layout for Images */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.image-grid img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 9999;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Image in Modal */
.image-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain; /* Ensures the image fits inside the modal */
  border-radius: 10px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

/* Navigation Arrows */
.image-modal .prev,
.image-modal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}

.image-modal .prev:hover,
.image-modal .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.image-modal .prev {
  left: 20px;
}

.image-modal .next {
  right: 20px;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .image-grid img {
    width: 130px;
  }

  .image-modal .prev,
  .image-modal .next {
    font-size: 26px;
    padding: 10px;
  }
}
.technologies {
    background: linear-gradient(135deg, orange, rgb(14, 14, 139));
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 25px;
    color: #f39509;
}

.technologies h2 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    min-width: 260px;
    flex: 1;
    max-width: 320px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.tech-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.tech-item span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    margin: 4px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.tech-item span:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #000;
}
html {
    scroll-behavior: smooth;
}
