/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #fbbf24;
  --light-bg: #e0f2fe;
  --card-bg: #ffffff;
  --dark-text: #1f2937;
  --light-text: #6b7280;
  --border-color: #bae6fd;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --bee-color: #fbbf24;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #031a4d;
  color: var(--dark-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hero .logo-img {
  height: 120px;
  width: 120px;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark-text);
  }

  .hamburger {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(180deg, rgba(3, 24, 77, 0.92), rgba(7, 38, 107, 0.92)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1800&h=1200&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Bee Animation */
.bee-animation {
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #fcd34d);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6), inset -2px -2px 5px rgba(0,0,0,0.2);
  animation: bee-fly 8s infinite ease-in-out;
}

.bee-animation::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 60%;
  background: repeating-linear-gradient(90deg, #1f2937 0px, #1f2937 2px, transparent 2px, transparent 8px);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

.bee-animation::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1f2937;
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 16px 0 #1f2937;
}

.bee-1 {
  animation-delay: 0s;
  animation-duration: 10s;
}

.bee-2 {
  animation-delay: 2s;
  animation-duration: 12s;
  width: 25px;
  height: 25px;
}

.bee-3 {
  animation-delay: 4s;
  animation-duration: 11s;
  width: 28px;
  height: 28px;
}

@keyframes bee-fly {
  0% {
    top: 10%;
    left: 0%;
  }
  25% {
    top: 30%;
    left: 25%;
  }
  50% {
    top: 20%;
    left: 50%;
  }
  75% {
    top: 35%;
    left: 75%;
  }
  100% {
    top: 10%;
    left: 100%;
  }
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid white;
  transition: all 0.3s ease;
}

.animated-logo {
  animation: none;
}

.company-title {
  font-size: 4.5rem !important;
  margin-bottom: 20px;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  animation: none;
}

@keyframes logo-bounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
  }
}

@keyframes title-glow {
  0%, 100% {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 2px 4px 8px rgba(0, 0, 0, 0.2);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-button {
  background-color: var(--secondary-color);
  color: #1f2937;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.cta-button:hover {
  background-color: #fcd34d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
  letter-spacing: 0.5px;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(207, 250, 254, 0.9) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 50px;
  width: 20px;
  height: 20px;
  background: var(--bee-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: bee-float 4s ease-in-out infinite;
}

@keyframes bee-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about-section h2,
.services-section h2,
.portfolio-section h2,
.contact-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark-text);
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.about-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-card:hover .about-image img {
  transform: scale(1.03);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.about-card p {
  color: var(--light-text);
  line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 100%), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50px;
  width: 25px;
  height: 25px;
  background: var(--bee-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: bee-float 5s ease-in-out infinite;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--card-bg) 100%);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-icon {
  padding: 20px 30px 0 30px;
  margin-top: 20px;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: var(--light-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.service-features li:last-child {
  border-bottom: none;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(207, 250, 254, 0.9) 0%, rgba(165, 243, 252, 0.9) 100%), url('https://images.unsplash.com/photo-1460925895917-afdbe43fcc35?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 80px;
  width: 22px;
  height: 22px;
  background: var(--bee-color);
  border-radius: 50%;
  opacity: 0.25;
  /* animation: bee-float 6s ease-in-out infinite; */
}

.portfolio-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-item {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-item h3 {
  padding: 20px 20px 10px;
  color: var(--dark-text);
  font-size: 1.2rem;
}

.portfolio-item p {
  padding: 0 20px 20px;
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}

.chat-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b2447 0%, #0f3f7c 100%);
  color: white;
  position: relative;
}

.chat-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.chat-panel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.chat-messages {
  min-height: 320px;
  max-height: 520px;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  max-width: 80%;
  padding: 16px 20px;
  border-radius: 24px;
  line-height: 1.6;
}

.chat-message.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border-bottom-right-radius: 6px;
}

.chat-message.bot {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  border-bottom-left-radius: 6px;
}

.chat-form {
  display: flex;
  gap: 12px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.12);
}

.chat-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1rem;
}

.chat-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.chat-form button {
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  background: var(--secondary-color);
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-form button:hover {
  transform: translateY(-2px);
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 26px;
  height: 26px;
  background: var(--bee-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: bee-float 7s ease-in-out infinite;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--card-bg) 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.contact-details-wrapper {
  display: grid;
  gap: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark-text);
  background-color: var(--card-bg);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-status {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-status.success {
  color: #10b981;
}

.form-status.error {
  color: #ef4444;
}

/* Contact Info */
.contact-info {
  padding: 20px;
}

.contact-info-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 250px;
}

.info-item:hover {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
}

.info-item:hover {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
}

.info-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--dark-text);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--light-text);
  margin: 4px 0;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.social-links h4 {
  color: var(--dark-text);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: var(--bee-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: bee-float 4s ease-in-out infinite;
}

.footer p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer p:first-child {
  font-weight: 600;
  font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }
.hero-content {
  text-align: center;
  padding: 40px 20px;
}



.hero-subtitle {
  font-size: 22px;
  margin-top: 10px;
}

.hero-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-section,
  .services-section,
  .portfolio-section,
  .contact-section {
    padding: 60px 20px;
  }

  .about-section h2,
  .services-section h2,
  .portfolio-section h2,
  .contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .about-grid,
  .services-grid,
  .portfolio-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .about-card,
  .service-card {
    padding: 25px;
  }

  .service-icon {
    font-size: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-card,
.about-card,
.portfolio-item {
  animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.visible {
  animation: fadeIn 0.6s ease-out;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
}

input, textarea {
  width: 80%;
  margin: 10px;
  padding: 10px;
}
/* CHAT ICON */
#chatIcon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: gold;
  color: black;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 999;
}

/* CHAT BOX */
#chatIcon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: gold;
  color: black;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 999;
}

#miniChatBox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 270px;
  height: 350px;
  background: #111;
  color: white;
  display: none;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  z-index: 999;
}

.mini-header {
  background: gold;
  color: black;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.mini-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 13px;
}

.bot-msg {
  background: #222;
  padding: 6px;
  margin: 5px 0;
  border-radius: 6px;
}

.user-msg {
  text-align: right;
  margin: 5px 0;
}

.mini-input {
  display: flex;
}

.mini-input input {
  flex: 1;
  padding: 8px;
  border: none;
}

.mini-input button {
  background: gold;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.wa-popup {
  position: fixed;
  top: 90px;
  left: 20px;
  background: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 10000;
}

.wa-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 15px;
  border: 8px solid transparent;
  border-bottom-color: white;
}
