/* Navigation Bar */

/* General Body Styles */
body {
   font-family: Roboto, sans-serif;
  text-align: center; 
  background-color: #FFFFFF; /* Light purple background for the page #F6EAF8 */
  color: #4A4A4A; /* Neutral dark text for readability */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  margin: 0;
  overflow-x: hidden;
    margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */

}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%; /* Matches the table width */
}

td {
    vertical-align: top; /* Aligns content to the top by default */
    text-align: center; /* Centers all content horizontally */
    
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers items horizontally */
    gap: 15px; /* Adds spacing between elements */
	
}

.top-nav {
  background-color: #1e1e1e;
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}


.menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

.menu li a:hover {
  color: #00bfff;
}

/* Intro Strip below navigation */
.intro-strip {
  height: 75vh; /* 75% of viewport height */
  background-color: #white;
  color: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Banner sections */
.banner {
  background-color: #000000;      /* Solid black */
  color: #ffffff;                 /* Bright white text */
  padding: 80px 30px;             /* Generous spacing */
  text-align: center;
  margin-bottom: 60px;            /* White space below */
  border-radius: 8px;             /* Optional: soft edges */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Optional depth */
}

.banner h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.banner p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Optional hover effect for any buttons or links inside */
.banner a {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
}

.banner a:hover {
  text-decoration: underline;
}


.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color:black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #009acd;
}
.header-background {
  height: auto;                   /* Remove fixed height */
  padding: 10px 15px; 
  display: flex;
  justify-content: center;   /* Centers horizontally */
  align-items: center;       /* Centers vertically */
  background-color: #white; /* Black background */
  color: #ffffff;            /* White text */
  text-align: center;
 
}

.rotating-banner {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

.banner-track {
  display: flex;
  animation: scrollBanner 60s linear infinite; /* much slower scroll */
  min-width: 400%; /* wide enough to prevent gaps */
}

.banner-item {
  padding: 0 50px;
  white-space: nowrap;
  display: flex;
  
}
.banner-item img,
.banner-item svg {
  width: 20px;   /* or whatever size you want */
  height: 20px;
  object-fit: contain; /* keeps aspect ratio for images */
  filter: grayscale(100%); /* optional: forces black & white look */
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .rotating-banner {
    font-size: 0.9rem;
    height: 36px;
  }

  .banner-item {
    padding: 0 50px; /* Reduce padding so content fits tighter */
  }

  .banner-track {
    animation: scrollBanner 33.33s linear infinite; /* Slow it down more for mobile */
  }
}

.row-flex {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 20px;
}

.column-flex {
  flex: 1;
  margin: 0 10px;
  background-color: #white;
  color: #black;
  padding: 30px;
  border-radius: 6px;
}

/* Make menu flexible on mobile */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style each item */
.menu li {
  margin: 5px 10px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }

  .menu li {
    margin: 10px 0;
  }
}
.top-header {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  position: relative;
}

.hamburger {
  font-size: 1.8rem;
  cursor: pointer;
  display: none; /* Hidden on desktop */
}

/* Hide menu by default on mobile */
#mobileMenu {
  display: block;
  position: absolute;
  z-index: 999;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #mobileMenu {
    display: none;
    background-color: #000;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
  }

  #mobileMenu ul {
    flex-direction: column;
    align-items: center;
  }

  #mobileMenu li {
    margin: 10px 0;
  }
}


/* Group label + field inline where useful */
.contact-form-field {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.contact-form-field label {
  min-width: 80px;
  margin-right: 0.8rem;
  font-weight: bold;
  color: #555;
}

/* Shared style for inputs, select, textarea, button */
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  transition: border 0.3s ease;
  background-color: #fff;
  color: #333;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #3399ff;
  outline: none;
  background-color: #e6f0ff;
}

/* Submit button styling */
.contact-form button {
  background-color: black;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem;
  transition: background-color 0.3s ease;
  margin-top: 0.3rem;
}

.contact-form button:hover {
  background-color: #009acd;
}
.contact-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.contact-image {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.contact-form {
  flex: 1;
  max-width: 400px;
  min-width: 250px;
  margin: 0 auto 1.5rem;
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.fancy-phone {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #3399ff;
}
a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #89CFF0; /* baby blue */
}

a:visited {
  color: black;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.tech-wizards-section {
  position: relative;
  z-index: 1; /* Make sure it's below nav/footer if they have higher z-index */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow: hidden; /* Contain any spilling child content */
}

.tech-wizards-section img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tech-wizards-section .content {
  flex: 1;
  min-width: 280px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.05);
}
.tech-wizards-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left; /* You can change this to 'justify' if you prefer block alignment */
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-indent: 1rem; /* Creates a clean paragraph indent */
  word-break: break-word; /* Prevents overflow on long words */
}
.pop-image {
  width: 220px; /* Adjust to your desired base size */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.pop-image:hover {
  transform: scale(1.05); /* Makes the image 5% larger */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Optional: adds a glow effect */
  cursor: pointer;
}
@media (max-width: 600px) {
  .contact-image,
  .pop-image {
    width: auto;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .image-container {
    text-align: center;
    padding: 1rem;
    max-width: 100%;
    overflow: hidden;
  }

  form input,
  form select,
  form textarea,
  form button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }
}
.banner-row {
  display: flex;
  justify-content: space-between; /* use space-evenly or space-around for different feels */
  padding: 2rem 1rem;
  background-color: white; /* optional background */
  gap: 1rem;
  flex-wrap: wrap;
}

.image-unit {
  flex: 1 1 22%; /* ensures 4 units fit across */
  text-align: center;
}

.image-unit img {
  width: 25%;
  height: auto;
  margin-bottom: 0.5rem;
}
.pricing-table {
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #fff;
  padding: 2rem;
}

.pricing-table h2, .pricing-table h3 {
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #000;
  padding: 0.75rem;
  text-align: left;
}

.pricing-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
   -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
}

.pricing-table table {
  width: 100%;
  min-width: 600px; /* or whatever minimum width your table needs */
}

@media screen and (max-width: 600px) {
  .pricing-table table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #ccc;
  }

  .pricing-table th {
    background-color: transparent;
    font-weight: bold;
    border: none;
  }

  .pricing-table td {
    border: none;
    padding: 0.5rem;
    position: relative;
  }
}

.image-unit p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}
.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100vw;
  height: 100vh;               /* Full viewport height */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: Contain;
  z-index: 0;
  filter: brightness(70%);
}

.overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  color: #fff;
  text-align: center;
}


.strip-banner {
  background-color: #ffcc00;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 5px;
  color: #222;
}

.stats-bubble {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;
}
.services-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonials-column blockquote {
  width: 90%; /* Slightly smaller than full column width */
  max-width: 500px; /* Keeps it from stretching too wide */
  margin: 1rem auto; /* Centers the blockquote */
  padding: 1rem;
  border: black; /* Black outline */
  border-radius: 8px;
  background-color: #fff;
  font-style: italic;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); /* Optional soft shadow */
}


.services-list {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: black;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  background-color: #ffffff;
  padding: 1rem;
  border-left: 4px solid #0077cc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.trust-badge {
  margin-top: 2rem;
  text-align: center;
}

.trust-badge img {
  width: 80px;
  margin-bottom: 0.5rem;
}

.trust-badge p {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .services-showcase {
    flex-direction: column;
    padding: 1rem;
  }

  .services-column,
  .testimonials-column {
    flex: 1 1 100%;
  }
}
.admin-support-terms {
  background-color: #fff;
  color: #000;
  padding: 2rem;
  border-top: 2px solid #000;
}

.admin-support-terms h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
}

.admin-support-terms ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.admin-support-terms li {
  margin-bottom: 0.5rem;
}
.admin-support-terms {
  background-color: #fff;
  color: #000;
  padding: 2rem;
  border-top: 2px solid #000;
}

.admin-support-terms h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
}

.admin-support-terms ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.admin-support-terms li {
  margin-bottom: 0.5rem;
}
.clean-divider {
  border: none;
  border-top: 1px solid #cccccc; /* Light grey line */
  margin: 2rem 0;                /* Space above and below the line */
}
.styled-divider {
  height: 2px;                          /* A bit thicker than usual */
  background-color: #999999;           /* Medium grey for stronger contrast */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow below */
  margin: 2rem 0;                       /* Nice vertical spacing */
  border-radius: 1px;                  /* Slight roundness for smooth edges */
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #0077cc;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background-color: rgba(0,0,0,0.6);
}
.header-container {
  display: flex;
  justify-content: space-evenly; /* equal spacing */
  align-items: center;
  padding: 1rem;
  background-color: #FFFFFF;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-image {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.logo-tagline {
  color: #222;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 1rem;
  letter-spacing: 0.5px;
}

.time-widget {
  font-size: 1.25rem;
  color: #222;
}
.greeting-widget {
  font-size: 1.25rem;
  color: #222;
 
}
.italic-text {
  font-style: italic;
}
.logo-wrapper {
  width: 33%;
  height: auto;
  max-height: 100px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Removes excess whitespace visually */
}
.services-list li {
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.services-list li:hover {
  transform: translateX(6px);
  color: #0077cc; /* A soft blue or your brand color */
}
.networking-why-section {
  padding: 2rem;
  background-color: #f5f7fb;
  text-align: center;
}

.info-bubbles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.bubble {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.bubble:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.bubble h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #0077cc;
}

.bubble p {
  font-size: 0.95rem;
  color: #555;
}
.bubble ul {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.bubble ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}
.networking-services-merged {
  padding: 2rem;
  background-color: #f8f9fc;
  text-align: center;
  font
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}


.bubble {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.bubble h3 {
  margin-bottom: 0.5rem;
  color: #0057b8;
  font-size: 1.1rem;
}

.bubble p {
  font-size: 0.95rem;
  color: #444;
}
details summary {
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

details[open] ul {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-pitch {
  position: absolute;
  top: 70%;
  left: 10%;
  right: 10%;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero-pitch {
    top: 10%;
    left: 5%;
    right: 5%;
    font-size: 1rem;
    padding: 15px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }
}
.cta-button {
  padding: 12px 20px;
  font-size: 1rem;
}
.hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cta-button {
  padding: 12px 20px;
  font-size: 1rem;
}
ul {
  padding-left: 0;
  list-style-position: inside;
}

li {
  text-align: left;
}
.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.hero-box, .services-box {
  flex: 1 1 400px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.hero-box h1, .services-box h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin: 10px 0;
  font-size: 1.1em;
}
networking-services-merged h2,
.networking-services-merged h3 {
  color: black;
}
.heading-white {
  color: #fff;
  font-weight: bold;
}

.heading-black {
  color: #000;
}
.networking-why-section .bubble h3 {
  color: black;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column; /* Stack logo and other items vertically */
    padding: 0.5rem;
    text-align: center;
  }

  .logo-wrapper {
    width: 100%;             /* Full width on mobile */
    max-height: 80px;        /* Slightly smaller for mobile */
    margin-bottom: 1rem;
  }

  .logo-image {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;     /* Ensures full logo is visible */
  }
}
@media (max-width: 768px) {
  .banner-row {
    justify-content: center; /* Center items on mobile */
    padding: 1rem 0.5rem;
    gap: 1rem;
  }

  .image-unit {
    flex: 1 1 45%; /* Two per row with spacing */
    max-width: 45%;
    margin-bottom: 1rem;
  }
}
html, body {
  overflow-x: hidden;
}
.pos-benefits h2,
.pos-benefits h3 {
  color: #000000 !important;
}
.greeting-section {
  padding: 1rem;
  text-align: center;
}
a.cta-button:link,
a.cta-button:visited {
  color: white;
  text-decoration: none;
}

a.cta-button:hover {
  color: #00ccff; /* Optional: light blue on hover */
  text-decoration: underline;
}

a.cta-button:active {
  color: white;
}
.founder-spotlight {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.spotlight-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.founder-photo img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-text {
  flex: 1;
  min-width: 280px;
}

.founder-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.founder-text em {
  font-style: italic;
  font-size: 18px;
  color: #333;
}









































