/* 
 * AI General Concepts LTD
 * Main Stylesheet
 */

/* Base Styles */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #7c3aed;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --light-bg: #f9fafb;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --section-padding: 5rem 0;
  --border-radius: 0.5rem;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: var(--section-padding);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.logo-text {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 12px;
  letter-spacing: 0.5px;
}

.nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--text-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
  line-height: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: var(--border-radius);
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
}

.service-icon img {
  max-height: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* RAG Section */
.rag-section {
  background-color: var(--white);
}

.rag-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rag-text h3 {
  margin: 2rem 0 1rem;
}

.rag-text h3:first-child {
  margin-top: 0;
}

.benefits-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.rag-diagram {
  text-align: center;
}

/* Implementation Roadmap Section */
.roadmap {
  background-color: var(--light-bg);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.roadmap-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-5px);
}

.roadmap-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0.9;
}

.roadmap-content {
  padding-top: 1rem;
}

.roadmap-content h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.roadmap-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Feature Sections */
.feature-section {
  background-color: var(--white);
  padding: var(--section-padding);
}

.feature-section.alt {
  background-color: var(--light-bg);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-text h3 {
  margin: 2rem 0 1rem;
  color: var(--text-color);
}

.feature-text h3:first-child {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.feature-diagram {
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--white);
  padding: 2rem;
}

.feature-diagram img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-diagram {
    grid-row: 1;
  }
}

/* Case Studies */
.case-studies {
  background-color: var(--light-bg);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.case-study-image {
  height: 220px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.case-study-content {
  padding: 1.5rem;
}

.case-study-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item img {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #10b981;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #ef4444;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-logo p {
  color: #94a3b8;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-nav h4,
.footer-social h4 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-nav ul li {
  margin-bottom: 0.75rem;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content,
  .rag-content,
  .contact-content,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    grid-row: 1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav ul {
    gap: 1rem;
  }

  .nav .btn {
    padding: 0.5rem 1rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .nav {
    display: none; /* Mobile menu toggle would be implemented with JS */
  }
  
  .services-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.omnivox-widget {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.omnivox-widget-container {
    background: transparent !important;
    box-shadow: none !important;
} 