* {
  /* Reset all elements to have no margin or padding */
  /* and set box-sizing to border-box for consistent sizing */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
  background-attachment: fixed;
  color: white;
  font-family: 'Lato', 'Open Sans', 'Roboto', sans-serif;
  line-height: 1.6;
}

/* Header and Navigation */
.header {
  background-color: rgba(30, 30, 30, 0.95);
  border-bottom: 3px solid #0066cc;
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

/* Left side of nav */
.left-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.left-div img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0066cc;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: #0066cc; 
  box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
          }
  50% { border-color: #00a3ff;
  box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.2); 
    }
}

.left-div a {
  color: #0066cc;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.left-div a:hover {
  color: #00a3ff;
}

/* Right side nav links */
.right-div {
  display: flex;
  align-items: center;
}

.header-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.header-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-links li a:hover {
  color: #00a3ff;
  background-color: rgba(0, 102, 204, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background-color: #0066cc;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu:hover span {
  background-color: #00a3ff;
}

.hamburger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
  width: 100%;
  max-width: 600px;
  margin: 3rem auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 255, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 102, 204, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Home Section */
.home-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.home-img {
  margin-bottom: 30px;
}

.home-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0066cc;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  transition: transform 0.3s ease;
}

.home-img img:hover {
  transform: scale(1.05);
}

.home-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
}

.home-location {
  font-size: 1.1rem;
  color: #00a3ff;
  font-weight: 600;
  margin-bottom: 15px;
}

.home-description1 {
  font-size: 1.2rem;
  color: #00a3ff;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.home-description2 {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  margin-top: 2rem;
}

.contact-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links li {
  width: 100%;
}

.social-links li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border: 2px solid #0066cc;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-links li a:hover {
  background: linear-gradient(135deg, #00a3ff 0%, #0066cc 100%);
  border-color: #00a3ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.social-links li a:focus {
  outline: 2px solid #00a3ff;
  outline-offset: 2px;
}

/* Footer */
.Footer {
  background-color: rgba(30, 30, 30, 0.95);
  border-top: 3px solid #0066cc;
  padding: 20px;
  text-align: center;
  color: #00a3ff;
  font-weight: 600;
  margin-top: 3rem;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .right-div {
    width: 100%;
  }

  .header-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background-color: rgba(0, 102, 204, 0.1);
    border: 2px solid #0066cc;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    position: absolute;
    top: 100%;
    left: 30px;
    right: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .header-links.open {
    display: flex;
  }

  .header-links li a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  main {
    margin: 2rem 15px;
    padding: 30px 20px;
  }

  .home-section h1 {
    font-size: 2rem;
  }

  .home-img img {
    width: 110px;
    height: 110px;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .social-links li a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 20px;
  }

  .left-div img {
    width: 40px;
    height: 40px;
  }

  .left-div a {
    font-size: 1.2rem;
  }

  .header-links {
    left: 15px;
    right: 15px;
  }

  main {
    margin: 1.5rem 10px;
    padding: 20px 15px;
    max-width: 100%;
  }

  .home-section h1 {
    font-size: 1.5rem;
  }

  .home-img img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

  .home-location {
    font-size: 0.95rem;
  }

  .home-description1 {
    font-size: 1rem;
  }

  .home-description2 {
    font-size: 0.9rem;
  }

  .contact-section h2 {
    font-size: 1.3rem;
  }

  .social-links {
    gap: 12px;
  }

  .social-links li a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}