/* General Styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
}

/* Header Section */
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(Images/network-3849202.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 225px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #2600ff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 70%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}

/* Section Styles */
.service {
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 1%;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: rgb(0, 0, 0);
    font-size: 17px;
    font-weight: 900;
    line-height: 22px;
    padding: 5px;
    text-align: center;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.service-col {
    margin: auto;
    background: #f3f6ff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 0.5%;
    box-sizing: border-box;
    transition: 0.5s;
}

.service-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.cta{
    text-align: center;
}

.service h3{
    font-size: 36px;
}
.button-container {
    position: relative;
    display: inline-block;
  }

  button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  button:hover {
    background-color: #45a049;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
  }

  .dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: #fff;
    font-size: 14px;
  }

  .dropdown a:hover {
    background-color: #ddd;
  }

  .button-container:hover .dropdown {
    display: block;
  }
