body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif; /* Use a serif font for a newspaper feel */
    background-color: #f3f3f3;  /*Light gray background */
}

header {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure the texture overlay doesn't overflow */
}


.header-logo img {
    max-width: 100px;
    position: absolute;
    top: 0px;
}


nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
    
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: attr(data-alt);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav ul li a:hover::after {
    opacity: 1;
}


/*Hero Section*/

.slider-container {
    position: relative;
/*    padding-top: 30px;*/
    background-color: #000;
/*    border: 2px solid #fff;*/
    height: 200px;
}

.logo img {
    max-width: 165px;
    position: absolute;
}

.slider {
    display: flex;
    overflow-x: none;
}

.slide {
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: 200px;
}

.welcome-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.welcome-message h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.welcome-message p {
    font-size: 18px;
}

/*About Us*/

h2 {
    color: #333;
}

.overview {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    padding-left: 15px;
    padding-right: 15px;
}

.emphasis {
    font-weight: bold;
    margin-top: 20px;
    color: #444;
}

.split-container {  
    display: flex;
/*    width: 100%;*/
    padding: 20px;
}

.left-section {
    width: 50%;
}

.right-section {
    width: 50%;
/*    padding: 25px 35px;*/
    box-sizing: border-box;
    padding-left: 20px;
}

.left-section img {
    width: 100%;
    height: auto;
}

.right-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.right-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-section {
    max-width: 1200px;
}

/*Services Section*/

.service-section .container {
    max-width: 1250px;
    margin: 30px 50px;
    padding: 20px;
}

.service-section {
    max-width: 1250px;
    margin: 0;
    text-align: center;
}

h2 {
    color: #333;
    text-align: center;
}

.services {
    max-width: 1250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    width: 30%;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    width: 200px;
    height: inherit;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 18px;
    color: #333;
}

.service a {
    text-decoration: none;
    color: #333;
}

.service a:hover {
    color: #007bff;
}

/*Addition-Section*/

.additions-section {
    background-color: #000;
    color: #fff;
    height: inherit;
    font-size: 20px;
    padding: 20px;
}


footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 5px;
}




/*Mobile Responsiveness*/

/* Your existing CSS code goes here */

/* Add the responsive CSS code below your existing styles */

@media screen and (min-width: 768px) {
    /* For tablets */
    .logo img {
        max-width: 165px;
    }
    
    .header-logo img {
        max-width: 100px;
    }
}

@media screen and (max-width: 767px) {
    /* For mobile devices */
    .slider-container {
        height: 150px;
    }

    .welcome-message {
        font-size: 16px;
    }

    .split-container {
        flex-direction: column;
        max-width: 1250px;
    }

    .left-section, .right-section {
        width: 100%;
    }

    .service {
        width: 45%;
        margin: 0 2.5%;
    }
}

@media screen and (max-width: 480px) {
    /* For smaller mobile devices */
    .slider-container {
        height: 120px;
    }

    .welcome-message {
        font-size: 14px;
    }
    
    header {
    background-color: black;
    color: white;
    padding: 20px 0;
    font-size: 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure the texture overlay doesn't overflow */
    position: relative;
    max-width: 1250px;
}
    
    nav ul {
        margin-top: -30px;
    }
    .header-logo img {
        position: relative;
        z-index: 1;
        margin-top: -30px;
    }
    
    .slider-container {
    position: relative;
/*    padding-top: 30px;*/
    background-color: #000;
/*    border: 2px solid #fff;*/
    height: 200px;  
}

.slider {
    display: flex;
    overflow-x: hidden;
    text-align: center;
}

.slide {
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: 200px;
}

.welcome-message {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.welcome-message h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.welcome-message p {
    font-size: 15px;
}
    
.left-section img {
    width: inherit;
    height: 200px;
}
    
.service img {
    width: 210px;
    height: inherit;
    margin-bottom: 10px;
}
    
.service {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}
    
/*About Section*/
    
.about-section {
        
    }
    

.right-section {
/*    width: 90%;*/
    padding: 0;
/*    box-sizing: border-box;*/
}
    
.split-container {  
    display: flex;
/*    width: 90%;*/
    padding: 20px;
}

.introduction {
    padding-left: 15px;
    padding-right: 15px;
}
    
}
