/* Creative Display Section */
.creative-display-section {
  padding: 2rem 0 3rem 0; /* Reduced top padding for less gap */
  text-align: center;
  background: none;
}
.creative-display-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b4fb, #407dec, #db31cf, #fe727d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.creative-display-slider {
  position: relative;
  width: 90vw;
  max-width: 1280px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(6, 180, 251, 0.13);
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: perspective(1200px) translateY(60%) rotateX(60deg) scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(2px) grayscale(60%) brightness(0.8);
  backface-visibility: hidden;
}
.creative-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: perspective(1200px) translateY(0) rotateX(0deg) scale(1);
  filter: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.creative-slide.prev {
  opacity: 0;
  z-index: 1;
  transform: perspective(1200px) translateY(-60%) rotateX(-60deg) scale(0.92);
  filter: blur(2px) grayscale(60%) brightness(0.8);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.creative-display-desc {
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =======================
   Portfolio Section
======================= */
.portfolio-section {
  width: 100%;
  padding: 4rem 0 3rem 0;
  background: none;
  text-align: center;
}

.portfolio-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #06b4fb, #db31cf, #fe727d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.portfolio-description {
  font-size: 1.2rem;
  color: var(--color-white, #fff);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  padding: 0 2rem;
}

.portfolio-item {
  background: #181818;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6, 180, 251, 0.09);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* changed from center to stretch */
  text-decoration: none;
  position: relative;
}
.portfolio-item:hover,
.portfolio-item:focus {
  transform: translateY(-8px) scale(1.03);
  /* box-shadow removed as requested */
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  background: #222;
  border-radius: 0.7rem 0.7rem 0 0;
}
.portfolio-item:hover img,
.portfolio-item:focus img {
  transform: scale(1.05);
}
.portfolio-item span {
  display: block;
  width: 100%; /* ensures gradient matches image width */
  box-sizing: border-box;
  padding: 1rem 0.5rem 0.7rem 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #06b4fb, #db31cf, #fe727d);
  border-radius: 0 0 0.7rem 0.7rem;
  margin: 0; /* remove any default margin */
  text-align: center;
}

.portfolio-cta {
  margin-top: 1.5rem;
}
.portfolio-view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #06b4fb, #db31cf 80%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 24px rgba(6, 180, 251, 0.09);
}
.portfolio-view-more-btn:hover,
.portfolio-view-more-btn:focus {
  background: linear-gradient(135deg, #db31cf, #06b4fb 80%);
  color: #fff;
}

/* Video Display Section */
.video-display-section {
  padding: 3rem 0 2rem 0;
  background: none;
  text-align: center;
}
.video-display-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #06b4fb, #db31cf, #fe727d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.video-scroll-wrapper {
  overflow-x: hidden; /* Hide the scrollbar */
  padding-bottom: 1rem;
  cursor: grab;
  user-select: none;
}
.video-scroll-wrapper:active {
  cursor: grabbing;
}
.video-list {
  display: flex;
  gap: 2rem;
  min-width: 900px;
  padding: 0 1rem;
  align-items: center;
  /* Remove scrollbars for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.video-list::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
.video-item {
  flex: 0 0 960px; /* doubled from 480px */
  max-width: 960px; /* doubled from 480px */
  position: relative;
  aspect-ratio: 16/9;
  background: #181818;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6, 180, 251, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 1rem;
  background: #000;
  pointer-events: none; /* Prevent interaction until playing */
}
.video-frame.playing iframe {
  pointer-events: auto; /* Allow interaction when playing */
}
.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  background: rgba(6, 180, 251, 0.85);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn::before {
  content: "";
  display: block;
  margin-left: 10px;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #fff;
}
.video-frame.playing .video-play-btn {
  display: none;
}
@media (max-width: 900px) {
  .video-item {
    flex: 0 0 480px; /* doubled from 240px */
    max-width: 480px; /* doubled from 240px */
  }
  .video-list {
    gap: 1rem;
    min-width: 0;
  }
  .video-display-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1400px) {
  .creative-display-slider {
    max-width: 1000px;
    height: 500px;
  }
}
@media (max-width: 900px) {
  .creative-display-slider {
    max-width: 95vw;
    height: 300px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .portfolio-item img {
    height: 110px;
  }
  /* Make portfolio h1 and p match other sections on small screens */
  .portfolio-title {
    font-size: 3.5rem;
  }
  .portfolio-description {
    font-size: 1.5rem;
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .creative-display-slider {
    height: 200px;
    border-radius: 0.8rem;
  }
  .creative-display-section h1 {
    font-size: 3rem;
  }
  .creative-display-desc {
    font-size: 2rem;
    max-width: 95vw;
  }
  /* Make portfolio h1 and p match other sections on extra small screens */
  .portfolio-title {
    font-size: 3rem;
  }
  .portfolio-description {
    font-size: 2rem;
    max-width: 95vw;
  }
}

/* --- Modern Glassmorphism About Section --- */
.about-section {
  background: none;
  padding: 80px 0 60px 0;
  color: #fff;
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 auto 40px auto; /* or your preferred bottom margin */
  max-width: 1100px;
  box-shadow: none; /* Remove box-shadow */
  backdrop-filter: blur(8px);
}
.about-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
  background: linear-gradient(90deg, #06b4fb 0%, #db31cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
}
.about-description {
  flex: 2 1 0;
  margin: 0;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 44px;
  width: 100%;
}

.about-highlights {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex: 2 1 0;
  padding: 0 18px 0 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
}

.about-highlight {
  flex: 1 1 0;
  background: none;
  border: none; /* Remove border */
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  color: #e3e8f0;
  /* border-left: 4px solid #06b4fb;  Remove this line */
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}
.about-highlight h3 {
  margin-top: 0;
  color: #06b4fb;
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.about-highlight p {
  margin: 0;
  color: #e3e8f0;
  font-size: 1.01rem;
  line-height: 1.6;
}
.about-highlight:hover {
  /* border-left: 4px solid #db31cf; Remove this line */
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    gap: 18px;
  }
  .about-description,
  .about-highlights {
    padding: 0 8px;
  }
  .about-highlights {
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }
  .about-highlight {
    min-height: 100px;
    padding: 0 8px;
  }
}
@media (max-width: 700px) {
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-highlight {
    min-height: 100px;
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 28px 0 18px 0;
    border-radius: 0.8rem;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-description {
    font-size: 1rem;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
  .about-highlights {
    flex-direction: column;
    gap: 12px;
  }
  .about-highlight {
    max-width: 100vw;
    min-width: 0;
    padding: 18px 10px 14px 10px;
  }
}

/* --- Modern Team Grid with Glassmorphism --- */
.team-title {
  font-size: 2rem;
  margin: 48px 0 28px 0;
  text-align: center;
  color: #0a6cf1;
  font-weight: 700;
  letter-spacing: 1px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 340px;
  cursor: pointer;
}

.team-member img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/* Hide text by default, show on hover with gradient background */
.team-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b4fb 0%, #db31cf 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.35s, transform 0.35s;
  text-align: center;
  padding: 32px 16px;
}

/* Show overlay on .show-info */
.team-member.show-info .team-info {
  opacity: 0.97;
  pointer-events: auto;
  transform: translateY(0);
}

/* Animate text inside overlay */
.team-info * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s 0.1s, transform 0.4s 0.1s;
}
.team-member.show-info .team-info * {
  opacity: 1;
  transform: translateY(0);
}

.team-info h4,
.team-info p {
  margin: 0;
  padding: 0;
  color: #fff;
  /* Remove text shadow */
  text-shadow: none;
}

.team-info h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.team-info p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.92;
}

/* Hide text by default */
.team-info * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s 0.1s, transform 0.4s 0.1s;
}

/* Animate text in on hover */
.team-member:hover .team-info *,
.team-member:focus .team-info * {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .team-member,
  .team-info {
    min-height: unset;
    border-radius: 1rem;
  }
  .team-member img {
    min-height: unset;
    height: auto;
    aspect-ratio: 3/4;
    position: static;
    border-radius: 1rem;
    width: 100%;
    object-fit: cover;
    display: block;
  }
}
/* Modern Footer Styles */
.footer-section {
  /* Use the requested background color and more horizontal space */
  background: #292833;
  color: #fff;
  padding: 56px 0 0 0;
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  box-shadow: 0 -8px 32px rgba(6, 180, 251, 0.13);
  position: relative;
  overflow: hidden;
  margin-left: 8vw;
  margin-right: 8vw;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Ensure all columns align at the top */
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 40px 48px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 2rem 2rem 0 0;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.footer-logo {
  display: flex;
  align-items: flex-start; /* Top align the logo */
  justify-content: flex-start;
  min-width: 60px;
  margin-bottom: 18px;
}
.footer-logo img {
  /* Remove all previous styles for the logo image */
  all: unset;
  display: block;
  width: 200px;
  height: auto;
  aspect-ratio: 1 / 1;
  /* Ensures the logo is always proportional and not squished */
  object-fit: contain;
}

/* Responsive: keep logo size same as navbar on mobile */
@media (max-width: 600px) {
  .footer-logo img {
    width: 36px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.footer-links,
.footer-contact {
  min-width: 180px;
  margin-bottom: 18px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, #06b4fb 0%, #db31cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 0.5px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.7rem;
}
.footer-links ul li a {
  color: #e3e8f0;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: color 0.2s, letter-spacing 0.2s;
  letter-spacing: 0.2px;
  position: relative;
}
.footer-links ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #06b4fb 0%, #db31cf 100%);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.footer-links ul li a:hover {
  color: #06b4fb;
  opacity: 1;
  letter-spacing: 1px;
}
.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-contact p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 1.2rem;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #06b4fb 0%, #db31cf 100%);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(6, 180, 251, 0.13);
}
.footer-social a:hover {
  background: #fff;
  color: #06b4fb;
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 4px 24px #db31cf44;
}

.footer-form {
  margin-top: 1.5rem;
  display: flex;
  gap: 10px;
}
.footer-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(6, 180, 251, 0.07);
}
.footer-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px #06b4fb55;
}
.footer-form input[type="email"]::placeholder {
  color: #e3e8f0;
  opacity: 0.7;
}
.footer-form button {
  background: linear-gradient(90deg, #06b4fb 0%, #db31cf 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(6, 180, 251, 0.07);
}
.footer-form button:hover {
  background: #fff;
  color: #06b4fb;
  box-shadow: 0 4px 24px #db31cf44;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 18px 0;
  text-align: center;
  color: #e3e8f0;
  font-size: 1rem;
  background: transparent;
  margin-top: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}
.footer-policy-links {
  margin-top: 6px;
}
.footer-policy-links a {
  color: #e3e8f0;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
  opacity: 0.8;
}
.footer-policy-links a:hover {
  color: #db31cf;
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-container {
    padding: 0 24px 32px 24px;
    gap: 32px;
  }
  .footer-section {
    margin-left: 2vw;
    margin-right: 2vw;
  }
}
@media (max-width: 700px) {
  .footer-section {
    border-radius: 1.2rem 1.2rem 0 0;
    padding: 24px 0 0 0;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 8px 18px 8px;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  .footer-logo img {
    width: 38px;
    height: 38px;
  }
}

/* Rove Chat Bot Styles */
.rove-chatbot {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
}
.rove-chatbot-toggle {
  background: linear-gradient(90deg, #0a6cf1 0%, #ff5e62 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  box-shadow: 0 4px 24px rgba(10, 108, 241, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.rove-chatbot-toggle:hover {
  background: #fff;
  color: #0a6cf1;
  transform: scale(1.08);
}
.rove-chatbot-window {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 340px;
  max-width: 95vw;
  height: 420px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(10, 108, 241, 0.18);
  overflow: hidden;
  border: 1.5px solid #0a6cf1;
  animation: chatbot-pop 0.25s;
}
@keyframes chatbot-pop {
  0% {
    transform: scale(0.7) translateY(40px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.rove-chatbot-header {
  background: linear-gradient(90deg, #0a6cf1 0%, #ff5e62 100%);
  color: #fff;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rove-chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.2s;
}
.rove-chatbot-close:hover {
  color: #232946;
}
.rove-chatbot-messages {
  flex: 1;
  padding: 18px 16px;
  overflow-y: auto;
  background: #f7fafd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rove-chatbot-message {
  padding: 10px 14px;
  border-radius: 1.1rem;
  max-width: 80%;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
  box-shadow: 0 2px 8px rgba(10, 108, 241, 0.06);
}
.rove-chatbot-message-bot {
  background: #eaf2fb;
  color: #0a6cf1;
  align-self: flex-start;
}
.rove-chatbot-message-user {
  background: linear-gradient(90deg, #0a6cf1 0%, #ff5e62 100%);
  color: #fff;
  align-self: flex-end;
}
.rove-chatbot-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #e3e8f0;
}
.rove-chatbot-form input {
  flex: 1;
  border: 1.5px solid #0a6cf1;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}
.rove-chatbot-form input:focus {
  border-color: #ff5e62;
}
.rove-chatbot-form button {
  background: linear-gradient(90deg, #0a6cf1 0%, #ff5e62 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rove-chatbot-form button:hover {
  background: #0a6cf1;
  color: #fff;
}
@media (max-width: 600px) {
  .rove-chatbot {
    right: 10px;
    bottom: 10px;
  }
  .rove-chatbot-window {
    width: 98vw;
    min-width: 0;
    right: -10px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px 24px 16px;
  }
  .footer-section {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 600px) {
  .footer-section {
    border-radius: 1.2rem 1.2rem 0 0;
    padding: 24px 0 0 0;
  }
  .footer-container {
    gap: 18px;
    padding: 0 6px 18px 6px;
  }
  .footer-logo img {
    width: 18vw;
    min-width: 32px;
    max-width: 48px;
    border-radius: 0; /* No rounding on mobile too */
  }
}

/* Keep the footer gray */

/* Limit the gradient to not go past the about section */
.about-section {
  position: relative;
  z-index: 1;
  background: none; /* Remove any background */
}
