

html,body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
        height: 100%;
        overflow-x: hidden; /* Prevent horizontal overflow */
        overflow-y: auto; /* Enable vertical scrolling only if necessary */
}

.visitor-container {
    text-align: center;
    margin-top: 100px;
}

/* Visitor Counter Styling */
.visitor-counter {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: gold;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 150px;
    border-radius: 10px;
    box-shadow: 0 0 15px gold, 0 0 30px rgba(255, 215, 0, 0.6);
    display: inline-block;
    margin: 20px auto;
    margin-top: 150px;
    animation: pulseGlow 1.5s infinite alternate;
}

/* Glowing Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px gold, 0 0 20px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 20px gold, 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

/* Counter Number */
.counter {
    font-size: 40px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.9);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100vw;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 10; /* Ensure it's above other slides */
    display: block;
}

/* Smooth fade-out effect for previous slide */
.slide.fade-out {
    opacity: 0;
    z-index: 9; /* Keep it below the active slide */
    transition: opacity 1.5s ease-in-out;
}

.slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

/* Text Overlay */
.slide-text {
    position: absolute;
    bottom: 20%;
    left: 80%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: bold;
    color: rgb(230, 153, 10);
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    
    /* Add shadow */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8); /* Dark smooth shadow */
}


.slide.active .slide-text {
    opacity: 1;
    display: block;
}

/* Slide content - align text and button in the same row */
.slide-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px; /* Space between text and button */
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slideshow-container {
        height: 80vh;
    }

    .slide-text {
        font-size: 1.8rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        width: 90%;
        bottom: 12%;
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 100vh;
    }

    .slide-text {
        font-size: 1.5rem;
        bottom: 15%;
    }

    .slide-content {
        bottom: 10%;
        padding: 8px 15px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        margin-top: 80px;
        height: 40vh;
        margin-bottom: 0;
    }

    .slide img {
        object-fit: inherit; /* Ensures the whole image is visible */
    }
    .slide-text {
        font-size: 12px; /* Slightly larger for readability */
        max-width: 150%; /* Limits the width so text doesn’t stretch too much */
        margin-left: 20%; /* Pushes it towards the right */
        text-align: left; /* Aligns text properly */
        line-height: 1.2; /* Adjusts spacing between lines */

    }

    .slide-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px; /* Adds space between text and button */
        position: absolute;
        bottom: 15%; /* Moves it slightly up for balance */
    }
}

/* Text styling */
.slide-text {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

/* Button Styling */
.slide-btn {
    display: inline-block;
    background: gold;
    color: rgb(255, 255, 255);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 
                0 0 20px rgba(255, 215, 0, 0.6), 
                0 0 30px rgba(255, 215, 0, 0.4);
    animation: neonGlow 1.5s infinite alternate;
    z-index: 100;
    text-align: center;
}

/* Neon Glow Animation */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 
                    0 0 20px rgba(255, 215, 0, 0.6), 
                    0 0 30px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgb(255, 206, 114), 
                    0 0 30px rgba(2, 61, 7, 0.8), 
                    0 0 40px rgba(4, 0, 255, 0.6);
    }
}

.slide-btn:hover {
    background: darkgoldenrod;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slide-text {
        font-size: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .slide-text {
        font-size: 1.2rem;
        bottom: 15%;
        color: white;
    }
    

    .slide-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .slide-text {
        font-size: 1rem;
        bottom: 10%;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 10px;
    }
}

/* Common styles for all images */
.testimonials .t-image, 
.testimonials .t-image2, 
.testimonials .t-image3, 
.testimonials .t-image4 {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    opacity: 1;
}

.t-image img, 
.t-image2 img{
    width: 150px; /* Uniform size for all images */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
}
.t-image3 img {
    width: 110px; /* Uniform size for all images */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
    margin-top: 20px; /* Adjust this value to lower the image */
}

.t-image4 img{
    width: 80px; /* Uniform size for all images */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
    margin-top: 15px; /* Adjust this value to lower the image */

}

/* Position adjustments for images */
.testimonials .t-image { left: 33%; }
.testimonials .t-image2 { left: 41%; }
.testimonials .t-image3 { left: 51%; }
.testimonials .t-image4 { left: 60%; }

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
    /* Common styles for all images */
    .testimonials .t-image, 
    .testimonials .t-image2, 
    .testimonials .t-image3, 
    .testimonials .t-image4 {
        position: absolute;
        top: 90%;
        transform: translateY(-50%);
        opacity: 1;
    }

    .t-image img, 
    .t-image2 img {
        width: 70px; /* Uniform size for all images */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%;
        margin-left: 20px;
    }
    
    .t-image3 img {
        width: 50px; /* Uniform size for all images */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%;
        margin-top: 7px; /* Adjust this value to lower the image */
        margin-left: 10px;
    }

    .t-image4 img {
        width: 40px; /* Uniform size for all images */
        height: auto; /* Maintain aspect ratio */
        max-width: 100%;
        margin-top: 0px; /* Adjust this value to lower the image */
        margin-left: 30px;
    }

    /* Position adjustments for images */
    .testimonials .t-image { left: 5%; }
    .testimonials .t-image2 { left: 28%; }
    .testimonials .t-image3 { left: 55%; }
    .testimonials .t-image4 { left: 70%; }
}

/* Responsive Design for tablets and phones */
@media screen and (max-width: 1200px) {
    .hero h1 {
        text-align: center; /* Ensure text is centered */

        font-size: 4rem;
padding-right: 500px;
padding-bottom: 0;
    }

    .hero p {
        font-size: 1.8rem;
        margin-right: 70%; /* Adjust the margin on the right for h1 */
        padding-top: 0%;

    }

    .hero .btn {
        font-size: 1.8rem;
        margin-right: 100px; /* Adjust the margin on the right for h1 */

    }
    .hero-slideshow {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-slideshow .slide {
        width: 100%;
        height: 100%;
        padding-left: 80px;
        background-size: cover;
        background-position: center;
    }
}

@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .hero .btn {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-slideshow {
        width: 100%;
        height: 40%;
        overflow: hidden;
    }

    .hero-slideshow .slide {
        width: 100%;
        height: 40%;
        padding-left: 80px;
        background-size: cover;
        background-position: center;
    }

    .hero {
        padding: 30px 0px; /* Add more space on left and right */
        height: 80%;
        align-items: flex-start; /* Align text to the left */
        text-align: left; /* Align text to the left */
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero .btn {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
}

/* Adjust for iPhone 14 Pro */
@media screen and (max-width: 430px) {
    .hero h1 {
        text-align: left; /* Ensure text is centered */
        font-size: 2.5rem; /* Adjust the font size for smaller screens */
        padding-right: 190px; /* Adjust padding for better spacing */
        padding-bottom: 0;
    }

    .hero p {
        font-size: 0.8rem; /* Adjust the font size for better readability */
        margin-right: 150px; /* Remove large right margin */
        padding-top: 0;
    }

    .hero .btn {
        font-size: 1.4rem; /* Adjust the button font size */
        margin-right: 300px; /* Adjust the margin on the right for the button */
    }

    .hero-slideshow {
        width: 100%; /* Make the slideshow fit the screen width */
        height: 80%; /* Adjust height to cover full viewport height */
        overflow: hidden;
        margin-top: 60px; /* Add top margin to avoid navbar overlap */
        position: relative;
        z-index: 1; /* Ensure the slideshow stays beneath the navbar */
        display: flex;
        justify-content: center; /* Center content horizontally */
        align-items: center; /* Center content vertically */
    }

    .hero-slideshow .slide {
        width: 100%; /* Ensure each slide fits the screen */
        height: 100%; /* Maintain full height */
        background-size: cover;
        background-position: center;
    }
    
     /* Stack header contents vertically */
    header {
        flex-direction: row; /* Keep logo on the left and menu on the right */
        padding: 10px 15px;
        justify-content: space-between; /* Ensure space between logo and menu */
    }

    /* Adjust the nav ul to display horizontally on the right */
    header nav ul {
        display: flex;
        flex-direction: row; /* Align menu items horizontally */
        align-items: center; /* Center the menu items vertically */
        margin-top: 0; /* Remove the top margin */
    }

    /* Adjust menu items */
    header nav ul li {
        margin-left: 15px; /* Adjust spacing between menu items */
        text-align: center; /* Center the text */
    }

    /* Adjust font size for better readability */
    header nav ul li a {
        font-size: 1.2rem;
        padding: 10px; /* Add padding for better click area */
    }

    /* Adjust logo size if needed for smaller screens */
    header .logo img {
        height: 60px;
    }
}

.explore-more {
    text-align: center;
    margin-top: 20px;
}
.explore-more .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E49B0F; /* Black background */
    color: #fff; /* White text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.explore-more .btn:hover {
    background-color: #ffd700; /* Gold hover effect */
    color: #000; /* Black text on hover */
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background-color: #2C3E50;
    color: #fff;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative; /* Make the section a container for positioning */
}

.testimonials h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
}

/* Style each testimonial */
/* Prevent the image from overlapping the footer */
.testimonials {
    background-color: #2C3E50;
    color: #fff;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    padding-bottom: 300px; /* Ensure space below testimonials */
}

/* Ensure text stays centered */
.testimonial-text {
    text-align: center;
    flex: 1;
}

/* Style the image container */
.testimonial-img {
    position: absolute; /* Position image on the left */
    left: 100px; /* Adjust space from the left to move it further left */
    top: -40px; /* Move the image slightly above the testimonial box */
    transform: translateY(0); /* Reset vertical centering */
    flex: 0 0 120px; /* Width of image */
    margin-right: 0;
    z-index: 1; /* Ensure image stays above the text */
}

.testimonial-img img {
    width: 320px; /* Set a fixed width */
    height: 420px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the space while maintaining proportions */
    border-radius: 50%; /* Makes it circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 2.5s ease-out;
}


/* Testimonial text styling */
.testimonial p {
    font-size: 1.2rem;
    color: #f39c12; /* Keep the golden color */
    margin-bottom: 10px;
    position: relative; /* Ensure text is on top of the image */
    z-index: 10; /* Ensure text stays on the upper layer */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Add a text shadow for better contrast */
    padding: 10px; /* Add some padding around the text for better visibility */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    border-radius: 5px; /* Add rounded corners to the background */
    display: inline-block; /* Adjust the box to fit the text content */
    max-width: 100%; /* Ensure it doesn't exceed the width of its container */
    animation: fadeInUp 2.5s ease-out; /* Animation name, duration, and easing function */

}

.testimonial span {
    font-size: 1rem;
    color: #bdc3c7;
    display: block; /* Ensure the span is on a new line below the paragraph */
    margin-top: 5px; /* Add space between the paragraph and the span */
    animation: slideInRight 2.5s ease-out; /* Animation name, duration, and easing function */

}

/* Apply the fadeInUp animation */
.fadeInUp {
    animation: fadeInUp 1s ease-out; /* Animation name, duration, and easing function */
}

/* Animation for testimonial fade-in */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Adjust for responsiveness */
@media (max-width: 768px) {
    .testimonial {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center; /* Center text for smaller screens */
    }

    .testimonial-img {
        position: relative; /* Make image stack with text on smaller screens */
        left: 0;
        top: 0;
        transform: none; /* Reset transformation for stacking */
        margin-right: 0;
        margin-bottom: 20px; /* Add space below image */
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide-in Animation from Left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%) translateY(-50%); /* Start off-screen to the left */
        opacity: 0; /* Initially invisible */
    }
    100% {
        left: 75%;
        transform: translateX(-50%) translateY(-50%); /* Stay centered using transform */
        opacity: 1; /* Fade in */
    }
}




/* Ensure no horizontal overflow */
html, body {
    overflow-x: hidden;
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

/* Styling for the intro section */
.intro {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    animation: fadeInUp 1.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Ensures padding doesn't cause overflow */
}

/* Heading styling */
.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

/* Paragraph styling */
.intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Bullet point list */
.styled-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.styled-list li {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}

/* Custom bullet point */
.styled-list li::before {
    content: "●"; /* Change to "★" or "✔" if needed */
    color: gold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Section Styling */
.why-choose-us {
    background: linear-gradient(to bottom,#fae9b3, #ffffff, #ffffff); /* From white to light grey */
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Adjust content alignment */
    min-height: 100vh; /* Ensure the section takes full viewport height */
    box-sizing: border-box;
}

/* Styling for each list item */
.why-choose-us li {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Adjusted for stacking h3 above the image */
    animation: slideIn 1s ease-out;
    flex-grow: 1; /* Ensures the content grows to fill space */

}

/* Icon styling */
.why-choose-us .icon {
    margin-top: 15px; /* Adds space between h3 and icon */
    width: 70px; /* Adjusted for better responsiveness */
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image inside the icon */
.why-choose-us .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Adjust heading styles */
.why-choose-us h2 {
    font-size: 2.5rem;
    color: #50462c;
    margin-bottom: 20px;
}

.why-choose-us h3 {
    font-size: 1.5rem;
    color: #34495E;
}

/* Paragraph Styling */
.why-choose-us p {
    font-size: 1rem;
    color: #7f8c8d;
}
/* Styling for TVET Programme section */
.programme {
    background: linear-gradient(to bottom #2C3E50, #ffffff, #ffffff); /* From white to light grey */
    padding: 40px 20px;
    text-align: center;
}

.programme h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 10px;
    border: 2px solid #2C3E50;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.programme h2:hover {
    background-color: #2C3E50;
    color: white;
}

.programme-title {
    cursor: pointer;
    font-size: 1.5rem;
    color: #34495e;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0;
}

/* Hover effect for programme-title */
.programme-title:hover {
    color: #E49B0F;
    transform: translateY(-3px); /* Slight lift effect */
}

.dropdown-toggle {
    background-color: #E49B0F; /* Orange Gold color */
    color: white; /* Change text color for better contrast */
    padding: 10px; /* Adjust padding for a more consistent look */
    border-radius: 5px; /* Optional: Add rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.dropdown-toggle:hover {
    background-color: #14297081; /* Darker shade for hover effect */
}

/* Styling for the list and icons */
.programme .programme-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.programme .programme-item {
    margin: 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Icon styling */
.programme .programme-item .icon {
    width: 350px; /* Increase width */
    height: 250px; /* Increase height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.programme .programme-item .icon img {
    width: 100%; /* Make it fit the container */
    height: 100%;
    object-fit: contain; /* Keep aspect ratio */
}

/* Description styling (initially hidden) */
.programme .programme-item .description {
    font-size: 1rem;
    color: #7f8c8d;
    display: none;
    padding: 10px;
    background-color: #eef2f3;
    width: 100%;
    margin-top: 10px;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
}

/* Show description on hover of the programme-title */
.programme .programme-item:hover .description {
    display: block;
    max-height: 1000px;
    opacity: 1;
}


/* Mission and Vision Section */
.mission, .vision {
    background-color: #fff;
    border-radius: 10px;
    margin: 30px 0;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all s ease-in-out; /* Animation speed is now 1s */

}

.mission h2, .vision h2 {
    color: #e67e22; /* Gold color for section titles */
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
}

/* Add responsive design */
@media screen and (max-width: 768px) {
    .mission, .vision {
        padding: 20px;
    }

    .mission h2, .vision h2 {
        font-size: 1.5rem;
    }

    .mission p, .vision p {
        font-size: 1rem;
    }
}

/* Contact Us Section */
.contact {
    text-align: center;
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.contact h2 {
    font-size: 2rem;
    color: #000;
}

.contact h2 span {
    color: #d4af37; /* Gold accent */
    font-weight: bold;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.contact-btn:hover {
    background-color: #333;
}

/* Courses Section */
.courses {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;}

.courses h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.course {
    margin-bottom: 30px;
}

.course h3 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.course p {
    font-size: 1.2rem;
    color: #7f8c8d;
}


 footer {
    background: linear-gradient(to bottom,  #2C3E50,black);
            color: #fff;
            text-align: center;
            padding: 10px 20px;  /* 10px top/bottom, 20px left/right */
        }

        footer .social a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
        }

        footer .social a:hover {
            text-decoration: underline;
        }


