body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #111;
  color: #f1f1f1;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: #000;
  border-bottom: 1px solid #333;
}

.logo {
  font-weight: bold;
  font-size: 1.3em;
  color: #ff9800;
}

nav a {
  margin: 0 1em;
  text-decoration: none;
  color: #f1f1f1;
}

nav a:hover {
  color: #ff9800;
}


.hero {
  text-align: center;
  padding: 3em 1em;
  background: #1a1a1a;
}

.hero h1 {
  font-size: 2em;
  color: #ff9800;
}

.hero p {
  font-size: 1.2em;
}


.btn {
  background-color: #ff9800;
  color: #000;
  padding: 0.7em 1.2em;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  margin-top: 1em;
  font-weight: bold;
}

.btn:hover {
  background-color: #ffa733;
}


.about {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2em;
  flex-wrap: wrap;
  background: #000;
}


.about-text ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.services {
  padding: 2em;
  text-align: center;
  background: #1a1a1a;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1em;
}

.service-card img {
  height: 120px; 
  width: 65%;
  object-fit: contain; 
  border-radius: 8px;
}


.card {
  border: 1px solid #333;
  padding: 1em;
  width: 200px;
  border-radius: 8px;
  background: #222;
  color: #f1f1f1;
}

.connect {
  text-align: center;
  padding: 2em;
  background: #111;
}

.socials {
  margin-top: 1em;
}

.social-icon {
  font-size: 1.8em;
  margin: 0 15px;
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff9800;
}


.contact {
  padding: 2em;
  text-align: center;
  background: #000;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #f1f1f1;
  border-radius: 5px;
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

footer {
  text-align: center;
  padding: 1em;
  background: #111;
  color: #888;
  margin-top: 2em;
}
.service-icon {
  font-size: 3em;
  color: #ff9800;
  margin-bottom: 0.5em;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.about-intro {
  max-width: 800px;
  margin: auto;
  padding: 2em;
  background: #111;
  color: #f1f1f1;
  border-left: 5px solid #ff9800;
}

.about-intro h2 {
  color: #ff9800;
  margin-bottom: 1em;
  font-size: 1.8em;
}

.about-intro p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  font-size: 1.05em;
}

.about-hero, .services-hero {
  background-color: #1a1a1a;
  text-align: center;
  padding: 3em 1em;
  color: #ff9800;
}

.about-hero h1,
.services-hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
}

.about-hero p,
.services-hero p {
  font-size: 1.2em;
  color: #f1f1f1;
}



.about-content ul {
  list-style-type: none;
  padding-left: 0;
}

.about-content li {
  margin-bottom: 0.8em;
  font-size: 1.1em;
}
.quote-block {
  background: #111;
  color: #ff9800;
  font-style: italic;
  text-align: center;
  padding: 2em 1em;
  font-size: 1.3em;
}
.timeline {
  background: #1a1a1a;
  padding: 2em;
  color: #f1f1f1;
}

.timeline h2 {
  text-align: center;
  color: #ff9800;
  margin-bottom: 1em;
}

.milestone {
  margin: 1em auto;
  max-width: 600px;
  background: #222;
  padding: 1em;
  border-left: 4px solid #ff9800;
  font-size: 1.05em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  padding: 2em;
  background: #000;
}

.service-card {
  background: #1a1a1a;
  padding: 2em 1.5em;
  border: 1px solid #333;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #ff9800;
}

.service-card h3 {
  margin-top: 0.5em;
  color: #ff9800;
}

.service-card p {
  font-size: 0.95em;
  color: #ccc;
}

.faq a:visited {
  color: #ff9800;       
}

.faq {
  padding: 4em 2em;
  background: #111;
  color: #f1f1f1;
}

.faq h2 {
  text-align: center;
  color: #ff9800;
  font-size: 2em;
  margin-bottom: 2em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: auto;
}

.faq-item {
  background: #1a1a1a;
  padding: 2em;
  border-radius: 10px;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.1);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: #ff9800;
}

.faq-item h3 {
  color: #ff9800;
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.faq-item p {
  color: #ddd;
  line-height: 1.6;
}

.faq-item a {
  color: #ff9800;
  text-decoration: underline;
}


.about-text h2 {
  color: #ff9800;
  margin-bottom: 0.5em;
}

.about-text ul {
  list-style-type: none;
  padding-left: 0;
}

.about-text li {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  color: #f1f1f1;
}

.service-image {
  margin-top: 1em;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ff9800;
}
footer .designed-by {
  text-align: center;
  font-size: 0.9em;
  color: #ff9800;
  margin-top: 1em;
}
blockquote {
  font-size: 1.2em;
  font-style: italic;
  color: #ff9800;
  text-align: center;
  margin: 1em auto;
  max-width: 700px;
  padding: 0.5em;
  line-height: 1.4;
}

blockquote footer {
  font-style: italic;
  color: #999;
  margin-top: 0.3em;
  font-size: 1em;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 3em 1em;
  background-color: #000;
}

.about-photo-wrapper {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 15px;
  border: 4px solid #ff9800;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-highlight {
  background: #000;
  padding: 3em 1em;
}

.about-highlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;
}


.highlight-image {
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #ff9800;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

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

.highlight-image:hover img {
  transform: scale(1.11);
}

.highlight-text {
  max-width: 500px;
  text-align: center;
}

.highlight-text h1 {
  font-size: 2.5em;
  color: #ff9800;
  margin-bottom: 0.5em;
}

.highlight-text p {
  font-size: 1.2em;
  color: #ddd;
}


.about-image {
  flex: 1 1 220px;
  max-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #ff9800;
  object-fit: cover;
}
.about-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;
  padding: 2em;
  background-color: #000;
}
.about-text {
  flex: 2 1 300px;
  text-align: center;
  padding: 1em;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2em;
  gap: 2em;
  background-color: #000;
}
.face-center {
  transform: scaleX(-1); 
}

.designed-by a {
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
}

.designed-by a:hover {
  text-decoration: underline;
}


#chatbot-icon, #chatbot-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#chatbot-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}


#chatbot-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#chatbot-window {
  display: none; 
  flex-direction: column;
  width: 300px;
  height: 400px;
   overflow-y: auto;     
  overflow-x: hidden; 
  background: #0f0303;
  border: 2px solid orange;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 70px; 
}

#chatbot-messages {
  max-height: 400px;   
  overflow-y: auto;
  padding: 10px;
}

#chatbot-header {
  background: #ff9800;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #000;
  cursor: grab;

}
#chatbot-input{
  flex:1; padding:10px; border:1px solid #333; border-radius:6px;
  background:#1a1a1a; color:#fff; box-sizing:border-box; outline:none;
}
#chatbot-send{
  padding:10px 14px; border:none; border-radius:6px; cursor:pointer;
  background:#ff9800; color:#000; font-weight:700;
}
#chatbot-send:active{ transform: translateY(1px); }
#chatbot-messages .user {
  color: #ff9800;  
  font-weight: bold;
}

#chatbot-messages .bot {
  color: #fff;      
}

.quiz-section {
  --accent: #ffa51a;         
  --card-bg: rgba(255,255,255,0.06);
  --card-bd: rgba(255,255,255,0.12);
  --text: #fff;
  max-width: 760px;
  margin: 40px auto;
  padding: 0 16px;
  color: var(--text);
}

.quiz-toggle {
  border-radius: 999px;
  padding: 10px 16px;
}

.quiz-form {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .5s ease, opacity .35s ease, transform .4s ease;
  margin-top: 10px;
}

.quiz-section.open .quiz-form {
  max-height: 2000px;     
  opacity: 1;
  transform: translateY(0);
}

.quiz-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 16px;
  margin: 14px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.quiz-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--card-bd);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}

.option:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option span { flex: 1; }

.option:has(input:checked) {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(255,165,26,.35);
}

.quiz-submit {
  width: 100%;
  margin-top: 6px;
  border-radius: 12px;
}

.quiz-result {
  margin-top: 14px;
  font-weight: 700;
  background: rgba(255,165,26,.12);
  border: 1px dashed rgba(255,165,26,.6);
  color: #ffd39a;
  padding: 12px 14px;
  border-radius: 12px;
  display: none;
}

.quiz-result.show { display: block; }
