/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(0, 0, 0, 0.85));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.navbar:hover {
    background: rgba(18, 18, 18, 1);
}

/* Logo */
.logo img {
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.8));
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(255, 165, 0, 1));
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    height: 24px;
    width: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1200;
    gap: 4px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffed82;
    border-radius: 5px;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.hamburger span:hover {
    background-color: #ffb742;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.nav-links li {
    margin-left: 15px;
}

.nav-btn {
    text-decoration: none;
    color: #ffed82;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.nav-btn:hover {
    background-color: #ffb742;
    color: #121212;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    border-color: #ffb742;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        width: 70%;
        height: 100%;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 30px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hamburger span:hover {
        background-color: #fff;
    }
}

/* Adjustments for Large Screens */
@media (min-width: 1024px) {
    .nav-links {
        position: static;
        flex-direction: row;
        height: auto;
        background: none;
    }

    .hamburger {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(18, 18, 18, 0.9));
    color: #ffffff;
}

/* Slideshow */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(-290.9); /* Increase brightness */
    animation: fadeIn 1.5s ease-in-out;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.slide-image:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.fade {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
}

.fade.active {
    opacity: 1;
}

/* Welcome Text */
.welcome-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.welcome-text h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffed82, #ffb742);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 12px rgba(255, 165, 0, 0.7);
    animation: glow 2.5s infinite alternate;
    letter-spacing: 2px;
}

.welcome-text .company-name {
    font-size: 2em;
    color: #ffd700;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.welcome-text .tagline {
    font-size: 1.2em;
    color: #dcdcdc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

/* Call-to-Action Button */
.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    color: #121212;
    background: linear-gradient(135deg, #ffb742, #ffed82);
    border: none;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffed82, #ffb742);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.8);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.7);
    }
    to {
        text-shadow: 0px 0px 20px rgba(255, 165, 0, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .logo img {
        height: 60px;
    }
    .welcome-text h1 {
        font-size: 2.5em;
    }
    .welcome-text .tagline {
        font-size: 1em;
    }
    .hero-btn {
        font-size: 1em;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    .logo img {
        height: 50px;
    }
    .welcome-text h1 {
        font-size: 2em;
    }
    .welcome-text .tagline {
        font-size: 0.9em;
    }
    .hero-btn {
        font-size: 0.9em;
        padding: 10px 25px;
    }
}

/* Our Machine Section */
.our-machine-section {
    padding: 140px 20px;
    background: radial-gradient(circle, #FFF8E1, #FFECB3);
    color: #FF9800;
    text-align: center;
}

.our-machine-section h2 {
    font-size: 2.8rem;
    color: #ff7f00;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.our-machine-section h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #ff7f00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.our-machine-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Machine Image Display */
.machine-display {
    margin-bottom: 30px;
    position: relative;
}

.machine-display img {
    max-width: 300px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.machine-display img:hover {
    transform: scale(1.1) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Details Button */
.details-button {
    background-color: #ff7f00;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.4);
}

.details-button:hover {
    background-color: #ffa41b;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.6);
}

/* Details Section */
.details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.7s ease-in-out;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 0 20px; /* Only horizontal padding when collapsed */
}

.details.open {
    max-height: 1000px;
    opacity: 1;
    transform: scaleY(1);
    padding: 40px; /* Full padding when expanded */
}

/* Details Content Styling */
.details-content {
    line-height: 1.8;
    color: #555;
    font-family: "Arial", sans-serif;
    text-align: left;
    position: relative;
}

.details-content h3 {
    color: #ff7f00;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-content h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #ff7f00;
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

.details-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.details-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    font-size: 1rem;
    color: #444;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.details-content ul li:hover {
    transform: translateX(10px);
    color: #ff7f00;
}

.details-content ul li:before {
    content: "✔"; /* Custom checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7f00;
    font-size: 1.3rem;
    font-weight: bold;
}

.details-content ul li strong {
    font-weight: bold;
    color: #ff7f00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .our-machine-section h2 {
        font-size: 2.2rem;
    }

    .our-machine-section p {
        font-size: 1rem;
    }

    .details-content h3 {
        font-size: 1.4rem;
    }

    .details-content ul li {
        font-size: 0.95rem;
    }

    .machine-display img {
        max-width: 250px;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    overflow-x: hidden;
}

/* Our Vision Section */
.our-vision {
    padding: 4rem 2rem;
    background: #ffffff;
    border-top: 5px solid #ffd740;
    border-bottom: 5px solid #ffd740;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vision-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.vision-content {
    flex: 1 1 500px;
    animation: fadeIn 1.5s ease;
}

.vision-title {
    font-size: 2.8rem;
    color: #ff6f00;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 3px solid #ffd740;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-top: 1rem;
}

.vision-image {
    flex: 1 1 400px;
    text-align: center;
    animation: slideIn 1.5s ease;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.vision-image img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-content {
        margin-bottom: 2rem;
    }

    .vision-title {
        font-size: 2.4rem;
    }

    .vision-text {
        font-size: 1rem;
    }
}

/* Testimonials Section Styling */
#testimonials {
    padding: 140px 20px;
    background: radial-gradient(circle, #FFF8E1, #FFECB3);
    color: #FF9800;
    text-align: center;
}

.testimonials-header h2 {
    font-size: 2em;
    color: #FF9800;
    margin-bottom: 30px;
    text-shadow: 4px 8px 20px rgba(255, 165, 0, 0.8);
    letter-spacing: 2px;
}

.testimonials-header p {
    font-size: 1.5em;
    margin-bottom: 50px;
    color: #333333;
    line-height: 1.5;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.testimonial-box {
    width: 340px;
    height: 380px;
    perspective: 1200px;
    transition: transform 0.5s;
}

.inner-box {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

.testimonial-box:hover .inner-box {
    transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.front {
    background: linear-gradient(145deg, #FFF8E1, #FFE082);
    color: #FF9800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.front img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #FFC107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
    transition: transform 0.3s ease-in-out;
}

.front img:hover {
    transform: scale(1.1);
}

.front .customer-name {
    font-size: 1.6em;
    font-weight: bold;
    margin-top: 10px;
    color: #FF5722;
}

.back {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    color: #FFFFFF;
    text-align: center;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    font-size: 1.4em;
    line-height: 1.5;
}

/* Partners Section */
.partners-section {
   padding: 140px 20px;
    background: radial-gradient(circle, #FFF8E1, #FFECB3);
    color: #FF9800;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.8rem;
    color: #ff7f00;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.partners-section h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ffa41b;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.partners-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Logos Grid */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.logo-item {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #fffcf5;
}

.logo-item img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partners-section h2 {
        font-size: 2rem;
    }

    .partners-section p {
        font-size: 1rem;
    }

    .logo-item {
        padding: 10px;
    }

    .logo-item img {
        max-width: 80px;
    }
}

/* Section Styling */
#partner-with-us {
    padding: 140px 20px;
    background: radial-gradient(circle, #FFF8E1, #FFECB3);
    color: #FF9800;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #ff7f00;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeIn 1.2s ease-out;
}

/* Partnership Options */
.partnership-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.option {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 360px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    animation: slideUp 1s ease-out;
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.option-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #ffd17e, #ffab4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.option-icon img {
    width: 60%;
    height: auto;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.option-title {
    font-size: 1.5rem;
    color: #ff7f00;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.option-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.3);
}

.contact-btn:hover {
    background-color: #ffa41b;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 127, 0, 0.4);
}

/* CTA Text */
.cta-text {
    margin-top: 50px;
    font-size: 1.2rem;
    color: #555;
    animation: fadeIn 1.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .partnership-options {
        flex-direction: column;
        align-items: center;
    }

    .option {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }
}

/* Scroll-to-Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f00, #ffd700);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffd700, #ff7f00);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.scroll-to-top:hover i {
    transform: scale(1.1);
}

/* Show button when scrolling */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.footer {
    background-color: #222; /* Dark and authentic color */
    color: #f3f3f3;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact,
.footer-social {
    min-width: 250px;
    margin-top: 20px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffa500; /* Orange accent for headings */
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: #f3f3f3;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333; /* Neutral dark background */
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #f3f3f3; /* Light text color */
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ffa500; /* Orange hover effect */
    color: #222; /* Contrast color for hover */
}

.social-icon i {
    pointer-events: none; /* Ensures icon interaction doesn't disrupt hover effect */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffa500;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WebKit scrollbar customization (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Adjust width */
  }
  
  ::-webkit-scrollbar-track {
    background: #f2ff00; /* Track color */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #66ccff; /* Thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #99ff00; /* Optional border */
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }