body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fb;
  color: #222;
}
header {
  background: #1a237e;
  color: #fff;
  padding: 0.6rem 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0;
  padding: 0 1rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}
nav a:hover {
  color: #ffb300;
}

header h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 54px;
  width: 236px;
  object-fit: cover;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.hero {
  background: linear-gradient(90deg, #3949ab 60%, #ffb300 100%);
  color: #fff;
  padding: 4rem 0 3rem 0;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-btn {
  display: inline-block;
  background: #ffb300;
  color: #222;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ffa000;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  p {
    text-align: center;
  }
}
section {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(60,60,100,0.07);
}
section h3 {
  color: #1a237e;
  margin-top: 0;
}
.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0 1rem 0;
}
.stat {
  flex: 1 1 100px;
  background: #e3e6fd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.stat .number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3949ab;
}
.stat .desc {
  display: block;
  margin-top: 0.5rem;
  color: #333;
}
.source {
  font-size: 0.9rem;
  color: #888;
}
ul {
  padding-left: 1.2rem;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1rem 0;
}
#contact-form input, #contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
}
#contact-form button {
  background: #3949ab;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-form button:hover {
  background: #1a237e;
}
footer {
  background: #1a237e;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  border-radius: 0 0 10px 10px;
  margin-top: 2rem;
}

/* Bot Showcase Styles */
.bot-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.bot-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.bot-card.whatsapp-bot {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.bot-avatar {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.bot-icon {
  font-size: 2.5rem;
  margin-right: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4caf50;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.bot-info h4 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.bot-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.chat-preview {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.message {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.message:last-child {
  margin-bottom: 0;
}

.message-bubble {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  position: relative;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-message .message-bubble {
  background: rgba(255,255,255,0.2);
  border-bottom-left-radius: 5px;
  align-self: flex-start;
}

.user-message .message-bubble {
  background: rgba(255,255,255,0.3);
  border-bottom-right-radius: 5px;
  align-self: flex-end;
  margin-left: auto;
}

.message-bubble p {
  margin: 0 0 0.3rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.timestamp {
  font-size: 0.7rem;
  opacity: 0.7;
  display: block;
}

.bot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature {
  background: rgba(255,255,255,0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Responsive adjustments for bot showcase */
@media (max-width: 700px) {
  .bot-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bot-card {
    padding: 1.5rem;
  }
  
  .chat-preview {
    padding: 1rem;
  }
  
  .message-bubble {
    max-width: 90%;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 1rem 0.5rem;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Mobile Header Styles */
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  
  /* Show Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Mobile Navigation Menu */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #1a237e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    margin: 1rem 0;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
  }
  
  /* Hide Desktop Navigation */
  nav:not(.nav-menu) {
    display: none;
  }
}

/* Happy Clients Testimonials */
#happy-clients {
  background: #f4f6fd;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(60,60,100,0.07);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: linear-gradient(120deg, #fff 80%, #e3e6fd 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(60,60,100,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(60,60,100,0.15);
  transform: translateY(-4px) scale(1.02);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #3949ab;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '“';
  font-size: 2.5rem;
  color: #ffb300;
  position: absolute;
  left: 0;
  top: -0.5rem;
  line-height: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  font-size: 2rem;
  background: #e3e6fd;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
}

.client-name {
  font-weight: 600;
  color: #1a237e;
  font-size: 1rem;
}

.client-role {
  font-size: 0.92rem;
  color: #666;
  opacity: 0.85;
}

@media (max-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .testimonial-card {
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

/* Reasons to Choose Us Section */
#reasons {
  background: #fff;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(60,60,100,0.07);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reason-card {
  background: linear-gradient(120deg, #e3e6fd 60%, #fff 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(60,60,100,0.06);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.reason-card:hover {
  box-shadow: 0 8px 32px rgba(60,60,100,0.13);
  transform: translateY(-4px) scale(1.03);
}

.reason-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(60,60,100,0.10));
}

.reason-card h4 {
  color: #1a237e;
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.reason-card p {
  color: #444;
  font-size: 0.98rem;
  margin: 0;
  opacity: 0.92;
}

@media (max-width: 700px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .reason-card {
    padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  }
}

/* Main Tagline Styles */
.tagline-wrapper {
  width: 100%;
  background: linear-gradient(90deg, #ffb300 0%, #3949ab 100%);
  padding: 2.2rem 0 1.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 24px rgba(60,60,100,0.08);
  position: relative;
  z-index: 2;
}

.main-tagline {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(60,60,100,0.18), 0 1px 0 #222;
  animation: taglineFadeIn 1.2s cubic-bezier(0.4,0,0.2,1);
}

.main-tagline span {
  background: linear-gradient(90deg, #fff 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 8px rgba(255,179,0,0.18));
}

@keyframes taglineFadeIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
  .main-tagline {
    font-size: 1.4rem;
    padding: 0 0.5rem;
  }
  .tagline-wrapper {
    padding: 1.2rem 0 0.7rem 0;
  }
}

/* About Us Tagline Styles - Enhanced */
.about-tagline {
  margin: 2.5rem 0 0 0;
  padding: 2.2rem 2rem 2.2rem 2.5rem;
  background: linear-gradient(90deg, #f4f6fd 80%, #e3e6fd 100%);
  border-left: 7px solid #ffb300;
  border-radius: 14px;
  font-style: italic;
  font-size: 2.1rem;
  color: #3949ab;
  position: relative;
  box-shadow: 0 4px 24px rgba(60,60,100,0.09);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 110px;
}

.about-tech-img {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.about-tech-img svg {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(60,60,100,0.10));
}

.about-quote-icon {
  font-size: 2.8rem;
  color: #ffb300;
  margin-right: 0.7rem;
  margin-left: -0.7rem;
  line-height: 1;
  font-style: normal;
  opacity: 0.85;
}

.about-tagline-text {
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 700;
  color: #3949ab;
  line-height: 1.15;
  letter-spacing: 1px;
  display: inline-block;
}

.about-tagline-text span {
  font-weight: 900;
  color: #1a237e;
  font-style: normal;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffb300 0%, #3949ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 900px) {
  .about-tagline {
    font-size: 1.3rem;
    padding: 1.2rem 0.7rem 1.2rem 1.2rem;
    gap: 0.7rem;
  }
  .about-tech-img svg {
    width: 40px;
    height: 40px;
  }
  .about-quote-icon {
    font-size: 1.5rem;
    margin-left: -0.3rem;
  }
  .about-tagline-text {
    font-size: 1.3rem;
  }
} 

/* Enhanced Solutions Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-size: 2.2rem;
  color: #1a237e;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #e0e7ff;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e3e6fd, #f3f4ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-header h4 {
  color: #1a237e;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.card-content {
  color: #555;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #fafbff;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.feature-list li:hover {
  background: #f0f4ff;
}

.feature-icon {
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-list strong {
  color: #1a237e;
  margin-right: 0.5rem;
}

.solutions-cta {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: #fff;
  margin-top: 2rem;
}

.cta-content h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-btn-secondary {
  display: inline-block;
  background: #ffb300;
  color: #222;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffb300;
}

.cta-btn-secondary:hover {
  background: transparent;
  color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
}

/* Card-specific hover effects */
.solution-card.ai-solutions:hover .icon-wrapper {
  background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}

.solution-card.website-dev:hover .icon-wrapper {
  background: linear-gradient(135deg, #fff3e0, #fff8e1);
}

.solution-card.enterprise:hover .icon-wrapper {
  background: linear-gradient(135deg, #e3f2fd, #f3f8ff);
}

.solution-card.mobile-apps:hover .icon-wrapper {
  background: linear-gradient(135deg, #f3e5f5, #faf5ff);
}

.solution-card.analytics:hover .icon-wrapper {
  background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
}

.solution-card.security:hover .icon-wrapper {
  background: linear-gradient(135deg, #ffebee, #fff5f5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .solution-card {
    padding: 1.5rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .solution-icon {
    font-size: 1.5rem;
  }
  
  .solutions-cta {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-header h3 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .solution-card {
    padding: 1.25rem;
  }
  
  .feature-list li {
    padding: 0.5rem;
    font-size: 0.95rem;
  }
} 

/* Enhanced Hero Section Styling */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
  color: #fff;
  padding: 1.5rem 0 1rem 0;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 179, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(57, 73, 171, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.title-line {
  display: block;
  color: #fff;
}

.title-highlight {
  display: block;
  background: linear-gradient(45deg, #ffb300, #ffd54f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  margin: 0.15rem 0;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(45deg, #ffb300, #ffd54f);
  color: #1a237e;
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 179, 0, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.2rem;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffb300;
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Visual Section */
.hero-visual-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-content h4 {
  color: #fff;
  margin: 0 0 0.2rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(255, 179, 0, 0.2), rgba(255, 213, 79, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 179, 0, 0.3);
  animation: techPulse 3s ease-in-out infinite;
}

.inner-circle {
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg, #ffb300, #ffd54f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.4);
}

.tech-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes techPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 2rem 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .title-highlight {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 250px;
  }
  
  .hero-features {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .title-highlight {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .tech-circle {
    width: 100px;
    height: 100px;
  }
  
  .inner-circle {
    width: 70px;
    height: 70px;
  }
} 

/* About Highlights Styling */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-item {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3949ab;
  transition: transform 0.2s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
}

.highlight-item h4 {
  color: #1a237e;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.highlight-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Enhanced Footer Styling */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #cfd3ff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: #cfd3ff;
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cfd3ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #ffb300;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #6eadff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffb300;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-feature {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
} 