@font-face {
    font-family: 'Mitr';
    src: url('../assets/fonts/Mitr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 187, 187, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s ease;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    /* In case it's wrapped in an anchor */
}

.logo-icon {
    height: 60px;
    width: auto;
    transition: all 0.5s ease;
}

.logo-text {
    font-family: 'Mitr', sans-serif;
    font-size: 50px;
    color: #ffffff;
    line-height: 1;
    transition: all 0.5s ease;
}

/* Scrolled state updates */
.header.scrolled .logo-icon {
    height: 40px;
}

.header.scrolled .logo-text {
    font-size: 24px;
}

.key-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(93, 187, 187, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5DBBBB, #E6C547);
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.lang-button {
    background: rgba(93, 187, 187, 0.1);
    border: 1px solid rgba(93, 187, 187, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-button:hover {
    background: rgba(93, 187, 187, 0.2);
    border-color: #5DBBBB;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #1E3A4C;
    border: 1px solid rgba(93, 187, 187, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    display: none;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.1);
    color: white;
}

.lang-option.active {
    background: rgba(93, 187, 187, 0.2);
    color: #5DBBBB;
    font-weight: 600;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(93, 187, 187, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(230, 197, 71, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Ensure particles are above video if both exist, or remove if video is preferred */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #5DBBBB, #E6C547);
    border-radius: 50%;
    animation: particle-float 20s linear infinite;
    opacity: 0.6;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin-top: 2rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #5DBBBB 50%, #E6C547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #5DBBBB 0%, #E6C547 100%);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A4C;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover:before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(93, 187, 187, 0.4);
}

.cta-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid #5DBBBB;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5DBBBB;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(93, 187, 187, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(93, 187, 187, 0.2);
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(93, 187, 187, 0.1);
    transform: translateY(-5px);
    border-color: #5DBBBB;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5DBBBB, #E6C547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: #888;
    margin-top: 0.5rem;
}

.section {
    padding: 8rem 3rem;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff, #5DBBBB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(93, 187, 187, 0.05) 0%, rgba(230, 197, 71, 0.05) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(93, 187, 187, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 187, 187, 0.1) 0%, rgba(230, 197, 71, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover:before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #5DBBBB;
    box-shadow: 0 20px 50px rgba(93, 187, 187, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(93, 187, 187, 0.5));
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-showcase {
    background: linear-gradient(180deg, #0a0a0a 0%, #1E3A4C 50%, #0a0a0a 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(93, 187, 187, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(93, 187, 187, 0.2);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(93, 187, 187, 0.15);
    transform: scale(1.05);
    border-color: #5DBBBB;
}

.contact-section {
    background: linear-gradient(135deg, rgba(93, 187, 187, 0.1) 0%, rgba(230, 197, 71, 0.1) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ff6b35;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(93, 187, 187, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #5DBBBB 0%, #E6C547 100%);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A4C;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 187, 187, 0.4);
}

.footer {
    background: #000;
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(93, 187, 187, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
        padding: 0 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #5DBBBB;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, rgba(93, 187, 187, 0) 0%, #5DBBBB 15%, #E6C547 85%, rgba(230, 197, 71, 0) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0a0a0a;
    border: 3px solid #5DBBBB;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item:hover::after {
    background-color: #5DBBBB;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(93, 187, 187, 0.6);
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid transparent;
    border-width: 10px 0 10px 10px;
    border-left-color: rgba(93, 187, 187, 0.1);
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid transparent;
    border-width: 10px 10px 10px 0;
    border-right-color: rgba(93, 187, 187, 0.1);
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(93, 187, 187, 0.05) 0%, rgba(230, 197, 71, 0.05) 100%);
    position: relative;
    border-radius: 15px;
    border: 1px solid rgba(93, 187, 187, 0.2);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #5DBBBB;
    box-shadow: 0 10px 30px rgba(93, 187, 187, 0.2);
}

.timeline-content h3 {
    color: #5DBBBB;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-left::after,
    .timeline-right::after {
        left: 21px;
    }

    .timeline-right {
        left: 0%;
    }

    .timeline-left::before,
    .timeline-right::before {
        left: 60px;
        border: medium solid transparent;
        border-width: 10px 10px 10px 0;
        border-right-color: rgba(93, 187, 187, 0.1);
    }
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, rgba(93, 187, 187, 0) 0%, #5DBBBB 15%, #E6C547 85%, rgba(230, 197, 71, 0) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0a0a0a;
    border: 3px solid #5DBBBB;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item:hover::after {
    background-color: #5DBBBB;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(93, 187, 187, 0.6);
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid transparent;
    border-width: 10px 0 10px 10px;
    border-left-color: rgba(93, 187, 187, 0.1);
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid transparent;
    border-width: 10px 10px 10px 0;
    border-right-color: rgba(93, 187, 187, 0.1);
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(93, 187, 187, 0.05) 0%, rgba(230, 197, 71, 0.05) 100%);
    position: relative;
    border-radius: 15px;
    border: 1px solid rgba(93, 187, 187, 0.2);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #5DBBBB;
    box-shadow: 0 10px 30px rgba(93, 187, 187, 0.2);
}

.timeline-content h3 {
    color: #5DBBBB;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #f7931e;
    transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-left::after,
    .timeline-right::after {
        left: 21px;
    }

    .timeline-right {
        left: 0%;
    }

    .timeline-left::before,
    .timeline-right::before {
        left: 60px;
        border: medium solid transparent;
        border-width: 10px 10px 10px 0;
        border-right-color: rgba(93, 187, 187, 0.1);
    }

    /* Mobile Header Fixes */
    .header .logo img {
        height: 50px !important;
    }

    .header .logo .text-logo {
        height: 35px !important;
    }

    .hamburger {
        display: block !important;
        /* Force show hamburger on mobile */
        z-index: 1001;
    }

    .nav-links {
        display: none;
        /* Hide default nav on mobile */
    }

    /* Typography Fixes */
    .hero-title {
        font-size: 2.5rem !important;
        /* Reduce hero title size */
    }

    .section-title {
        font-size: 2rem !important;
    }

    /* Layout Fixes */
    .hero-content {
        padding: 0 20px;
    }

    .contact-content {
        padding: 2rem 1rem;
    }

    /* Floating Buttons Position Fix */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 2000 !important;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        bottom: 85px !important;
        /* Moves it above WhatsApp button */
        right: 20px !important;
    }
}