body {
  background-color: #4682b4;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}


.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.hamburger-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
}

.hamburger-toggle {
  background-color: white;
  color: black;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.hamburger-nav {
  display: none;
  position: absolute;
  top: 0;
  left: 60px; /* opens to the right of the button */
  background-color: white;
  border: 2px;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  min-width: 200px;
}

.hamburger-nav a {
  display: block;
  color: #4682b4;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 16px;
}

.hamburger-nav a:hover {
  color: red;
}

.floating-logo {
  width: 300px;       /* Adjust this value to scale the logo */
  height: auto;  
  position: fixed;
  top: 0;
  left: 1%;
  z-index: 9999;
  animation: floatDown 3s ease-out forwards;
}

@keyframes floatDown {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 20px;
    opacity: 1;
  }
}

.page-wrapper {
  padding-left: 5%;
  padding-right: 5%;
  background-color: white;
  
}

.top-nav {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #00ffd5;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  color: #00ffd5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Header */
.site-header {
  background-color: white;
  padding: 40px 40px;
  text-align: center;
  border-bottom: 4px solid #00ffd5;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
 }
}

.site-header.shrunk {
  padding: 10px 40px;
}

.site-header .logo {
  height: 60px;
}

.site-header.shrunk .logo {
  height: 40px;
}

.site-header .tagline {
  font-size: 22px;
  opacity: 1;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.site-header.shrunk .tagline {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}




.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  height: 400px;
  width: auto;
}

.tagline {
  color: #4682b4;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* Card Row Layout */
.card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px 20px 80px 80px;
}

.card {
  display: flex;
  flex: 1 1 300px; /* grow, shrink, base width */
  flex-direction: row;
  align-items: center;
  background-color: #4682b4;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 90%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.card img {
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffd5;
}

.card:hover img {
  transform: scale(1.05);
}

.text-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  flex: 1;
  transition: opacity 0.3s ease;
}

.card:hover .text-stack {
  opacity: 0.95;
}

.side-text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  color: white;
}

.caption {
  font-size: 18px;
  color: white;
}

.caption ul {
  padding-left: 20px;
  margin: 0;
}

.caption li {
  margin-bottom: 6px;
  list-style-type: "🔹 ";
}


@media (max-width: 768px) {
  .card-row {
    grid-template-columns: 1fr;
    padding: 20px; /* reduce left padding from 80px */
  }

  .card {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 50%;
  }

  .text-stack {
    padding: 20px;
  }
}

/* Pipeline Section */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pipeline-section {
  background-color: #4682b4;
  padding: 60px 100px;
}

.pipeline-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pipeline-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffd5;
}

.pipeline-text {
  flex: 1;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.pipeline-text h2 {
  color: #00ffd5;
  font-size: 28px;
  margin-bottom: 10px;
}

.pipeline-text p {
  margin-bottom: 20px;
}


/* Compass Styles */
.compass-section {
  background-color: #fff;
  padding: 60px 120px;
}

.compass-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.compass-text {
  flex: 1;
  color: #4682b4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.compass-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.compass-text p {
  font-size: 16px;
  line-height: 1.6;
}

.compass-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}


.compass-img {
  width: 75%;                    /* visually zooms in */
  height: auto;
  border-radius: 30%;
  border: 4px solid #4682b4;
  object-fit: cover;              /* fills container without distortion */
  object-position: right right; /* focuses on the right side of the image */
  transition: transform 0.3s ease;
  transform-origin: right center; /* zoom expands from the right */
  }



/* Mobile */
@media (max-width: 768px) {
  .compass-content {
    flex-direction: column;
    text-align: center;
  }

  .compass-img {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .compass-text {
    padding: 0 10px;
  }
}




















/* Bot Agency Styles */

.bot-agency {
  background-color: #4682b4;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  align-items: center;
}

.bot-agency-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.bot-cards {
  display: flex;
  justify-content: left;
  gap: 40px;
  flex-wrap: wrap;
}

.bot-card {
  background-color: #4682b4;
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  flex: 1 1 300px; /* grow, shrink, base width */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bot-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.bot-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #00ffd5;
}

.bot-card p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .bot-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }

  .bot-card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    flex: none;
  }

  .bot-img {
    margin: 0 auto 20px;
  }

  .bot-card ul {
    padding-left: 0;
    list-style-position: inside;
    text-align: left;
  }
}






/* Meet Exie Styles */


.meet-exie {
  background-color: #4697b4;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.meet-exie-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.meet-exie-img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 4px solid #00ffd5;
}

.meet-exie-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .meet-exie-img {
    width: 160px;
    height: 160px;
  }

  .meet-exie-text {
    padding: 0 10px;
  }
}

.exie-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background-color: #fff;
  border: 4px solid #00ffd5;
  color: #4697b4;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.exie-button:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}










/* Automation Servcices */
.automation-services {
  background-color: #46b4a3;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.automation-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.automation-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.automation-card {
  background-color: #46b4a3;
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.automation-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.automation-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffd5;
  margin-bottom: 20px;
}

.automation-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .automation-cards {
    flex-direction: column;
    align-items: center;
  }

  .automation-card {
    max-width: 90%;
  }
}



/* Footer  */


.site-footer {
  background-color: #4682b4;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #00ffd5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-note {
  font-size: 14px;
  color: #aaa;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  color: #00ffd5;
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}



/* Use cases */

.use-case-section {
  background-color: #4682b4;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.use-case-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.use-case-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.use-case-card {
  background-color: #4682b4;
  border-radius: 16px;
  padding: 20px;
  width: calc(30% - 40px); /* Two cards per row with gap accounted */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.use-case-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.use-case-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffd5;
  margin-bottom: 20px;
  text-align: center;
}

.use-case-card p,
.use-case-card ul {
  text-align: left;
  width: 100%;
}
.use-case-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .use-case-grid {
    flex-direction: column;
    align-items: center;
  }

  .use-case-card {
    max-width: 90%;
  }
}


@media (max-width: 768px) {
  .use-case-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .use-case-card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    flex: none;
    text-align: center;
  }

  .use-case-img {
    margin: 0 auto 20px;
  }

  .use-case-card ul {
    padding-left: 0;
    list-style-position: inside;
    text-align: left;
  }
}




/* About Us */

.about-us-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.about-us-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.about-us-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-us-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-us-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00ffd5;
  margin-bottom: 20px;
}

.about-us-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  width: 100%;
}

.about-us-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-us-button {
  padding: 12px 24px;
  background-color: #4682b4;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-us-button:hover {
  background-color: #315f8c;
  transform: scale(1.05);
}
/* Mobile */
@media (max-width: 768px) {
  .about-us-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-us-card {
    max-width: 90%;
  }
}s





/* Pricing Styles */

.pricing-section {
  background-color: #4682b4;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  width: 100%;
  display: block;
}

.pricing-subtext,
.pricing-bottom-text {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #fff;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: #4682b4;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.pricing-setup,
.pricing-monthly {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-card ul {
  padding-left: 20px;
  margin-top: 10px;
  text-align: left;
  list-style-type: none;
}

.pricing-card li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #fff;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-button {
  padding: 12px 24px;
  background-color: #fff;
  color: #4682b4;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 200px;
  text-align: center;
}

.pricing-button:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

.pricing-button.primary {
  background-color: #00ffd5;
  color: #000;
}

.pricing-button.primary:hover {
  background-color: #00c0a0;
}



/* Mobile */
@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}









/* Appointment Styles */
.appointment-section {
  background-color: #4682b4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  color: #fff;
}

.appointment-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}
.appointment-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appointment-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.appointment-text-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appointment-text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appointment-text h2 {
  font-size: 32px;
  margin: 0;
}

.appointment-text h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.appointment-text p {
  font-size: 16px;
  line-height: 1.6;
}

.appointment-btn {
  background-color: #fff;
  color: #4682b4;
  padding: 10px 20px;         /* smaller size */
  font-size: 14px;            /* smaller text */
  border-radius: 6px;
  border: 4px solid #00ffd5;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  width: fit-content;         /* keeps it tight */
  margin-top: 10px;
  align-items: center; /* centers the button and text */
  text-align: center;
}
.appointment-btn:hover {
  background-color: #e0e0e0;
}

/* Mobile */
@media (max-width: 768px) {
  .appointment-content {
    flex-direction: column;
    text-align: center;
  }

  .appointment-img {
    max-width: 300px;
  }

  .appointment-text-block {
    padding: 20px 0;
  }

  .appointment-text {
    align-items: center;
  }
}




/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  text-align: center;
}

.close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .card-row {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
  }

  .tagline {
    font-size: 20px;
    text-align: center;
  }

  .card {
    flex-direction: column;
    text-align: center;
  }

  .card img {
    width: 60%;
    border-radius: 12px 12px 0 0;
  }

  .text-stack {
    padding: 16px;
  }

  .caption ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .pipeline-content {
    flex-direction: column;
    text-align: center;
  }

  .pipeline-img {
    width: 80%;
    margin-bottom: 20px;
  }

  .pipeline-text {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .pipeline-section,
  .bot-agency,
  .automation-services {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .bot-img,
  .automation-img {
    width: 60%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    margin: 20% auto;
    padding: 20px;
  }
}

.mobile-padding {
  padding-left: 20px;
  padding-right: 20px;
}