/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Anchor style, ensure it doesn't affect page layout */
.anchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 0;
}

/* Tiripcloud AI Inference Services Styles */
.tiripcloud-inference {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.tiripcloud-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tiripcloud-content h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.tiripcloud-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tiripcloud-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.tiripcloud-feature {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 350px;
}

.tiripcloud-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tiripcloud-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #2C5282;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.tiripcloud-feature:hover .tiripcloud-icon {
    transform: scale(1.1);
}

.tiripcloud-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.tiripcloud-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.tiripcloud-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design - Tiripcloud AI Inference Services */
@media (max-width: 768px) {
    .tiripcloud-inference {
        padding: 60px 0;
    }
    
    .tiripcloud-content h2 {
        font-size: 2.2rem;
    }
    
    .tiripcloud-content p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .tiripcloud-features {
        gap: 30px;
    }
    
    .tiripcloud-feature {
        padding: 30px 20px;
    }
    
    .tiripcloud-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .tiripcloud-icon svg {
        width: 32px;
        height: 32px;
    }
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar Styles */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 75px;
    height: 75px;
    background-image: url('../images/TiripCloud Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1a1a1a;
    margin-right: 10px;
    vertical-align: middle;
}

.logo span {
    color: #4682B4;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4682B4;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 8px 0;
}

.dropdown-menu li {
    margin: 0;
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Add Left Indicator */
.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #4682B4;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(70, 130, 180, 0.15) 0%, rgba(65, 105, 225, 0.05) 100%);
    color: #4682B4;
    transform: translateX(5px);
    padding-left: 22px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Current Active Menu Item Styles */
.dropdown-menu a.active {
    background: linear-gradient(90deg, rgba(70, 130, 180, 0.2) 0%, rgba(65, 105, 225, 0.1) 100%);
    color: #4682B4;
}

.dropdown-menu a.active::before {
    transform: scaleY(1);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Device Dropdown Menu Optimization */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 90%;
        margin: 10px auto;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 18px;
        transform: translateX(3px);
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: #4682B4;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #4169E1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 130, 180, 0.3);
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Service Area Styles */
.services {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4682B4;
}

/* Contact Us Section Title White Text */
.contact .section-title h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card i {
    font-size: 3rem;
    color: #4682B4;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover i {
    color: #4169E1;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

/* About Us Section Styles */
.about {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* AI Services Showcase Styles */
.ai-services {
    padding: 100px 0;
    background-color: white;
}

.ai-services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ai-service-card {
    background-color: #f8f9fa;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ai-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ai-service-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-service-icon svg {
    color: #4682B4;
    transition: color 0.3s ease;
}

.ai-service-card:hover .ai-service-icon svg {
    color: #4169E1;
}

.ai-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.ai-service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Infrastructure Highlights Styles */
.infrastructure {
    padding: 80px 0;
    background-color: #f5f5f7;
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.infrastructure-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.infrastructure-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.infrastructure-text ul {
    list-style: none;
    padding: 0;
}

.infrastructure-text li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 1rem;
}

.infrastructure-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4682B4;
    font-size: 1.5rem;
    line-height: 1;
}

.infrastructure-highlights {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.infrastructure-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    margin-bottom: 40px;
}

.infrastructure-card:hover {
    transform: none;
    box-shadow: none;
}

.infrastructure-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #2C5282;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infrastructure-icon svg,
.infrastructure-icon i {
    color: white;
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.infrastructure-card:hover .infrastructure-icon svg,
.infrastructure-card:hover .infrastructure-icon i {
    color: white;
    transform: scale(1.1);
}

.infrastructure-card-content {
    flex: 1;
}

.infrastructure-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C5282;
    font-weight: 700;
    margin-top: 0;
}

.infrastructure-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Data Statistics Area Styles */
.stats {
    background-color: #4682B4;
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Customer Reviews Styles */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Contact Us Section Styles */
.contact {
      padding: 100px 0;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-us-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Add subtle shadow effect to enhance layering */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

/* Optimize contact form visual effects */
.contact-content {
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 30px;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4682B4;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4682B4;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #4682B4;
}

.footer-about p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4682B4;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-contact p {
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #4682B4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: #1a1a1a;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    /* Mobile Device Dropdown Menu Styles */
    .dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        display: none;
    }
    
    .dropdown-menu li {
        margin: 5px 0;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn,
    .secondary-btn {
        display: block;
        width: 200px;
        margin: 0 auto 15px;
        text-align: center;
    }
    
    .secondary-btn {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #666;
}

.breadcrumb a {
    color: #4682B4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #666;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4682B4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #4682B4;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}