﻿body {
    /* background-image: url('images/SolvaLogo.jpg');*/
    /*background-size: cover; /* Make the background cover the entire page */
    /* background-position: center; /* Center the image */
    /*: no-repeat; /* Prevent the image from repeating */
    /*color: #002444; /* Default text color */
    background-color: #002444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Default font */
    margin: 0;
    /* Remove default margin */
    padding: 0;
    /* Remove default padding */
    line-height: 1.6em;
}

.home{

    background-image: url('images/SolvaLogo.jpg');
    background-size: cover;
 background-position: center;   
 width: 100%;
 min-height: 800px;
 margin: auto;

}

.container {
    width: 90%;
    margin: auto;
    padding: auto;

}

.space{
    width: 100%;
    height: 50px;
}

.space-head{
    width: 100%;
    height: 30px;
}

/*header & sticky Nav*/
.header{
    background-color: #002444;
    padding: 30px;
    text-align: center;

}
#navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #002444;
    
  }
  
  #navbar a {
    /* float: left; */
    display: inline-block; 
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  #navbar a:hover {
    background-color:#00ffcc;
    color: black;
  }
  
  /* #navbar a.active {
    background-color:#00ffcc;
    color: white;
  } */

/* Style for headings */
h1 {
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Default font */
    color: #0b765d;
    font-size: 3em;
    text-align: center;
    
    /* Change to desired heading color */
}
h2 {
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Default font */
    color: #0b765d;
    font-size: 2em;
    text-align: center;
}
h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Default font */
    font-style: italic;
    color: #ffffff;
    font-size: 1em;
    align-content: center;
    /* Change to desired heading color */
}
/* Paragraphs */
p {
    color: #ffffff;
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    /* Change to desired paragraph color */
}
/* Links */
a {
    color: #00ffcc;
    /* Change to desired link color */
    text-decoration: none;
    /* Remove underline */
}
a:hover {
    text-decoration: underline;
    /* Underline on hover */
}
/* boackground*/
.background {
    width: 400px;
    height: 400px;
    /* background-color: black;*/
    padding: 80px;
    position: relative;
}

.orb {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    filter: blur(25px);
    background: radial-gradient(circle at center, white, transparent 40%), conic-gradient(from 45deg, hsl(183, 68%, 54%) 52deg, #24425e 65deg, #18665c 120deg 307deg, #345a7f 353deg);
}

.services-container {
    display: flex;
    /* Use flexbox for layout */
    width: 90%;
    /*justify-content: center; /* Center align boxes */
    justify-content: space-evenly;
    /*margin: 20px 0; /* Spacing between rows */
    margin: auto;
    flex-wrap: wrap;
}

/* Service box with image background */
.service-box {
    width: 200px; /* Fixed square width */
    height: 200px; /* Fixed square height */
    /*flex: 1;*/
    flex-grow: 0;
   /* min-width: 0;*/
    /*width: 500px;*/
    margin: 10px;
    /* Spacing between boxes */
    background-image: url('images/blurredorb.png');
    /* Set your image here */
    background-size: cover;
    /* Ensure the image covers the entire box */
    background-position: center;
    /* Center the image in the box */
    position: relative;
    /* For overlay and text positioning */
    color: white;
    /* Text color */
    padding: 20px;
    text-align: center;
    /* Center align text */
    display: flex;
    /* Flexbox to align content */
    justify-content: center;
    /* Center contents */
    align-items: center;
    /* Center contents */
    border-radius: 15px;
    /* Optional rounded corners */
    font: large  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Overlay to make text visible over image */
.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    border-radius: 15px;
    /* Optional rounded corners */
    z-index: 1;
    /* Ensure overlay stays below text */
} 

/* Ensure the text stays above the overlay */
.service-box a {
    position: relative;
    z-index: 2;
    /* Text is above the overlay */
    color: white;
    /* Ensure text is visible */
    text-decoration: none;
    /* Remove underline from links */
}


.service-box:hover {
    border: dotted;
    color:#0b765d;
    /* background-color: #0056b3; /* Change color on hover */
}

ul {
    padding-left: 20px;
    /* Add padding to prevent bullet overlap */
    margin: auto;
}

/* Single-column list with alternating rows */
.single-column {
    padding-left: 20px;
    margin-left: 100px;
    /* Additional padding for bullets if needed */
}

.single-column li {
    padding: 5px;
    margin-bottom: 5px;
    /*background-color: #f0f0f0; /* Default background for single-column */
    border-radius: 5px;

}

/* Alternating row colors for single-column */
.single-column li:nth-child(odd) {
    /*background-color: #dfe6e9;*/
    color: aquamarine;
}

.single-column li:nth-child(even) {
    /*background-color: #b2bec3;*/
    color: aqua;
}

/* Multi-column list with bullet points */
.multi-column {
    column-count: 2;
    /* Display in two columns */
    column-gap: 20px;
    /* Spacing between columns */
    padding-left: 20px;
    /* Padding to maintain space for bullets */
}

.multi-column li {
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    /* Default background for multi-column */
    border-radius: 5px;
}

/* Alternating colors in multi-column */
.multi-column li:nth-child(odd) {
    background-color: #fab1a0;
    /* Light red for odd rows */
}

.multi-column li:nth-child(even) {
    background-color: #ffeaa7;
    /* Light yellow for even rows */
}
/*CSS Grid*/
/*Contact Page*/
.contact-container{
    width: 90%;
    margin: auto;
    padding: auto;
    display: grid;
    grid-template-columns:repeat(2, 50%);
    column-gap: 1em;
    row-gap: 1em;
}

.item{
/*background: #00ffcc;*/
color: #fff;
font-size: 30px;
padding: .15em;
font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
align-content: center;
display: inline-block;
}
.item2{
    /*background: #00ffcc;*/
    color: #fff;
    font-size: 60px;
    padding: .15em;
    align-content: center;
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
/* Top Button Nav*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #0b765d;
    color: rgb(22, 50, 133);
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #345a7f;
  }

    /* Styling for the button */
    #myBtn2 {
        /*display: none; /* Hidden by default */
        position: fixed; /* Fixed at the bottom of the page */
        bottom: 20px; /* 20px from the bottom */
        left: 30px; /* 30px from the right */
        z-index: 99; /* Sit on top */
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #0b765d;
        color: rgb(22, 50, 133);
        cursor: pointer;
        padding: 15px;
        border-radius: 4px;
        cursor: pointer; /* Pointer/hand icon on hover */
    }

    #myBtn2:hover {
        background-color: #345a7f; /* Darker background on hover */
    }

table{
    border: 0;
    width: 90%;
    padding: .1em;
    align-content: center;
}
 th, td{
    border: 0;
    padding: .1em;
    align-content: center;
    color: #18665c;
    font-size: 30px;
    font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.client-container {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    flex-wrap: wrap;

}
