* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.parallax-bg{
	min-height: 100vh;
	background-image: url(Art/SVG/Artboard\ 1.svg);
	background-repeat: no-repeat;
	background-size: 90%;
	background-position: center;
	background-attachment: fixed;
	padding: 50px;
}
.parallax-bg::before {
	content: "";
	position: fixed;
	inset: 0;
	background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.75),
    rgba(0, 0, 0, 0.78)
  );
	pointer-events: none;
	z-index: -1;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.95),
    rgba(0, 0, 0, 0.98)
  );
    color: #222;
}

/* Header */
.top-header {
    background-color: rgb(245, 247, 250, .90);
    padding: 30px 0;
    text-align: center;
	border-radius: 6px;
}

.logo-box img {
    width: 180px;
    height: auto;
}

/* Navbar */
.navbar {
    background-color: rgb(245, 247, 250);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: .75rem 0;
    margin: 0;
}

.navbar li a {
  display: inline-block;
  color: rgb(20, 20, 20);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1.2rem;
  border-radius: 999px;
  transition: 
  transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.navbar li a:hover {
 background: linear-gradient(135deg,rgb(88,101,242),rgb(64,179,255));
 color: #ffffff;
 transform: translateY(-1px);
 box-shadow: 0 6px 16px rgba(88, 101, 242, .3);
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* CTA */

.containerCTA{
  display: flex;
  flex-direction: column;
  align-items: center;
 
  max-width: 520px;
  width: 100%;
  
  padding: 15px;
  background-color: rgb(245, 247, 250);
  border-radius: 6px;
   margin-top: 30px;
  margin-bottom: 20px;
}

.cta-section {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, .00);
  
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
  color: #000000;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgb(88, 101, 242),
    rgb(64, 179, 255)
  );
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
 
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.35);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}




/* Intro */

.intro {
  width: 100%;
  padding: 4rem 1.5rem;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  background-color: rgb(245, 247, 250, .90);
}

.intro-content {
  max-width: 900px;
  text-align: center;
  color: black;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: black;
}



/* askai-origin */

.askai-origin {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 12px;
  background-color: rgb(245, 247, 250, .90);
  align-items: center;
}

/* Image block */
.askai-origin-image {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  background-image: url(Art/MTAG-image.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rbg(230, 232, 235);
}

/* Text block */

.askai-origin-text h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.askai-origin-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 70ch;
}





/* Question Input */
.question-section {
    text-align: center;
    margin-bottom: 40px;
}

#questionInput {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* AI Cards */
.ai-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    width: 320px;
	height: 560px;
	display: grid;
    grid-template-rows: 
	160px
	50px
	30px
	1fr;
	gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ai-card img {
    width: 140px;
	height: 140px;
	object-fit: contain;
    margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
}

.logo-wrap{
	width: 100%;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.chatgpt-logo{
	background-image: url(Art/ChatGPT\ Logo.jpg);
	background-size: 105%;
	border-radius: 12px;
	overflow: hidden;
}
.gemini-logo{
	background-image: url(Art/Gemini\ 1.jpg);
	background-size: 100%;
	border-radius: 12px;
	overflow: hidden;
}
.claude-logo{
	background-image: url(Art/Claude\ 1.jpg);
	background-size: 100%;
	border-radius: 12px;
	overflow: hidden;
}
.logo-wrap img {
	max-width: 160px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	overflow: hidden;
}
.ai-card button {
	height: 44px;
  margin: 0 auto;
  border: none;
  padding: 0 1.4rem;
  background: linear-gradient(135deg,rgb(88,101,242),rgb(64,179,255));
  color: #ffffff;
  transition: 
  transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
	
}

.ai-card button:hover:not(:disabled) {
  transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, .3);
}

.ai-card button:disabled {
    
    cursor: not-allowed;
}

.ai-card button.secondary {
	background: linear-gradient(135deg,rgb(88,101,242),rgb(64,179,255));
}
.ai-card button.secdary:hover {
	background: #444;
}
.answer-label {
    font-weight: bold;
    margin-top: 10px;
}

/* Response Box */
.response-box {
    width:100%;
    height: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow-y: auto;
    background: #fafafa;
}

/* Footer */
 footer {
color: white;
background: #111;
width: 100%;
max-width: 1900px;
position:relative;
bottom: 0px;
text-align: center;

}

.container,
.top-header,
.navbar,
footer{
	position: relative;
	z-index: 2;
}



/* inline-link */
.inline-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* animated underline on hover */
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.inline-link:hover::after {
  transform: scaleX(1);
}


#backToTop {
  position: fixed;
  bottom: 2.5rem;
  right: 3.5rem;

  width: 64px;
  height: 64px;

  
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg,rgb(88,101,242),rgb(64,179,255));
  color: rgb(255, 255, 255);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
}


.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  width: min(90%, 500px);
  background: #111;
  color: #fff;
  border: 2px solid #00f0ff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.popup-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.popup-box p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.popup-box button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}





/* CSS for error report page */

.MainArtBox{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 2rem;
  background-color: rgb(245, 247, 250, .90);
}

.orderform{
  width: 100%;
  max-width: 600px;
}

.orderform form{
  display: flex;
  flex-direction: column;
  gap: .15rem;
  width: 100%;
}

.orderform label{
  text-align: left;
  font-weight: 500;
}

.orderform input{
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  border-radius: 6px;
  
}

.orderform textarea {
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  border-radius: 6px;
  
  resize: vertical;
}

.orderform button{
  margin-top: 1rem;
  padding: .75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  color: #000;
}