/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f2f2f2;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Jazzy animated gradient background for header */
.top-banner {
  background: linear-gradient(270deg, #03182e, #0f091f, #163c65);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  padding: 15px 50px;
  /* text-align: left; */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
  border-radius: 0 0 0px 0px;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Neon glow effect on ACBuddy text */
.top-banner h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #011717;
  text-shadow:
    0 0 5px #00f9ff,
    0 0 10px #00f9ff,
    0 0 20px #00f9ff,
    0 0 40px #00f9ff,
    0 0 80px #00f9ff;
  margin-bottom: 12px;
  font-family: 'Segoe UI Black', 'Arial Black', Arial, sans-serif;
  user-select: none;
  position: relative;
  z-index: 10;
}

.top-banner p {
  font-size: 1rem;
  font-weight: 600;
  color: #e0f7ffcc;
  margin-bottom: 20px;
  max-width: 600px;
  user-select: none;
}

/* Button with underline animation */
.top-banner button {
  padding: 4px 5px;
  font-size: 1.2rem;
  background-color: transparent;
  border: 3px solid #00f9ff;
  border-radius: 50px;
  color: #00f9ff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.top-banner button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #00f9ff;
  transition: width 0.4s ease, left 0.4s ease;
  border-radius: 50px;
  z-index: -1;
}

.top-banner button:hover {
  color: #007bff;
  background-color: #00f9ff;
  border-color: #00f9ff;
}

.top-banner button:hover::before {
  width: 100%;
  left: 0;
}

/* Navigation Menu */
.nav {
  background-color: #343a40;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.nav a:hover {
  background-color: #495057;
  border-radius: 4px;
}

/* Contact Section styling */
.contact-section {
  /* background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover; */
  background: url('bannerImage.jpeg') no-repeat center center/cover;
  /* height: 180px;
  margin: 20px 50px; */
  padding: 2px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.sectionworks
{
  background: url('bannerImageworks.jpeg') no-repeat center center/cover;
  padding: 20px; 
  background-color: #f4f4f4; 
}

.contact-info {
  max-width: 320px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 12px;
  user-select: none;
}

/* Responsive */
@media (max-width: 576px) {
  .top-banner h1 {
    font-size: 2.8rem;
  }

  .top-banner p {
    font-size: 1.1rem;
  }

  .top-banner {
    padding: 25px 20px;
    border-radius: 0 0 15px 15px;
  }

  .nav a {
    font-size: 0.9rem;
    padding: 8px;
  }

  .card img {
    height: 150px;
  }

  .contact-section {
    margin: 15px 20px;
    height: auto;
    padding: 20px 10px;
  }

  .contact-info {
    max-width: 100%;
    background-color: rgba(0,0,0,0.6);
  }
}
.top-banner p {
  font-size: 1rem;
  font-weight: 600;
  color: #e0f7ffcc;
  margin-bottom: 0;
  user-select: none;
}

.top-banner p a#bookNowLink {
  color: #00f9ff;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.top-banner p a#bookNowLink:hover {
  color: #007bff;
  text-decoration: none;
}
 
 .card {
    opacity: 50%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 1%;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.15);
    padding: 5px 5px;
    min-width: 320px;
    /* flex-shrink: 0;    */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
  }

  .card h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.9rem;
    border-bottom: 2px solid #2b00ff;
    padding-bottom: 6px;
    font-weight: 900;
  }

  .card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
  }

  .card ul {
    list-style-type: disc;
    margin-left: 20px;
    color: white;
  }

  .card ul li {
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
  }

  @media (max-width: 400px) {
    .card {
      min-width: 280px;
      padding: 20px 25px;
    }
    .card h2 {
      font-size: 1.5rem;
    }
  }


  .privacy-container {
      max-width: 900px;
      margin: auto;
      background: #ffffff;
      padding: 40px 30px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
    }

    h2 {
      color: #007bff;
      font-weight: bold;
      margin-bottom: 5px;
    }
h3 {
      color: white;
    }
    h4 {
      margin-top: 30px;
      color: #333;
      font-weight: 600;
    }

    p {
      color: #555;
      line-height: 1.7;
    }

    ul {
      padding-left: 20px;
    }

    ul li {
      line-height: 1.6;
      color: #555;
    }

    .contact-section {
      background-color: #f1f1f1;
      padding: 5px;
      margin-top: 0px;
      /* border-left: 4px solid #f1f1f1; */
    }

    .whatsapp-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background-color: transparent;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.whatsapp-button img {
  margin-right: 8px;
}


/* Hero Section */
        .hero {
            background-image: url('your-hero-image.jpg'); /* Replace with your image */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }
        .hero p {
            font-size: 18px;
            max-width: 600px;
        }
        .call-back-form {
            background-color: white;
            color: #333;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: absolute;
            right: 50px;
            top: 50px;
            width: 300px;
        }
        .call-back-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: #222;
  flex-wrap: wrap;
}

.footer div {
  flex: 1;
  min-width: 200px; /* Prevent overlap */
  margin-bottom: 20px;
}

.footer h3 {
  color: white;
  margin-bottom: 10px;
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .footer {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
  }

  .footer div {
    min-width: 100%;
  }
}
