/* Reset body margin and padding, and apply background styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('logo/icons-bg.webp');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    height: 100vh; /* Set a fixed height for the background image container */
    overflow: auto; /* Enable scrolling if content exceeds the viewport */
}


/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    height: 70px;
}

/* Logo styling */
.logo {
    height: auto;
    width: auto;
    max-height: 100px;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .logo {
        max-height: 180px;
        margin-top: 120px;
    }
}

@media only screen and (min-width: 1200px) {
    .logo {
        max-height: 230px;
        margin-top: 170px;
        margin-left: 30px;
    }
}

.contact-info {
	padding-top:40px;
    text-align: center; /* Center the content horizontally */
}

.contact-info > div {
    margin-bottom: 5px; /* Add some space between each contact info */
}
.phone, .email, .whatsapp {
    display: inline-block;
    position: relative;
    color: #4B1247;
    text-decoration: none;
}

.phone::before {
    content: '';
    position: absolute;
    bottom: -2px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #66C, #909, #F39);
    z-index: -1; /* Ensure the pseudo-element is behind the text */
}

.phone:hover::before{
    background: linear-gradient(to right, #128c7e, #66C, #909, #F39); /* Change gradient on hover */
}


/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 20px;
    position: relative;
    overflow: hidden;
}

.menu a {
    text-decoration: none;
    color: #909;
    font-weight: bold;
    font-size: 17px;
    padding: 70px 15px 10px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1;
}

.menu li:first-child a {
    color: white;
}

.menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom left, #F39, #909, #66C);
    border-radius: 10px;
    z-index: -1;
    transition: height 0.5s ease, background 0.5s ease; /* Add background transition */
}

.menu li:first-child a::before {
    height: 100%;
}

.menu a:hover::before {
    height: 100%;
}

.menu a:hover {
    color: white;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2;
    margin-left: 10px;
}

.hamburger .bar {
    width: 35px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: 0.4s;
}

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

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

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

.fixed-buttons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fixed-button {
    margin-bottom: 20px;
    padding: 10px 15px; /* Adjust padding for smaller buttons */
    background: linear-gradient(to right, #66C, #909, #F39); /* Gradient background */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-button i {
    font-size: 18px; /* Adjust icon size */
}

.fixed-button:hover {
    background-color: #128c7e;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .fixed-buttons {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center; /* Center buttons horizontally */
        justify-content: center; /* Center buttons vertically */
    }
}
/* Additional styles for the new title */
.services-title {
    color: #4B1247; /* Adjust color as needed */
    font-size: 30px; /* Adjust font size as needed */
    text-align: center; /* Center the title */
    margin-top: 20px; /* Add some margin for spacing */
    margin-bottom: 20px; /* Add some margin for spacing */
}


.container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 140px);
    background-color: transparent;
    margin-top: 100px;
    padding-bottom: 60px; /* Add padding to accommodate the footer */
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px; /* Adjust as needed */
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Styles for both desktop and mobile versions */

.image-with-title {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align to the right */
    margin-top: 50px; /* Adjust the margin to move the image higher */
}

.image-with-title h1 {
    font-size: 50px; /* Big characters */
    margin-left: 20px; /* Adjust spacing between image and title */
    /* Apply gradient-like effect to text color */
    background: linear-gradient(to right, #66C, #909, #F39);
    -webkit-background-clip: text; /* Apply gradient to the text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
}


.image-with-title img {
    max-width: 55%; /* Ensure the image doesn't exceed its container */
    margin-left: 5px; /* Adjust spacing between image and title */
}

@media (max-width: 768px) {
    /* Styles for mobile version */
    .image-with-title {
        display: flex;
        flex-direction: column; /* Change flex direction to stack items vertically */
        align-items: center; /* Center items horizontally */
        margin-top: 20px; /* Adjust the margin to move the image higher */
    }

.image-with-title h1 {
    font-size: 34px; /* Big characters */
    margin-left: 20px; /* Adjust spacing between image and title */
    /* Apply gradient-like effect to text color */
    background: linear-gradient(to right, #66C, #909, #F39);
    -webkit-background-clip: text; /* Apply gradient to the text */
    -webkit-text-fill-color: transparent; /* Hide original text color */
}

    .image-with-title img {
        max-width: 100%; /* Ensure the image doesn't exceed its container */
        margin-bottom: 20px; /* Adjust spacing between image and title */
    }
}

@media (min-width: 769px) {
    /* Styles for desktop version */
    .image-with-title {
        justify-content: flex-start; /* Align to the start */
        margin-top: 0; /* Reset margin */
    }

    .image-with-title img {
        margin-left: 20px; /* Adjust spacing between menu and image */
    }
}
/* Additional styles for the new image-with-title section */
.image-with-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px; /* Adjust the margin for spacing */
}

.image-with-title .text-container {
    max-width: 45%; /* Adjust the width as needed */
}

.image-with-title img {
    max-width: 45%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-left: 20px; /* Add some space between the text and image */
}

.services-title {
    color: #4B1247; /* Adjust color as needed */
    font-size: 30px; /* Adjust font size as needed */
    text-align: center; /* Center the title */
    margin-top: 40px; /* Add more vertical space before the title */
    margin-bottom: 40px; /* Add more vertical space after the title */
}

.highlight {
    font-weight: bold;
    background: linear-gradient(to right, #66C, #909, #F39);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px; /* Adjust font size as needed */
}

/* Responsive styles */
@media (max-width: 768px) {
    .image-with-title {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center; /* Center items */
    }

    .image-with-title .text-container,
    .image-with-title img {
        max-width: 100%; /* Full width on small screens */
        margin-left: 0; /* Remove margin */
    }
}




.content {
    padding: 20px; /* Increased padding for better spacing */


}

.content h1, .content h2 {
    color: #4B1247;
    margin-bottom: 20px; /* Increased margin for better separation */
}

.content p {
    color: #555; /* Adjusted text color for better readability */
    font-size: 18px; /* Increased font size for better readability */
    line-height: 1.6;
    margin-bottom: 30px; /* Increased margin for better separation */
}

.services-list, .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555; /* Adjusted text color for better readability */
}

.services-list li, .features-list li {
    background: #f9f9f9;
    padding: 15px; /* Increased padding for better spacing */
    margin-bottom: 20px; /* Increased margin for better separation */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content a {
    color: #4B1247;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #25d366; /* Changed link color on hover */
}


/* Responsive styles */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        right: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
    }

    .menu.active
{
    display: flex;
}

.menu li {
    margin: 0;
}

.menu a {
    padding: 15px;
    text-align: center;
    color: black;
    border-radius: 10px;
}

.menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

.menu li:last-child a {
    border-radius: 0 0 10px 10px;
}

.hamburger {
    display: flex;
}

.phone {
    font-size: 15px;
    margin-right: 20px;
}

/* Define a linear gradient with three colors for smoother transition */
.menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom left, #F39, #909, #66C);
    border-radius: 10px;
    z-index: -1;
    transition: height 0.5s ease, background 0.5s ease; /* Add background transition */
}

.menu li:first-child a::before {
    height: 100%;
}

.menu a:hover::before {
    height: 100%;
}

.menu a:hover {
    color: white;
}

}

/* Define a linear gradient with multiple colors for the footer background */
footer {
    background: linear-gradient(to right, #66C, #909, #F39);
    color: #fff; /* White text color for better contrast */
    padding: 10px;
    text-align: center;
    transition: background-color 0.5s; /* Add transition effect to background-color */
}

.footer-content {
    padding-top:-5px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 15px;
}
