/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and base font */
body {
  font-family: Arial, sans-serif;
  color: white;
  background-color: #000;
}

/* Header styles */
header {
  background-color: #000;
  padding: 20px 60px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #00ffe1;
  border-radius: 50%;
  margin-right: 10px;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
  color: #00ffe1;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00ffe1;
}

/* Hero section with background image */
.hero-section {
  height: 100vh;
  width: 100%;
  background: url('homepage\ .png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

/* Hero text aligned left */
.hero-text {
  max-width: 600px;
  color: white;
  text-align: left;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Optional: hide the slider if unused */
.slider {
  display: none;
}

/* Service Section Wrapper */
.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Section Heading */
.services-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.services-title {
  font-size: 2rem;
  color: #1a1a9c;
  margin-bottom: 10px;
}

.services-description {
  font-size: 1rem;
  color: #555;
}

/* Card Container */
.services-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Card */
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Image Placeholders */
.service-image {
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* Assign images here */
.text-nlp-img {
  background-image: url('NLP.jpg');
}

.llm-training-img {
  background-image: url('LLM\ IMMAGES.jpg');
}

.multimodal-labeling-img {
  background-image: url('MULTIMODAL\ LLM.jpg');
}

/* Card Text */
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}/* General Styles */
.testimonial-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Left Side */
.testimonial-left {
  flex: 1;
  min-width: 300px;
}

.testimonial-heading {
  font-size: 1.8rem;
  color: #1a1a9c;
  margin-bottom: 15px;
}

.testimonial-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

/* Right Side */
.testimonial-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Testimonial Card */
.testimonial-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-box.highlight {
  background-color: #b30000;
  color: #fff;
}

.testimonial-box.highlight h4,
.testimonial-box.highlight p,
.testimonial-box.highlight small {
  color: #fff;
}

.client-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}.infrastructure-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.infrastructure-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Left Text Section */
.infrastructure-left {
  flex: 1;
  min-width: 320px;
}

.infra-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a9c;
  margin-bottom: 15px;
}

.infra-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.infra-subtitle {
  font-size: 1.1rem;
  color: #1a1a9c;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 5px;
}

.infra-subdesc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

/* Stats Boxes */
.infra-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-box {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a9c;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.9rem;
  color: #333;
}

/* Right Image Section */
.infrastructure-right {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infra-image {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}/* Base Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

.expertise-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-button {
  padding: 10px 20px;
  border: 2px solid #222;
  border-radius: 30px;
  background: transparent;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background-color: #222;
  color: #fff;
}

/* Tab Content Layout */
.tab-content {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.tab-content.active {
  display: flex;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.content-container.reverse {
  flex-direction: row-reverse;
}

.content-info {
  max-width: 500px;
}

.content-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.content-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.content-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content-info li {
  margin-bottom: 8px;
  color: #333;
}

/* Learn More Button */
.learn-more {
  padding: 10px 25px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #000;
}

/* Image Styles */
.image-box {
  width: 350px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Optional image shape classes */
.wide-rect {
  aspect-ratio: 16/9;
}

.square {
  aspect-ratio: 1/1;
}/* Background color from Services section down */
.services-section,
.use-cases-section,
.about-section,
.footer {
  background-color: #f5fcfe;
}

/* "Our Field of Expertise" title color */
.services-section h2 {
  color: #001f3f; /* Deep navy blue */
}

/* Tab buttons (Image Annotation, NLP, etc.) */
.tab-button {
  background-color: #f0e1f7; /* light background with pink-blue hue */
  color: #9b59b6; /* pink-bluish text */
  border: 2px solid #c850c0; /* pink-bluish border */
  border-radius: 20px;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-button:hover,
.tab-button.active {
  background-color: #c850c0; /* pink-bluish fill */
  color: white;
}

/* "Learn More" button styling */
.learn-more-btn {
  display: inline-block;
  background-color: #c850c0; /* pink-bluish */
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #9b59b6;
}.deep-blue {
  color: #001f3f; /* Deep navy blue */
}.testimonial-box.highlight {
  background-color: #C71585; /* Red violet background */
  border-radius: 10px;
  padding: 20px;
}.expert-section {
  display: flex;
  align-items: center;
  padding: 40px 60px;
  gap: 30px;
}.contact-expert {
  padding: 40px 60px;
  background-color: #f5fcfe;
  color: #0a1a44;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.expert-header h2 {
  font-size: 28px;
  color: #0a1a44; /* Deep navy blue */
}

.expert-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.info strong {
  font-size: 16px;
  color: #0a1a44;
}

.info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #333;
}

.expert-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
}

.expert-content h2 {
  color: #0a1a44;
  font-size: 36px;
  margin-bottom: 5px;
}
.expert-content p {
  color: #777;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  padding: 30px 60px;
  background-color: #f9f9f9;
}

.info-box {
  text-align: center;
}
.info-box .icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #9c27b0;
}
.info-box h4 {
  margin: 5px 0;
  color: #222;
}

.get-in-touch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  background-color: #f3f3f3;
  gap: 60px;
}

.form-image-area {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  background-color: #e0e0e0;
  border-radius: 12px;
}

.form-image-area img {
  width: 80%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.form-content-area {
  flex: 1;
}

.form-content-area h3 {
  color: #0a1a44;
  font-size: 28px;
  margin-bottom: 10px;
}

.form-content-area p {
  margin-bottom: 20px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  height: 100px;
  resize: none;
}

button {
  padding: 12px;
  background-color: #0a1a44;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}.contact-details {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
  }
}/* Container Styling */
.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Heading */
.contact-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

/* Card Container */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.contact-card {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.contact-icon {
  font-size: 40px;
  color: #6c63ff;
  margin-bottom: 15px;
}

/* Text Styling */
.contact-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 16px;
  color: #666;
}.get-in-touch {
  background-color: #F5FCFE;
  padding: 40px 20px;
  border-radius: 10px;
}.logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff; /* Optional background color */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 90%;
  height: auto;
}.brand-name {
  font-size: 2.2rem;      /* Increased font size */
  font-weight: 800;       /* Bolder for better visibility */
  margin-left: 15px;      /* Slight spacing from the circle */
  color: #00ffe1;          /* Deep navy blue or your preferred color */
  font-family: 'Nunito', sans-serif;
}.get-in-touch h3 {
  font-size: 2rem; /* Slightly larger */
  color: #0a2540;  /* Deep navy blue */
  font-weight: 700;
  margin-bottom: 10px;
}.get-in-touch {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  background-color: #F5fcfe;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.get-in-touch .form-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-in-touch .form-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.get-in-touch .form-content {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.get-in-touch h3 {
  font-size: 2rem;
  color: #0a2540;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .get-in-touch {
    flex-direction: column;
    align-items: center;
  }

  .get-in-touch .form-content,
  .get-in-touch .form-image {
    width: 100%;
    text-align: center;
  }

  .get-in-touch .form-content form .row {
    flex-direction: column;
  }

  .get-in-touch .form-content form .row input,
  .get-in-touch .form-content form .row select {
    width: 100%;
    margin-bottom: 10px;
  }

  .get-in-touch .form-content textarea {
    width: 100%;
  }
}/* Newsletter */
.newsletter {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #f4f6f9;
}

.newsletter h2 {
  color: #0a1e5e; /* Deep Navy Blue */
  font-size: 24px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff005c, #b400ff); /* Pinkish red to purple */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.4s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #b400ff, #ff005c);
}

/* Footer */
.main-footer {
  background-color: #0a1e5e;
  color: #fff;
  padding: 60px 30px 30px;
  font-family: sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Footer columns */
.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  padding-top: 20px;
  margin-top: 30px;
  position: relative;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-image-left,
.footer-image-right {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
}

.footer-image-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.footer-image-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
}.main-footer {
  background-color: #f5fcfe;
  /* Footer Background */
.main-footer {
  background-color: #f5fcfe;
  padding: 40px 20px;
}

/* Footer Headings */
.footer-right h4 {
  color: #001f3f; /* Deep navy blue */
}

/* Footer Text */
.main-footer p,
.footer-column ul li,
.footer-left p,
.footer-right ul li,
.footer-bottom p {
  color: #1a1a1a;
}

/* Footer Social Icon Links (if they have anchor tags with no class) */
.footer-left a {
  color: #1a1a1a;
}

/* Footer Bottom Copyright Centered */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}.footer-bottom {
  text-align: center;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
/* Navigation Bar Styles */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #eeeeee;
  border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }
}
