/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Consolas', monospace;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.name-heading {
  background: #FF0066;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10px;
}

.name-heading p {
  font-size: 20px;
  color: aliceblue;
  margin: 0;
}

/* Welcome Section */
.welcome-page {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.front-welcome-heading {
  text-align: center;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about {
  width: 100%;
  background-color: #E8D4B7;
  padding: 80px 0;
}

.about-me {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-me-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 60px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-laptop,
.about-graph,
.about-rocket {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: gray;
  line-height: 1.7;
}

/* Page Break */
.page-break {
  width: 100%;
  height: 1000px;
}

.blank-section {
  height: 100%;
}

/* Services Section */
.services {
  width: 100%;
  background: radial-gradient(ellipse at top, #934790 70%, #6A0066 30%);
  padding: 60px 0;
  color: beige;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flexbox;
  gap: 40px;
}

.services-offered,
.services-offered2 {
  font-size: 1.2rem;
  line-height: 1.6;
}

.services-icons {
  margin-top: 20px;
}

.horizontal-list {
  list-style-type: none;
  display: flex;
  gap: 15px;
}

.horizontal-list li {
  display: inline-block;
}

.logo,
.logo-seo {
  height: 80px;
  width: auto;
}

/* Contact Section */
.contact-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.in-touch {
  text-decoration: underline;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-list {
  list-style-type: none;
}

.contact-list li {
  margin-bottom: 15px;
}

.contact-list img {
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-list a {
  color: beige;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.socials-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.socials-list img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.socials-list img:hover {
  transform: scale(1.1);
}

/* Footer */
.bottom-margin {
  height: 45px;
  width: 100%;
  background: #FF0066;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .horizontal-list {
    justify-content: center;
  }
  
  .socials-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .name-heading p {
    font-size: 16px;
  }
  
  .about-laptop,
  .about-graph,
  .about-rocket {
    font-size: 1rem;
  }
  
  .services-offered,
  .services-offered2 {
    font-size: 1rem;
  }
}