/* Global Styles */
:root {
    --primary-color: #fdc204;
    --secondary-color: #ff8f00;
    --accent-color: #ffa000;
    --dark-accent: #f57c00;
    --text-color: #333;
    --light-bg: #fff9e6;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(45deg, var(--accent-color), var(--dark-accent));
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: white;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.contact-info i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.top-bar .social-links a {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .top-bar .contact-info,
    .top-bar .social-links {
        text-align: center !important;
    }

    .top-bar .social-links {
        margin-top: 0.5rem;
    }
}

/* Header Styles */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.3rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    margin-top: 110px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    display: none;
}

.hero-content .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.hero-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
    letter-spacing: 2px;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(253,194,4,0.03), rgba(255,143,0,0.03));
}

.stat-item {
    padding: 2.5rem;
    transition: all 0.4s ease;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover::before {
    opacity: 0.05;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Services Section */
.service-card {
    padding: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
}

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

.service-card .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

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

.service-card .content {
    padding: 2rem;
}

.service-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Sustainability Section */
.sustainability-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(253,194,4,0.03), rgba(255,143,0,0.03));
}

.sustainability-section h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.sustainability-content {
    position: relative;
}

.sustainability-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sustainability-features .feature-item:hover {
    transform: translateX(10px);
}

.sustainability-features .feature-item i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sustainability-image {
    position: relative;
    transition: all 0.3s ease;
}

.sustainability-image:hover {
    transform: scale(1.02);
}

.sustainability-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 50%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .sustainability-image {
        margin-top: 2rem;
    }

    .sustainability-section h2 {
        text-align: center;
    }

    .sustainability-content p {
        text-align: center;
    }

    .sustainability-features {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 50%;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .stat-item {
        margin-bottom: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Footer */
footer {
    background: var(--dark-accent);
}

footer h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

.certificates-full {
    margin: 2rem 0;
}

.certificates-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.certificates-full img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .certificates-full {
        margin: 1rem 0;
    }

    footer h4 {
        margin-top: 1rem;
    }
}

/* Page Header */
.page-header {
    margin-top: 110px;
    background: var(--light-bg);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(253,194,4,0.03), rgba(255,143,0,0.03));
}

.page-header h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Services Detail Page */
.services-detail .service-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.services-detail .service-item:last-child {
    border-bottom: none;
}

.services-detail .service-item img {
    transition: transform 0.3s ease;
}

.services-detail .service-item:hover img {
    transform: scale(1.02);
}

.services-detail h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    font-size: 1.2rem;
    margin-right: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .services-detail .service-item {
        padding: 2rem 0;
    }

    .services-detail .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
}

/* Neler Yapıyoruz Page Styles */
.categories-sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.categories-list a:hover,
.categories-list a.active {
    background: var(--gradient-primary);
    color: white;
}

.portfolio-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: auto;
    font-size: 0;
    position: relative;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 0;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    vertical-align: top;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    transform: none;
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.25);
}

.portfolio-overlay h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.pagination .page-link {
    color: #333;
    border: none;
    margin: 0 5px;
    border-radius: 5px;
    padding: 8px 15px;
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .categories-sidebar {
        margin-bottom: 30px;
    }

    .portfolio-image {
        height: 200px;
    }

    .col-md-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        width: 100%;
    }
}

/* Certificates Section Styles */
.certificates-section {
    padding-top: 120px;
}

.certificates-section .categories-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.certificates-section .categories-list a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-size: 14px;
}

.certificates-section .categories-list a:hover,
.certificates-section .categories-list a.active {
    background: var(--gradient-primary);
    color: #fff;
}

.certificate-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.certificate-content .certificate-image {
    margin-bottom: 30px;
}

.certificate-content .certificate-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.certificate-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.certificate-description {
    color: #666;
    line-height: 1.6;
}

.certificate-description p {
    margin-bottom: 15px;
}

.certificate-description strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .certificates-section .categories-sidebar {
        margin-bottom: 30px;
    }

    .certificate-content {
        padding: 15px;
    }
}

/* Contact Page Styles */
.map-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.form-container {
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-floating > label {
    color: #666;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(253,194,4,0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    width: 304px;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253,194,4,0.3);
}

.btn-primary:active,
.btn-primary:focus {
    background: var(--gradient-accent) !important;
    box-shadow: 0 2px 8px rgba(253,194,4,0.4) !important;
}

.contact-form .form-control,
.suggestion-form .form-control {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.75rem 1rem;
}

.contact-form textarea,
.suggestion-form textarea {
    resize: none;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1rem;
    }

    .form-container {
        padding: 1.5rem !important;
    }

    .btn-primary {
        width: 100%;
    }
}

/* Companies Section Styles */
.companies-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(253,194,4,0.03), rgba(255,143,0,0.03));
}

.company-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253,194,4,0.15);
}

.company-logo {
    padding: 2rem;
    text-align: center;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.company-card:hover .company-logo::before {
    opacity: 0.1;
}

.company-logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.company-card:hover .company-logo img {
    transform: scale(1.1);
}

.company-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.company-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-features span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.company-features i {
    margin-right: 0.5rem;
    font-size: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .company-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .company-logo img {
        max-width: 150px;
    }

    .company-content {
        padding: 1.5rem;
    }

    .company-content h3 {
        font-size: 1.3rem;
    }
}

/* Categories Sidebar Styles */
.categories-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

.categories-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.categories-list {
    margin: 0;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.categories-list li a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.categories-list li a.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.categories-list li a.active::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Content Area Styles */
.social-responsibility-content,
.certificate-detail,
.certificate-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.social-responsibility-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-responsibility-image:hover {
    transform: scale(1.02);
}

.social-responsibility-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-responsibility-item,
.certificate-item {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-responsibility-item:hover,
.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.content-text,
.certificate-description {
    line-height: 1.8;
    color: #555;
}

.content-text p,
.certificate-description p {
    margin-bottom: 1rem;
}

.content-text ul,
.certificate-description ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-text li,
.certificate-description li {
    margin-bottom: 0.5rem;
}

/* Gallery Styles */
.social-responsibility-gallery,
.certificate-gallery {
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Responsive for Categories */
@media (max-width: 768px) {
    .categories-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .social-responsibility-content,
    .certificate-detail,
    .social-responsibility-item,
    .certificate-item {
        padding: 1.5rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top i {
    font-size: 16px;
    font-weight: bold;
}
