body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: black;
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color: white;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.logo {
  font-weight: bold;
  font-size: 1.5rem;
}


/* Animated Elements */
.animated-heading {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeSlideIn 1.5s ease-out forwards;
  opacity: 0;
}

.animated-subtext {
  color: #aaa;
  margin-bottom: 1.5rem;
  animation: fadeIn 2s ease-out 0.5s forwards;
  opacity: 0;
}

.animated-button {
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, #ff1212, #fc641d);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.animated-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff1212;
}

.logo-image {
  max-width: 300px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



/* Floating Nav Styles */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 1100px;
  background: transparent;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 8px 30px transparent;
  z-index: 1000;
  animation: slideDown 1s ease forwards;
  opacity: 0;
}

.floating-nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.floating-nav nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.floating-nav nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #b1b1b1;
  transition: width 0.3s;
}

.floating-nav nav a:hover::after {
  width: 0%;
}

.floating-nav nav a:hover {
  color: #b1b1b1;
}

/* Entrance Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Banner Image Section */
.banner-image {
  width: 500%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.banner-image img {
  width: 500%;
  max-width: 1000px;
  border-radius: 50px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  animation: fadeInBanner 2s ease-in-out;
}

/* Banner Image Fade In Animation */
@keyframes fadeInBanner {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial state */
.hero {
  opacity: 0;
  animation: fadeIn 2s ease forwards; /* Fade in over 2 seconds */
}

/* Keyframes for fadeIn */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.text-content {
  max-width: 600px;
  flex: 1 1 400px; /* Grow and shrink with a base width */
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  position: relative;
  height: 100svh; /* Use small viewport height for mobile */
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px; /* prevents nav overlap */
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4); /* Optional dimming overlay */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}



.typing-text {
  font-size: 3rem;
  width: 24ch;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #ff0000;
  animation: typing 3.5s steps(24), blink 0.75s step-end infinite;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #cccccc;
}

/* Typing Animation */


.logo-container img.logo-image {
  max-height: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.7));
}

.logo-image {
  max-width: 100px;
  height: 500;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.7));
}

.animated-heading {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.animated-subtext {
  color: #aaa;
  margin-bottom: 1.5rem;
}



/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.container {
  max-width: 600px;
}

.typing-heading {
  font-size: 3.5rem;
  font-weight: 700;
  width: 22ch;
  margin: 0 auto 1rem auto;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid #00d2ff;
  animation: typing 3s steps(22) 1s 1 forwards, blink 0.75s step-end infinite;
}


.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #b0e0ffcc;
  font-weight: 500;
}



/* Responsive */
@media (max-width: 480px) {
  .typing-heading {
    font-size: 2.5rem;
    width: 18ch;
    animation: typing 3s steps(18) 1s 1 forwards, blink 0.75s step-end infinite;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.custom-services-section {
  background: #000000;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.main-title {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
}

.divider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.divider-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
}

.divider-label {
  background: #000000;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  font-family: monospace;
  z-index: 1;
  transform: rotate(-6deg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px transparent;
}

.icon-wrapper {
  margin-bottom: 16px;
}

.icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e0e0e0;
}

.service-card p {
  font-size: 0.95rem;
  color: transparent;
  line-height: 1.5;
}


