/* Base Styles */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}


/* Header */


header {
  background-color: #ffffff;	
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo-lnk {
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
}

.icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: #0074D9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.icon::before {
  content: '</>';
  color: #fff;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  position: relative;
  color: #001f3f;	
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0074d9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.menu-icon {
  display: none;
  position: fixed;
  left: 87%;
  font-size: 2rem;
  color: #004080;
  text-decoration: none;
}

.menu-icon:hover {
  color: #0074d9;
}

#menu {
  position: fixed;
  left: 100%;
  top: 0;
  width: 60%;
  background-color: #ffffff;
  font-weight: 500;
  font-size: 2rem;
  list-style: none;	
  border: 1px solid #0074d9;
  border-radius: 5px;
  margin: 10px 0 0 0;
  transition: left 300ms 300ms
}

#menu li {
  padding: 0;	
  margin: 25px 0 25px 0;
}

#menu a {
  position: relative;	
  color: #001f3f;
  font-weight: bold;  
  text-decoration: none;
  padding: 0;
  margin: 0;
}

#menu a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0074d9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#menu a:hover::before {
  transform: scaleX(1);
}

#menu-icon:focus + #menu {
  left: 40%;
  transition-delay: 0;
}


/* Hero Section */

.home {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 700px;	
  background-image: url("images/image1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;    
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin-top: 4rem;
}

.home-text-div {
  height: 700px;
  width: 100%;
  background: rgba(0, 116, 217, 0.62);
  padding: 0 0 0 0;
  margin-bottom: 0;
}

.icon-large {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 250px;
   height: 250px;
   background-color: none;
   color: #ffffff;
   font-size: 15rem;
   font-weight: bold;
   border-radius: 10px;
   margin-top: 150px;
   margin-left: auto;
   margin-right: auto;
}

.home h1 {
  font-size: 2em;
  margin-top: 50px;
}

.home a {
  margin-bottom: 25px;
}

.anchor {
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden; 
}


/* About Section */

.about, .services, .pricing, .contact {
  padding: 0rem 0rem 2rem 0rem;
  text-align: center;
  font-size: 1.5rem;
}

p {
  padding: 5px 10px 5px 10px;
}

.bold {
  font-weight: bold;
}

.elden {
  color: #004080; 
}

.digital {
  color: #0074D9;
}

.about {
  background-color: #f0f0f0;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  margin-top: 25px;
}


/* Services Section */
.services {
  background-color: #f0f0f0;
}

.services-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
}

.services h2 {
  margin: 2rem 0 0 0;
}

.service-item {
  margin: 1.5rem 0;
}


/* Pricing Section */

.pricing-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  opacity: 0.85;
}


/* Contact Section */

.contact {
  background-image: url("images/image5.jpg");	
  padding: 0;
}

.contact div {
  height: 100%;
  width: 100%;
  background: rgba(0, 116, 217, 0.90);
  padding: 2rem 0 2rem 0;
}

.contact h2 {
  color: #ffffff;
  margin-top: 150px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  padding: 10px;
}

.contact label {
  display: block;
  color: #ffffff;
  margin: 0.5rem 0 0.2rem;
}

.contact input, .contact textarea {
  width: 95%;
  font-size: 1.25rem;
  padding: 0.5rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.contact button {
  background-color: #001f3f;
  color: white;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact p {
  font-size: 1rem;
  color: #ffffff;
}


/* Footer */

footer {
  background-color: #ffffff;
  color: #001f3f;
  text-align: center;
  padding: 1rem 0;
}


/* Responsive Styles 768 */

@media (max-width: 850px) {
    
  .logo {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #004080;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    padding: 1rem 0;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .menu-icon {
    display: block;
  }    

  .home {
    height: 500px;
  }	  

  .icon-large {
    width: 130px;
    height: 130px;
    font-size: 10rem; 
    margin-top: 300px;
  }

  .home h1 {
    margin-top: 50px;
  } 

  .home, .about, .services, .pricing, .contact {
    font-size: 1rem;
  }	   

}
