:root {
    --primary-bg-color: #000;
    --text-color: #fff;
    --font-playfair: "Playfair Display", serif;
    --font-priscilla: 'Priscilla-Script', cursive;
    --border-color: #e014fc;
    --accent-color: #9E00FF;
    --footer-border-color: #e014fc;
    --menu-background-color: #1a1a1a;
    --menu-bottom-border: #333333;
  
}

button {
    font-family: var(--font-playfair);
}

/* Homepage Main Section */

.my-services {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.service {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
}

.service i {
    color: var(--accent-color);
}

.service i:hover {
    color: var(--border-color);
}

.service p {
    text-align: center;
    padding: 1em;
}

.service ul {
    list-style: none;
    padding: 0 !important;
    line-height: 2em;
}

button#services {
    background-color: var(--border-color);
    width: 12em;
    padding: 1em;
    color: var(--text-color);
    border: none;
    font-family: var(--font-playfair);
    display: block;
    margin: 0 auto;
}

button#services:hover {
    background-color: var(--accent-color);
}

/* HOSTNG SECTION */


.hosting {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

p#hosting {
    text-align: center;
    font-weight: 600;
}

.package {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--accent-color);
    padding: 2em;
    margin-right: 1em;
    
}

.widget h4 {
    border-bottom: 4px dotted var(--accent-color);
    padding: 0;
    margin: .5em;
}

.package i {
    color: var(--accent-color);
}

.package i:hover {
    color: var(--border-color);
}


.package ul {
    list-style: none;
    padding: 0 !important;
    width: 100%;
    height: 15em;
    overflow: scroll;
    text-align: center;
}

.package ul::-webkit-scrollbar {
    display: none; /* Hide the scrollbar for WebKit browsers */
}

.package li {
    line-height: 3.5em;
}

span#price {
    font-size: 28px;
}

button#package {
    background-color: var(--border-color);
    width: 12em;
    padding: 1em;
    color: var(--text-color);
    border: none;
    font-family: var(--font-playfair);
    display: block;
    margin: 0 auto;
}

button#package:hover {
    background-color: var(--accent-color);
}


.consultation {
    width: 100%;
    height: auto;
    position: relative; /* Position relative to make absolute positioning work */
    display: inline-block; /* Ensures the container only takes up as much width as necessary */
    margin-top: 2em;
}

.consultation img {
    display: block; /* Ensures the image doesn't have any extra space below */
    width: 100%; /* Ensures the image takes up the full width of the container */ 
}

.consultation h3 {
    width: 100%;
    position: absolute; /* Position absolute to place it on top of the image */
    top: 25%; /* Position it 50% from the top */
    left: 50%; /* Position it 50% from the left */
    transform: translate(-50%, -50%); /* Center it horizontally and vertically */
    color: white; /* Text color */
    font-size: 60px; /* Adjust the font size as needed */
    text-align: center; /* Center align the text */
    z-index: 1; /* Ensure the text is above the image */
    font-family: var(--font-priscilla);
}

.consultation button {
    width: 12em;
    position: absolute;
    top: calc(50% + 50px); /* Adjust the distance below the h3 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: var(--accent-color); /* Button background color */
    color: #fff; /* Button text color */
    padding: 1em 2em ; /* Button padding */
    border: none; /* Remove button border */
    cursor: pointer; /* Show pointer on hover */
}

/* Additional styling for button hover effect */
.consultation button:hover {
    background-color: var(--border-color); /* Button background color on hover */
}




/* 
SERVICE PAGE STARTS HERE */

.service-main {
    width: 100%;
    height: auto;
    padding: 2em;
}

.service-page-header {
    width: 100%;
    text-align: center;
    margin-top: -2em;
}

.service-page-header h1 {
    font-size: 64px;
    color:#fff;
    border: none;
}
.service-page-header h3 {
    font-size: 18px;
    color:#fff;
    margin-top: -1em;
    margin-bottom: 3em;
    font-weight: 100;
}

.service-container {
    width: 100%;
}

.service-container ul {
    list-style: none;
    padding: 0;
}

li#service-section {
    width: 30%;
}

.service-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.service-hero {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.service-hero img {
    width: 40%;
    margin-bottom: 3em;
}

li h3 {
    font-size: 18px;
}

h3 i {
    color: var(--accent-color);
    padding-right: .5em;
}

.service-banner {
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom right, var(--accent-color), var(--border-color));
    text-align: center;
    padding: 2em;
}

.service-banner h1 {
    border: none;
    font-size: 36px;
    margin: 0;
    padding: 0;
    
}

.banner-text {
    width: 75%;
    height: auto;
    background: rgba(0, 0, 0, 0.3); /* Black with 30% opacity */
    display: inline-block;
    margin: 0 auto;
    padding: 3em;
}

.banner-text button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin: .3em;
    padding: .8em;
}

.banner-text button:hover {
    border: var(--border-color) 2px solid;
    color: var(--border-color);
}


.lead-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 1em;
    margin: 2em 0;
}

.lead-image {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
}

/* .lead-image img {
    width: 65%;
    height: auto;
} */

.lead-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lead-text p {
    padding: 2em;
    text-align: center;
}

.lead-text button {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: .8em;
    background-color: transparent;
}

/* 
RESPONSIVE DESIGN */

@media only screen and (max-width: 938px) {
    #block-18.widget {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
   
    .hosting {
        flex-wrap: wrap;
        align-items: center;
    }

    .package {
        width: 80%;
        margin-bottom: 1em;
    }

    .package ul {
        height: 10em;
    }

    .my-services {
        flex-wrap: wrap;
    }

    .service {
        width: 50%;
    }

    .service-main {
        padding: 1em;
    }

    /* HOMEPAGE CODE ENDS */

    /* SERVICE PAGE STARTS */

    li#service-section {
        width: 85%;
    }
    
    .service-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media only screen and (max-width: 725px) { 
    .package {
        width: 100%;
        margin-bottom: 1em;
    }

    .caption h2 {
        font-size: 36px;
    }
    
    .caption h3 {
        font-size: 20px;
    }

    .blog-container {
        height: auto;
    }

    .hero {
        margin-bottom: 0;
    }

    .flex-container {
        margin-top: -2em;
    }

    .main-container {
        order: 1;
    }
    
    .sidebar-container {
        order: 2;
    }

    .service-banner {
        padding: 1em;
    }
    
    .service-banner h1 {
        border: none;
        font-size: 28px;        
    }


    .service-banner h2 {
        font-size: 12px;
    }
    
    .banner-text {
        width: 90%;
        padding: .5em;
    }

  
   
}