/* ----------------------------------------Nav css----------------------------------------*/
#nav-wrapper nav a{
    text-decoration: none;
    color: #ffffff;
}

/* Style the navigation bar */
nav {
    display: flex;
    justify-content: space-between;
}

/* Style the logo */
#logo {
    font-size: 24px;  
    font-weight: bold;
}

/* Style the navigation links */
ul {
    display: flex;
    list-style: none;
}

li {
    margin: 0 10px;  
    font-size: 18px;  
}






/* ----------------------------------------Home page css----------------------------------------*/
body, ul {
    margin: 0;
    padding: 0;
}

/* Style the header section */
header {
    background-image: url('images/link-connect.png'); /* Replace 'your-image-path.jpg' with the path to your desired image */
    background-size: cover;
    color: white;
    padding: 50px;  
    height: 100vh;/* to cover the whole screen from top to bottom*/
}


/* Style the main content */
#main-content {
    max-width: 800px;  
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 48px;  
    margin-bottom: 20px;  
}

p {
    font-size: 20px;  
    line-height: 1.5;  
}

svg {
    margin: 20px auto;  
}

/* Style the CTA box */
#cta-box {
    background-color: rgba(0, 0, 0, 0.5);  
    padding: 20px;  
    max-width: 400px;  
    margin: 20px auto;  
    text-align: center;
}

h2 {
    font-size: 36px;  
    margin-bottom: 10px;  
}

#cta-box a {
    display: inline-block;
    padding: 10px 20px;  
    background-color: #00FF00;  
    color: black;  
    text-decoration: none;
    font-size: 18px;  
}













/* ----------------------------------------About us css----------------------------------------*/

body {
    font-family: Arial,sans-serif;
    color: black;
    background-color: #ffffff;
  }
  
  .container {
    max-width: 800px;
    margin: auto;
  }
  
  .box-container {
    display: flex;
  }
  
  .box {
    flex-grow: 1;
    padding:20px; 
  }
  
  .box h2{
     color:#000000; 
  }
  #about-us-wrapper .container h1
  {
    margin: 5% 0 2% 0;
  }


  .box-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.box {
    background-color: #eeeeee;
    color: black; 
    width: 30%; 
    padding: 20px; 
    border-radius: 5px;
    margin: 0 2% 0 0;
}

.box h2 {
    font-size: 24px;
}

.box p {
   font-size: 18px;
   margin-bottom: 20px;
}

.box-container .box button {
   background-color:#ffffff; 
   color:rgb(0, 0, 0); 
   padding:10px 20px; 
   border:1px solid #3498DB; 
   border-radius:5px;
   font-size: small;
}




/* ----------------------------------------Footer css----------------------------------------*/




body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1; 
}

#footer-main-div {
    background-color: #eeeeee;
    color: black;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.brand {
    font-size: 24px;
}

.links a {
    color: white;
}

.footer-content a
{
    text-decoration: none;
    color: black;
}

.footer-content a:hover
{
    text-decoration: underline;
    color: rgb(96, 96, 248);
}

#footer-contact-us-div
{
    background-color: #eeeeee;
    color: rgb(0, 0, 0);
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


/* 
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1; 
}

footer {
    background-color: #2C3E50;
    color: white;
    padding: 20px;
    width: 100%;
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.brand {
    font-size: 24px;
}

.links a {
    color: white;
}
/* 
/* Position the footer at the bottom of the content */
/* footer {
    position: relative; */
    /* margin-top: auto; Push the footer to the bottom */ 
/* } */
