/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.title i {
    color: #00D1D1;
    margin-right: 10px;
}

.title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: #00D1D1;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background: #111;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .max-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #00D1D1;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu li a:hover {
    color: #00D1D1;
}

.highlight-contact {
    background: #00D1D1;
    padding: 8px 15px;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Section */
.home {
    background: url('./images/Background_img_Home.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.home-content {
    width: 100%;
}

.text-1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00D1D1;
}

.text-2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00D1D1, #00a8a8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.typing, .typing-2 {
    color: #00D1D1;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #00D1D1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00D1D1;
}

.cta-button:hover {
    background: transparent;
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: transparent;
}

.cta-button.secondary:hover {
    background: #00D1D1;
}



/* Experience Section - Updated with Card Hover Effects */
/* Experience Section - Updated with Card Hover Effects */
.experience {
    background: #f8f9fa;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Hover Effect - Same as Skills, Certificates & Projects */
.job-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

.company-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-item:hover .company-logo {
    transform: scale(1.1);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.company-name {
    color: #00D1D1;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.duration {
    color: #666;
    margin-bottom: 8px;
    font-size: 1.0rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.duration::before {
    content: '📅';
    font-size: 0.8rem;
}

.location {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.0rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location::before {
    content: '📍';
    font-size: 0.8rem;
}

.description {
    color: #555;
    margin: 10px 0;
    line-height: 1.5;
}

/* Fixed: Skills styling inside job items */
.job-item .skills {
    color: #333;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.job-item:hover .skills {
    background: #00D1D1;
    color: #333; /* Changed from white to dark color for visibility */
    transform: scale(1.02);
}

.job-item .skills b {
    font-weight: 600;
    color: #00D1D1;
}

.job-item:hover .skills b {
    color: #fff; /* Bold text becomes white on hover */
}

/* Optional: Add a subtle gradient effect on hover */
.job-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-item:hover::before {
    transform: scaleX(1);
}

/* Optional: Add a shine effect */
.job-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.job-item:hover::after {
    left: 100%;
}



/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.column.left {
    flex: 1;
}

.column.left img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.column.left:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.column.right {
    flex: 2;
}

.summary-heading {
    color: #333;
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.ai-summary-list {
    list-style: none;
    margin: 20px 0;
}

.ai-summary-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover Effect for List Items */
.ai-summary-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 209, 209, 0.2);
}

.ai-summary-list i {
    color: #00D1D1;
    margin-top: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ai-summary-list li:hover i {
    transform: scale(1.2);
}

.ai-summary-list li span {
    color: #555;
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.ai-summary-list li:hover span {
    color: #333;
}

.ai-summary-list strong {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ai-summary-list li:hover strong {
    color: #00D1D1;
}

/* Optional: Add a subtle gradient effect on hover for list items */
.ai-summary-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ai-summary-list li:hover::before {
    transform: scaleX(1);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover Effect for Stats Section */
.stats:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

.stat-item {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    background: rgba(0, 209, 209, 0.05);
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D1D1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(0, 209, 209, 0.3);
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #00D1D1;
    font-weight: 600;
}

/* Optional: Add gradient border to stats section on hover */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stats:hover::before {
    transform: scaleX(1);
}

/* Optional: Add shine effect to stats section */
.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.stats:hover::after {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .column.left, .column.right {
        flex: none;
        width: 100%;
    }
    
    .column.left img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 120px;
    }
}



/* Projects Section - Updated with Card Hover Effects */
.projects {
    background: #f8f9fa;
}

.proj-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

/* Hover Effect - Same as Skills & Certificates */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

.box {
    padding: 20px;
}

/* Project icon animation on hover */
.box i {
    font-size: 2.5rem;
    color: #00D1D1;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover .box i {
    transform: scale(1.1);
}

.box .text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.card:hover .box .text {
    color: #00D1D1;
}

.project-subtitle {
    color: #00D1D1;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.project-details-list {
    list-style: none;
    margin-top: 15px;
}

.project-details-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.project-details-list li:hover {
    color: #00D1D1;
    padding-left: 25px;
}

.project-details-list li:before {
    content: '▸';
    color: #00D1D1;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.project-details-list li:hover:before {
    transform: translateX(3px);
}

.project-details-list strong {
    font-weight: 600;
    color: #333;
}

.project-details-list li:hover strong {
    color: #00a8a8;
}

/* Optional: Add a subtle gradient effect on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

/* Optional: Add a shine effect */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.card:hover::after {
    left: 100%;
}



/* Skills Section */
/* Skills Section - Full Width */
.skills {
    background: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.skills-content {
    width: 100%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}

.skill-category .box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.skill-category .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

.skill-category .box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00D1D1;
    transition: transform 0.3s ease;
}

.skill-category .box:hover i {
    transform: scale(1.1);
}

.skill-category .box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.skill-category .box:hover h3 {
    color: #00D1D1;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.skill-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00D1D1;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.skill-list li:hover {
    color: #00D1D1;
    padding-left: 20px;
}

.skill-list li:hover:before {
    transform: translateX(3px);
}

/* Optional: Add a subtle gradient effect on hover */
.skill-category .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.skill-category .box:hover::before {
    transform: scaleX(1);
}

/* Optional: Add a shine effect */
.skill-category .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.skill-category .box:hover::after {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-category .box {
        padding: 20px;
    }
}



/* Education Section */
.education {
    background: #f8f9fa;
}

.education-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.education-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Hover Effect - Same as Skills & Projects */
.education-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

/* Optional: Add top border accent */
.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.education-item:hover::before {
    transform: scaleX(1);
}

.edu-icon {
    width: 70px;
    height: 70px;
    background: #00D1D1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 209, 209, 0.3);
}

.education-item:hover .edu-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00D1D1, #00a8a8);
}

.edu-details {
    flex: 1;
}

.edu-details h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.education-item:hover .edu-details h3 {
    color: #00D1D1;
}

.institution {
    color: #00D1D1;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.duration::before {
    content: '📅';
    font-size: 0.8rem;
}

.grade {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(0, 209, 209, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.education-item:hover .grade {
    background: #00D1D1;
    color: white;
    transform: scale(1.05);
}

/* Optional: Add shine effect on hover */
.education-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.education-item:hover::after {
    left: 100%;
}

/* Mobile responsiveness for Education section */
@media (max-width: 768px) {
    .education-content {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 20px;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .edu-icon {
        margin: 0 auto 15px;
    }
    
    .edu-details h3 {
        font-size: 1.2rem;
    }
    
    .institution {
        font-size: 1rem;
    }
}


/* Contact Section */
.highlight-section {
    background: linear-gradient(135deg, #438994 0%, #764ba2 100%);
    color: white;
}

.highlight-section .title {
    color: white;
}

.highlight-section .title::after {
    background: white;
}

/* Add spacing to contact content */
.contact-content {
    padding: 10px 0; /* Add vertical padding */
}

.column.left {
    padding: 0 20px; /* Add left/right padding */
}

.column.left p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info {
    margin: 20px 0;
}

.info-item {
    margin-bottom: 8px; /* Reduced from 15px to 8px */
}

.info-content h4 {
    margin-bottom: 2px; /* Reduced from 3px to 2px */
}

.info-content p {
    font-size: 1.05rem;
}



/* Live badge styles */
/* Professional live indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff4757, #ff3838);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #00D1D1;
    width: 40px;
}

.info-content h4 {
    margin-bottom: 5px;
    color: white;
}

.info-content p {
    color: #ddd;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00D1D1;
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D1D1;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #00D1D1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #00b8b8;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}



/* Certificates Section - Updated with Skills Section Style */
.certificates {
    background: #f8f9fa;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certificate-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

/* Hover Effect - Same as Skill Categories */
.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 209, 209, 0.2);
}

/* Optional: Add a subtle animation on icon */
.certificate-card:hover .certificate-header i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.certificate-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.certificate-header i {
    color: #00D1D1;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.certificate-header h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.certificate-issuer {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 55px; /* Align with text after icon */
}

.certificate-link {
    padding-left: 55px; /* Align with text after icon */
}

.certificate-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(0, 209, 209, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-link a {
    background: #00D1D1;
    color: white;
    transform: scale(1.05);
}

.certificate-link a:hover {
    gap: 12px;
}

.certificate-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.certificate-link a:hover i {
    transform: translateX(3px);
}

/* Optional: Add a subtle gradient effect on hover */
.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D1D1, #6C63FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

/* Optional: Add a shine effect */
.certificate-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.certificate-card:hover::after {
    left: 100%;
}



/* Enhanced Footer */
/* Simple & Dynamic Footer */
footer {
    background: linear-gradient(to right, #111, #222);
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern background */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 209, 209, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 209, 209, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* About Section */
.footer-about {
    flex: 1;
    min-width: 300px;
}

.footer-about .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-about .logo span {
    color: #00D1D1;
}

.footer-about p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 400px;
}

/* Social Links */
.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link-footer {
    width: 40px;
    height: 40px;
    background: rgba(8, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-footer:hover {
    background: #00D1D1;
    color: white;
    transform: translateY(-5px);
    border-color: #00D1D1;
    box-shadow: 0 5px 15px rgba(0, 209, 209, 0.3);
}

/* Quick Links */
.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00D1D1;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a i {
    color: #00D1D1;
    font-size: 0.9rem;
    width: 20px;
}

.footer-links a:hover {
    color: #00D1D1;
    background: rgba(0, 209, 209, 0.1);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

.copyright a {
    color: #00D1D1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.view-counter {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-counter i {
    color: #00D1D1;
}

.view-counter a {
    color: #00D1D1;
    text-decoration: none;
}

.view-counter img {
    vertical-align: middle;
    margin-left: 5px;
}

.portfolio-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}

.portfolio-tag span {
    padding: 4px 12px;
    background: rgba(0, 209, 209, 0.1);
    color: #aaa;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 209, 209, 0.2);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00D1D1;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(0, 209, 209, 0.3);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.back-to-top:hover {
    background: #00D1D1;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 209, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        align-items: center; /* Center all items horizontally */
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about p {
        margin: 0 auto;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .portfolio-tag {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-tag span {
        width: fit-content;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll up button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00D1D1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer !important;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-up-btn.show {
    opacity: 1;
}


/* Enhanced Button Hover Effect */
.compose-btn {
    /* Ensure a transition is set for smoothness */
    transition: all 0.3s ease; 
}

.compose-btn:hover {
    /* Subtle background glow */
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.8); /* Green glow */
    /* Lift the button slightly */
    transform: translateY(-2px); 
}

/* Example: Add a pulse animation to the icon (if you want constant signaling) */
.compose-btn i.fa-paper-plane {
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* Form instructions */
.form-instruction {
    font-size: 0.98rem;
    color: #b0c4de; /* A subtle, light blue or gray */
    margin-bottom: 15px;
    padding: 0 5px;
}

/* ============================================================
   DARK MODE TOGGLE
   ============================================================ */
.theme-toggle {
    background: none;
    border: 2px solid rgba(0, 209, 209, 0.3);
    color: #00D1D1;
    font-size: 1.3rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.theme-toggle:hover {
    background: rgba(0, 209, 209, 0.1);
    border-color: #00D1D1;
    transform: scale(1.1) rotate(20deg);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: scale(1.2);
}

/* ============================================================
   DARK MODE STYLES
   ============================================================ */
body.dark-mode {
    background: #0a0a0a;
    color: #e0e0e0;
}

body.dark-mode section {
    background: #0a0a0a;
}

body.dark-mode .title {
    color: #e0e0e0;
}

body.dark-mode .experience {
    background: #111;
}

body.dark-mode .job-item {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .job-item .job-title {
    color: #e0e0e0;
}

body.dark-mode .job-item .skills {
    background: rgba(0, 209, 209, 0.15);
    color: #e0e0e0;
}

body.dark-mode .about-content .column.right {
    color: #e0e0e0;
}

body.dark-mode .ai-summary-list li {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .ai-summary-list li span {
    color: #ccc;
}

body.dark-mode .stats {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .projects {
    background: #111;
}

body.dark-mode .card {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .box .text {
    color: #e0e0e0;
}

body.dark-mode .project-details-list {
    color: #ccc;
}

body.dark-mode .project-details-list strong {
    color: #e0e0e0;
}

body.dark-mode .skills {
    background: #0a0a0a;
}

body.dark-mode .skill-category .box {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .skill-category .box h3 {
    color: #e0e0e0;
}

body.dark-mode .skill-list li {
    color: #ccc;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .skill-list li:hover {
    color: #00D1D1;
}

body.dark-mode .education {
    background: #111;
}

body.dark-mode .education-item {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .education-item h3 {
    color: #e0e0e0;
}

body.dark-mode .certificates {
    background: #111;
}

body.dark-mode .certificate-card {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .certificate-card h3 {
    color: #e0e0e0;
}

body.dark-mode .certificate-issuer {
    color: #999;
}

body.dark-mode .certificate-link a {
    color: #e0e0e0;
    background: rgba(0, 209, 209, 0.15);
}

body.dark-mode .certificate-link a:hover {
    background: #00D1D1;
    color: #0a0a0a;
}

body.dark-mode footer {
    background: linear-gradient(to right, #000, #0a0a0a);
    color: #e0e0e0;
}

body.dark-mode .footer-about p {
    color: #999;
}

body.dark-mode .social-link-footer {
    color: #999;
    background: rgba(0, 209, 209, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-link-footer:hover {
    background: #00D1D1;
    color: #0a0a0a;
}

body.dark-mode .footer-links a {
    color: #999;
    background: rgba(0, 209, 209, 0.05);
}

body.dark-mode .footer-links a:hover {
    color: #00D1D1;
    background: rgba(0, 209, 209, 0.15);
}

body.dark-mode .copyright {
    color: #999;
}

body.dark-mode .view-counter {
    color: #999;
}

body.dark-mode .portfolio-tag span {
    color: #999;
    background: rgba(0, 209, 209, 0.05);
    border-color: rgba(0, 209, 209, 0.2);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 209, 209, 0.3);
    color: #e0e0e0;
}

body.dark-mode .form-instruction {
    color: #999;
}

body.dark-mode .highlight-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

body.dark-mode .info-content h4 {
    color: #e0e0e0;
}

body.dark-mode .info-content p {
    color: #999;
}

/* Dark mode theme toggle icon change */
body.dark-mode .theme-toggle i::before {
    content: '';
}


/* --- WhatsApp Float Button Styles --- */

.whatsapp-float {
    /* Stick it to the bottom-right of the viewport */
    position: fixed;
    bottom: 85px; /* Adjust vertical position */
    right: 32px; /* Adjust horizontal position */
    z-index: 1000; /* Ensure it's above all other content */
}

.whatsapp-link {
    /* Basic button styling */
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    border-radius: 50px; 
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.6);
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    animation: whatsapp-glow 2s ease-in-out infinite alternate;
}

.whatsapp-link:hover {
    background-color: #128c7e; /* Darker green on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px); /* Subtle lift effect */
}

.whatsapp-link .fab {
    /* Icon styling */
    font-size: 28px;
    margin-right: 0; 
    /* Ensure no residual text selection */
    user-select: none; 
    transition: margin-right 0.3s ease;
}

.whatsapp-link .whatsapp-text {
    /* Text styling: hide by default and reveal on hover */
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 0;
}

.whatsapp-link:hover .whatsapp-text {
    /* Reveal text on hover */
    max-width: 200px; /* Adjust based on max text length */
    opacity: 1;
    margin-left: 8px; /* Space between icon and text */
}

/* Optional Waving Animation (for extra polish) */
.whatsapp-link:hover .fab {
    animation: wave 1.5s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    45% { transform: rotate(5deg); }
    60% { transform: rotate(0deg); }
}

@keyframes whatsapp-glow {
    0% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.6); }
    25% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 211, 102, 0.7), 0 0 35px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4); }
    75% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 211, 102, 0.7), 0 0 35px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.6); }
}


/* Responsive Design */
@media (max-width: 992px) {
    .text-2 {
        font-size: 3rem;
    }
    
    .text-3 {
        font-size: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .column.left img {
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #111;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .menu-btn {
        display: block;
    }
    
    .text-2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .job-item {
        flex-direction: column;
        text-align: center;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .text-2 {
        font-size: 2rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}



/* About Section Image - Clean Version */
.column.left {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.column.left:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.column.left img {
    width: 100%;
    height: auto;
    display: block;
}



/* ===== SIMPLE CONTACT SOLUTION ===== */

.simple-contact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Direct Email Section */
.email-direct {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.direct-email-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.direct-email-header i {
    color: #00D1D1;
    font-size: 1.3rem;
}

.direct-email-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.email-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 209, 209, 0.15);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(0, 209, 209, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.email-btn:hover {
    background: rgba(0, 209, 209, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 209, 209, 0.2);
    border-color: #00D1D1;
}

.email-btn i {
    color: #00D1D1;
    font-size: 1.2rem;
}

.email-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 5px 0 0 0;
    text-align: center;
}

/* Form Alternative */
.contact-form-alt {
    margin-top: 20px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-header i {
    color: #00D1D1;
    font-size: 1.3rem;
}

.form-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* Form Styles */
#compose-form .form-group {
    margin-bottom: 15px;
}

#compose-form input,
#compose-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

#compose-form input::placeholder,
#compose-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#compose-form input:focus,
#compose-form textarea:focus {
    outline: none;
    border-color: #00D1D1;
    background: rgba(255, 255, 255, 0.15);
}

.compose-btn {
    width: 100%;
    padding: 15px;
    background: #25D366; /* WhatsApp green for consistency */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.compose-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.compose-btn i {
    font-size: 1.1rem;
}

/* Success Message */
.compose-success {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 8px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
    border-left: 4px solid #25D366;
    display: none;
}

.compose-success i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-contact {
        padding: 20px;
    }
    
    .email-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .email-btn span {
        word-break: break-all;
        font-size: 0.85rem;
    }
    
    #compose-form input,
    #compose-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .compose-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .simple-contact {
        padding: 15px;
    }
    
    .direct-email-header,
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .email-btn {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .email-note {
        font-size: 0.8rem;
    }
}