:root {
  --primary: #03BFB3;
  --dark: #0B1F26;
  --darker: #164554;
  --gray-600: #666666;
  --light-bg: #F4F7F8;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #333;
}

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

/* Main Background */
.main-gradient {
  background: linear-gradient(to bottom, var(--dark), var(--darker));
  min-height: 100vh;
}

/* Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 38, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.logo span {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
      display: flex;
      gap: 2rem;
  }
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: white;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: rgba(0, 191, 179, 0.9);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-icon-wrapper {
  margin-bottom: 2rem;
}

.hero-icon {
  width: 6rem;
  height: 6rem;
  color: var(--primary);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styles */
.section {
  padding: 5rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 3rem;
  font-weight: bold;
}

/* Background Colors */
.bg-white {
  background-color: #FFFFFF;
}

.bg-light {
  background-color: #F4F7F8;
}

/* Why Choose Section Styles */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;  /* Reduced from 2rem default card padding */
}

.feature-card .card-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;  /* Reduced from 1.5rem */
  height: 3.5rem;  /* Reduced from 4rem */
}

.feature-card .card-icon {
  width: 2.5rem;  /* Reduced from 3rem */
  height: 2.5rem;  /* Reduced from 3rem */
  color: var(--primary);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);  /* Reduced from -5px */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);  /* Slightly reduced shadow */
}

.feature-card:hover .card-icon {
  transform: scale(1.1);
}

.feature-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card .card-content p {
  color: var(--gray-600);
  font-size: 0.9rem;  /* Slightly reduced from 0.95rem */
  line-height: 1.5;  /* Slightly reduced from 1.6 */
  margin: 0;
}

@media (max-width: 1023px) {
  .grid-4 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .grid-4 {
      grid-template-columns: 1fr;
  }
}

/* Success Stories Section */
.case-study-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #E5E7EB;
}

.case-study-card .card-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.industry-label {
  font-size: 1rem;
  color: #666666;
}

.case-study-description {
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  border-radius: 0.5rem;
  width: fit-content;
}

.case-study-link .link-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}

@media (max-width: 768px) {
  .case-study-card {
      padding: 1.5rem;
  }
  
  .case-study-card .card-title {
      font-size: 1.25rem;
  }
  
  .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
}
.grid {
  display: grid;
  gap: 2rem;
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styles */
.card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid #E5E7EB;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.125rem;  /* Reduced from 1.25rem */
  color: var(--dark);
  margin-bottom: 0.75rem;  /* Reduced from 1rem */
  font-weight: 600;
}

.card-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Tech Card Specific Styles */
.tech-card .card-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tech-card .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary);
  stroke-width: 1.5;
}

.tech-card .card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tech-card:hover .card-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.tech-list {
  list-style-type: none;
  padding: 0;
  color: var(--gray-600);
}

.tech-list li {
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.tech-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Solutions Section Styles */
.tabs {
  max-width: 48rem;
  margin: 0 auto;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
  background-color: #F4F7F8;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-radius: 0.375rem;
  color: var(--dark);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-trigger.active {
  background-color: white;
  font-weight: 600;
  color: #03BFB3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.solution-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  overflow: hidden;
}

.solution-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.solution-header h3 {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.solution-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.solution-content {
  padding: 2rem;
}

.solution-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: var(--gray-600);
}

.solution-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.solution-content li:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .tabs-list {
      grid-template-columns: 1fr;
  }
  
  .solution-header {
      padding: 1.25rem;
  }
  
  .solution-content {
      padding: 1.25rem;
  }
}

/* Industry Cards */
#industries {
  background-color: #F4F7F8;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 2.5rem 2rem;
}

.industry-card .card-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.industry-card .card-title {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.industry-card .card-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Certifications Section */
.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 2rem 0;
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.certification-logo {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certification-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

/* About Section Styles */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-description {
  color: var(--gray-600);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto 4rem;
  max-width: 900px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
}

.feature-title {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-features {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .about-description {
      font-size: 1.1rem;
      padding: 0 1rem;
  }

  .feature-title {
      font-size: 1.25rem;
  }

  .feature-description {
      font-size: 1rem;
  }
}

/* Contact Section Styles */
.bg-dark {
  background-color: var(--dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  color: white;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 2.5rem;
}

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

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
}

.global-offices {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.global-offices h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.global-offices p {
  color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.contact-form label {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.contact-form select option {
  background-color: var(--dark);
  color: white;
}

.contact-form button {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 0 1rem;
  }

  .contact-info {
      text-align: center;
  }

  .contact-item {
      justify-content: center;
  }
}

@media (max-width: 640px) {
  .form-row {
      grid-template-columns: 1fr;
  }

  .contact-form {
      padding: 1.5rem;
  }
}
.section-title.text-white{
  color: white;
}

/* Footer Styles */
.footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1.5rem;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-group h3 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-group nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-group nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-group nav a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .footer-brand {
      padding-right: 0;
      text-align: center;
  }

  .footer-logo {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-links {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-group nav {
      align-items: center;
  }

  .footer {
      padding: 2rem 0 1rem;
  }
}

.dashboard-preview {
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  perspective: 1000px;
}

.dashboard-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.dashboard-image.main {
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dashboard-image.background {
  position: absolute;
  top: 0;
  opacity: 0.5;
  filter: brightness(0.7) blur(2px);
}

.dashboard-image.left {
  left: -10%;
  transform: translateY(20px) scale(0.95);
  z-index: 1;
}

.dashboard-image.right {
  left: 10%;  /* Changed from right: -5% to left: 5% */
  transform: translateY(20px) scale(0.95);  /* Made identical to left image */
  z-index: 1;  /* Made identical to left image */
}

.dashboard-stack:hover .dashboard-image.main {
  transform: translateY(-5px);
}

.dashboard-stack:hover .dashboard-image.left {
  transform: translateY(25px) scale(0.95);
}

.dashboard-stack:hover .dashboard-image.right {
  transform: translateY(25px) scale(0.95);  /* Made identical to left hover effect */
}

@media (max-width: 768px) {
  .dashboard-preview {
      margin-top: 2rem;
  }
  
  .dashboard-image.background {
      display: none;
  }
}
/* start of form */
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 31, 38, 0.8);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 0.5rem;  /* Updated to match other elements */
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;  /* Added to match other elements */
}

.close-modal:hover {
  color: var(--dark);
}

.modal-header {
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-header h2 {
  color: var(--dark);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-header p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Demo Form Styles */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.demo-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-form label {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.demo-form input,
.demo-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;  /* Updated to match other elements */
  font-size: 1rem;
  transition: all 0.2s;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(3, 191, 179, 0.1);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #9CA3AF;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  display: block;  /* Added to ensure full width */
}

@media (max-width: 640px) {
  .demo-form .form-row {
      grid-template-columns: 1fr;
  }

  .modal-content {
      padding: 1.5rem;
      margin: 1rem;
      width: calc(100% - 2rem);
  }
}

/* Button Styles */
/* end of form */
/* Form success and error messages */
.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    text-align: center;
}

.form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    text-align: center;
}

.success-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.success-content {
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #155724;
}
