/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styling */
header {
  background-image: url('../Folder.Images/HP_Header_png.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 3600px;
  padding: 20px;
  color: white;
}

/* Flex row layout for container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left column */
.header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.header-right nav {
  position: relative;
  z-index: 10;
}

/* Right column - nav links */
.header-right nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.header-right nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
}

/* Optional flicker effect */
#header-title {
  font-size: 48px;
  color: white;
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeSlideIn 2s ease-out forwards, flickerEffect 10s ease-in-out forwards;
  animation-delay: 0s, 2s; /* first animation starts immediately, second starts after 2s */
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flickerEffect {
  0% { color: white; opacity: 1; }
  10% { color: #ccc; opacity: 0.8; }
  20% { color: white; opacity: 0.6; }
  30% { color: #999; opacity: 0.9; }
  40% { color: white; opacity: 0.5; }
  50% { color: #888; opacity: 0.7; }
  60% { color: white; opacity: 0.4; }
  70% { color: #666; opacity: 0.6; }
  80% { color: #444; opacity: 0.5; }
  90% { color: #999; opacity: 0.6; }
  100% { color: white; opacity: 1; }
}


/* Spacer Section */

.spacer {
  height: 300px; /* Adjust to your needs */
}

/* Hero Section */

.Container-Call {
  position: relative;
  height: 300px; /* or adjust as needed */
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;   /* rgba(0, 0, 0, 0.223); /* darken background */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 30px; /* Adjust as needed */
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}


.cta-button {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #00bfff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #008ecf;
}


/* Spacer Section */

.spacer2 {
  height: 100px; /* Adjust to your needs */
}


/* Quick Summary Section */

.blur-card {
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  backdrop-filter: blur(10px);         /* <-- the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 15px;
  padding: 40px 20px;
  margin: 40px auto;
  width: 90%;
  max-width: 1200px;
  color: white; /* or adjust based on your design */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s; /* optional */
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-overview h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: white;
}

.overview-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}

.overview-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: whitesmoke;
  transition: transform 0.3s;
  width: 120px;
}

.icon-wrapper {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 2px solid #00ffff;
  box-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff;
  border-radius: 10px; /* optional */
  background-color: rgba(255,255,255,0.05); /* optional backdrop look */
}

.icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.overview-icon span {
  font-size: 24px;
  font-weight: bold;
  color: whitesmoke;
  text-align: center;
  margin-top: 12px; /* Add space below the icon */
}

.overview-icon:hover {
  transform: scale(1.1);
}


/* Web Developement Section */

.services-container {
  display: flex;
  flex-direction: column;
  gap: 100px; /* increase as needed */
  padding: 40px 20px;
}



.service-box {
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width:100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100px);
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s; /* optional delay */
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-box img {
  max-width: 450px;
  width: 150%;
  border-radius: 8px;
  border: 3px solid #00ffff; /* Neon cyan */
  border-radius: 8px;
  box-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  margin: 0 0 10px;
  font-size: 48px;
}

.service-content p {
  margin: 0 0 15px;
  font-size: 24px;
}

.btn {
  background-color: #ff3333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #cc0000;
}

/* hosting and domain section */

.service-box.reverse {
  flex-direction: row-reverse;
}



/* Mobile view adjustments */
@media (max-width: 600px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }

  .service-box img {
    max-width: 100%;
  }
}


/*      footer      */



/* ---------- Footer Styles ---------- */

.site-footer {
  background: linear-gradient(to bottom, #0a0a0a, #0f1e2d); /* rich, dark gradient */
  color: #e0e0e0;
  padding: 40px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.1);
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, #00ffff, transparent);
  margin-bottom: 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

/* Footer Left Section */
.footer-left h3 {
  color: #00ffff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.footer-left p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-left .phone {
  color: #00ffcc;
}

.footer-left .email {
  color: #66ccff;
}

/* Footer Center Section */
.footer-center h4 {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-center ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-center ul li {
  margin-bottom: 10px;
}

.footer-center ul li a {
  color: #9be7ff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-center ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  background-color: #00ffff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-center ul li a:hover::before {
  opacity: 1;
}

.footer-center ul li a:visited {
  color: #9be7ff;
}

.footer-center ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

/* Footer Right Section */
.footer-right h4 {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.social-icons a {
  color: #9be7ff;
  margin-right: 12px;
  font-size: 1.4rem;
  transition: color 0.3s, text-shadow 0.3s;
  display: inline-block;
}

.social-icons a:hover {
  color: #00ffff;
  text-shadow: 0 0 6px #00ffff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    min-width: 100%;
  }

  .social-icons a {
    font-size: 1.6rem;
    margin: 0 8px;
  }
}
