:root {
  --primary: #fdd835;
  --dark: #1c1c1c;
  --light: #ffffff;
  --gray: #bdbdbd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

header {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

nav a {
  margin-left: 32px;
  color: var(--light);
  font-weight: 500;
}

.cta-btn {
  background: var(--primary);
  color: #000;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 120px 80px;
  max-width: 1200px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
}

.section {
  /*padding: 100px 80px;*/
  padding: 60px 80px 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #f9d548;
    position: relative;
    width: auto;
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.section h2:after {
    content: '';
    width: 100px;
    height: 5px;
    background: #f9d548;
    display: block;
    position: absolute;
    right: 0;
}

.section ul {
    padding-left: 50px;
	color: var(--gray);
}

.section ul li b {
	color: #fff;
}

.section p {
  color: var(--gray);
  max-width: 1190px;
}

.section .chatbot_capabilities_section {
    margin-bottom: 40px;
}
.section .chatbot_capabilities_section h3 {
	margin-bottom: 20px;
}
.section .chatbot_capabilities_section ul {
    margin: 20px 0;
    display: block;
}

.section .our_implementation_process_list li {
    margin: 30px 0;
}

.section .our_implementation_process_list li b {
    color: #fff;
    padding-bottom: 10px;
    float: left;
    width: 100%;
}

.section .use_cases_by_industry b,
.section .faq b {
	color: #fff;
}

.services {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
  gap: 32px;
  margin-top: 28px;
}

.box_design {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 28px;
}
.services_design {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  margin-top: 28px;	
}
.card {
  background: #242424;
  padding: 22px;
  border-radius: 12px;
  transition: 
        background 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
border: 1px dotted var(--gray);
max-width: 100%;
border-radius: 20px;	
text-align: center;	
}

.card:hover {
  /*transform: translateY(-6px);*/
	background: #0707085e;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 7px 7px rgba(250, 197, 21, 0.35);
}

footer {
  padding: 60px 80px;
  border-top: 1px solid #333;
  text-align: center;
  color: var(--gray);
}

form {
  max-width: 600px;
  margin-top: 40px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: none;
}

@media (max-width: 768px) {
  header, .hero, .section, footer {
    padding: 40px 24px;
  }
  .hero h1 {
    font-size: 38px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(253,216,53,0.15), transparent 60%);
  animation: pulse 6s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.4; }
  to { opacity: 0.8; }
}

.hero h1 {
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
