
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #063b72;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fcb314;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #fcb314;
}


.hero {
  height: 100vh;
  background-image: url('../img/hostgator.jpg');
  opacity: 0.8;
  background-size: 100% 50%;
   background-repeat: no-repeat;
  background-position: center;
 
  /* background: linear-gradient(to right, #063b72, #0056a0); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
  
}



.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fcb314;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #fcb314;
  color: #063b72;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #e6a500;
}



.services {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: #063b72;
  margin-bottom: 50px;
  position: relative;
}

.services h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fcb314;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px 25px;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: #063b72;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.service-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-link:hover .service-card {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.benefits {
  background-color: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  color: #063b72;
  font-size: 32px;
  margin-bottom: 40px;
}

.benefit-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  flex: 1 1 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-item img {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-item h3 {
  color: #fcb314;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #333;
  font-size: 15px;
}

.about-us {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #063b72;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 32px;
  color: #fcb314;
  margin-bottom: 30px;
}

.about-us p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-gif {
  margin-top: 30px;
  text-align: center;
}

.about-gif img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.galeria{
  display: flex;
  width: 600px;
  height: 438px; 
}
.galeria img{
  width: 0px;
  flex-grow: 1;
  object-fit:cover;
  opacity: .8;
  transition: .5s ease;
}
.galeria img:hover{
  cursor: crosshair;
  width:300px;
  opacity: .1;
  filter: contrast(120%);
  
}

.footer {
  background-color: #022c56;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 22px;
  font-weight: bold;
  color: #fcb314;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #fcb314;
}

.footer-social a img {
  width: 24px;
  margin: 0 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fcb314;
  cursor: pointer;
}



@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    padding: 10px 0;
  }
}

