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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #f8fafc;
}


.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav {
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 2rem;
}

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

.logo-img {
  height: 50px;          
  width: auto;            
  max-height: 60px;       
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1e3a8a;
}

.nav-links a:hover {
  color: #1e3a8a;
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1e3a8a;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%234f46e5" fill-opacity="0.04"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v-1zm-7 5h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7-5h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 0h1v-1h-1v1zm-7 5h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7-5h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1zm7 0h-1v1h1v-1z"/%3E%3Cpath d="M6 5V0h1v5h5v1H6v5H5V6H0V5h5z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
  color: #111827;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #374151;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  display: inline-block;
  background: #312e81;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: #1e1b4b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-top: -3rem;
  margin-bottom: 4rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #4b5563;
}

.about-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e3a8a;
  font-weight: bold;
}

/* Core Values */
.values {
  background: white;
}

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

.value-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.value-card p {
  color: #4b5563;
}

/* Offerings Section */
.offerings {
  background: #f8fafc;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.offering-list {
  list-style: none;  
  padding: 0;
  margin: 0;
}

.offering-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 1rem; 
  border-bottom: 1px solid #e5e7eb;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 1.2rem;
  position: relative;
  padding-left: 25px;
}

.offering-list li:last-child {
  margin-bottom: 0;
}


.offering-list i {
  width: 22px;
  height: 22px;
  color: #1e3a8a;
  flex-shrink: 0; 
}


.offering-list li:before {
  font-weight: bold;
  color: #1e3a8a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.tech-stack {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
}

.tech-stack h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tech-category {
  margin-bottom: 1.5rem;
}

.tech-category h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  background: #e0e7ff;
  color: #3730a3;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Products Section */
.products {
  background: white;
}

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

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-header {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.product-header h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  margin: 0;
}

.product-header p {
  color: #4b5563;
  margin: 0.25rem 0 0;
  font-weight: 500;
}

.product-body {
  padding: 2rem;
  flex-grow: 1;
}

.product-body > p {
  color: #374151;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.product-features li {
  padding: 0.4rem 0;
  color: #374151;
  position: relative;
  padding-left: 20px;
}

.product-features li:before {
  content: "•";
  color: #312e81;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Highlights & Ambitions Section */
.outlook-section {
  background: #111827;
  color: white;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.outlook-section .section-title {
  color: white;
  margin-bottom: 4rem;
}
.outlook-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.outlook-column h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #312e81;
  display: inline-block;
}
.outlook-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s ease;
}
.outlook-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.outlook-item-icon {
  font-size: 1.5rem;
  color: #c7d2fe;
  flex-shrink: 0;
}
.outlook-item p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
}

/* Clients Section */
.clients {
  padding: 2rem 0;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.client-logo img {
  max-height: 6rem; /* Adjust logo size */
  max-width: 12rem;
  object-fit: contain; /* Prevent distortion */
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.05); /* Subtle hover effect */
}


.client-logo-placeholder {
  height: 80px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.client-logo-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-logo-placeholder:hover {
  border-color: #312e81;
}

/* Contact Section */
.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h3 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-content p {
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 4rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: justify;
}

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-col strong {
  color: #d1d5db;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  outline: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

.footer-col a:hover {
  color: #d1d5db; 
  border-bottom: 2px solid #d1d5db;
}


.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .outlook-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .offerings-grid,
  .products-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
