/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #047cac;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header {
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(4, 124, 172, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 124, 172, 0.4);
}

.btn-secondary {
  background: white;
  color: #047cac;
  border: 2px solid #047cac;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #047cac;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 124, 172, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 100%);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: linear-gradient(to bottom, #000000 0%, #2d2d2d 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.25rem 0;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #047cac;
  text-shadow: 0 0 8px rgba(4, 124, 172, 0.5);
}

.nav-link.active {
  color: #047cac;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(4, 124, 172, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 124, 172, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(4, 124, 172, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(215, 18, 73, 0.1) 0%,
      transparent 50%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23047cac" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 4rem;
}

.hero-content-center {
  text-align: center;
  color: white;
}

.hero-content-center h4 {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title-main {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.hero-service-card {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--card-color, #047cac) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-service-card:nth-child(1) {
  --card-color: #00bcd4;
}

.hero-service-card:nth-child(2) {
  --card-color: #673ab7;
}

.hero-service-card:nth-child(3) {
  --card-color: #ff5722;
}

.hero-service-card:nth-child(4) {
  --card-color: #ffffff;
}

.hero-service-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hero-service-card:hover::before {
  opacity: 1;
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.hero-service-card:hover .card-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.card-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.hero-service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #047cac;
  text-align: center;
}

.hero-description {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-catchphrase {
  font-size: 1.4rem;
  font-weight: 600;
  color: #047cac;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

.section-catchphrase {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d71249;
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
}

.section-catchphrase.white-text {
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #047cac;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 120%;
  max-width: 120%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-card {
  position: absolute;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  color: #1a1a1a;
}

.floating-card i {
  color: #047cac;
  font-size: 1.3rem;
}

.floating-card span {
  color: #1a1a1a;
  font-size: 0.95rem;
}

.card-1 {
  top: 15%;
  right: -12%;
  animation-delay: 0s;
}

.card-2 {
  top: 65%;
  left: -18%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 8%;
  right: 8%;
  animation-delay: 4s;
}

.card-4 {
  top: 45%;
  right: -15%;
  animation-delay: 1s;
}

.card-5 {
  top: 25%;
  left: -20%;
  animation-delay: 3s;
}

.card-6 {
  bottom: 35%;
  left: -12%;
  animation-delay: 1s;
}
.card-7 {
  bottom: 35%;
  left: 15%;
  animation-delay: 2s;
}
.card-8 {
  bottom: 25%;
  right: 10%;
  animation-delay: 1s;
}
.card-9 {
  bottom: 65%;
  left: 13%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(1deg);
  }
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: white;
}

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

.solution-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.clickable-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.clickable-card:hover {
  text-decoration: none;
  color: inherit;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(4, 124, 172, 0.3);
}

.solution-icon i {
  font-size: 1.8rem;
  color: white;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.solution-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-features {
  list-style: none;
}

.solution-features li {
  color: #64748b;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #047cac;
  font-weight: bold;
  font-size: 1.1rem;
}

/* IBM Products Section */
.ibm-products {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.ibm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.watson-grid {
  justify-items: center;
}

.watson-grid > .flip-card:nth-last-child(1):nth-child(3n + 1) {
  grid-column: 2;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  text-decoration: none;
  display: block;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.flip-card-front {
  background: white;
}

.flip-card-back {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  transform: rotateY(180deg);
}

.flip-card-front h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.flip-card-front p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.flip-card-back h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.flip-card-back li {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.flip-card-back li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #93c5fd;
}

.ibm-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.ibm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.ibm-logo {
  margin-bottom: 1.5rem;
}

.ibm-logo img {
  width: 90px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ibm-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.ibm-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ibm-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.feature-tag {
  background: linear-gradient(
    135deg,
    rgba(4, 124, 172, 0.1) 0%,
    rgba(215, 18, 73, 0.1) 100%
  );
  color: #047cac;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(4, 124, 172, 0.2);
}

.technology-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  text-align: left;
}

.technology-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.technology-details ul {
  list-style: none;
  padding: 0;
}

.technology-details li {
  color: #64748b;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.technology-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #047cac;
  font-weight: bold;
}

/* Technology Category Sections */
.tech-category-section {
  margin-bottom: 4rem;
}

.tech-category-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.ibm-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Data Technology & Transport Section */
.data-tech-transport {
  padding: 100px 0;
  background: #f8fafc;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.service-item {
  text-align: left;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #047cac 0%, #d71249 100%);
}

.service-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(4, 124, 172, 0.2);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-item p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-arrow {
  display: none;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.about .section-title {
  color: white;
}

.about .section-description {
  color: rgba(255, 255, 255, 0.8);
}

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

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #047cac;
  margin-bottom: 0.5rem;
}

.about-stat .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Company Story Section */
.company-story {
  padding: 100px 0;
  background: white;
}

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

.story-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.story-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.story-stat {
  text-align: center;
}

.story-stat .stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #047cac;
  margin-bottom: 0.5rem;
}

.story-stat .stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.mv-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(4, 124, 172, 0.3);
}

.mv-icon i {
  font-size: 1.8rem;
  color: white;
}

.mv-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.mv-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.member-role {
  font-size: 1rem;
  font-weight: 600;
  color: #047cac;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  transform: translateY(-2px);
}

/* Certifications Section */
.certifications {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.cert-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cert-logo {
  margin-bottom: 1.5rem;
}

.cert-logo img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cert-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.cert-item p {
  color: #64748b;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.8rem;
  color: #047cac;
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-item p {
  color: #64748b;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #047cac;
  box-shadow: 0 0 0 3px rgba(4, 124, 172, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-section p {
  color: #cbd5e0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: #047cac;
  padding-left: 5px;
}

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

.social-link {
  width: 45px;
  height: 45px;
  background: #2d3748;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #d71249;
}

.footer-catchphrase {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #047cac;
  font-style: italic;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
}

/* Advisory Section */
.advisory-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.advisory-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(4, 124, 172, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(215, 18, 73, 0.1) 0%,
      transparent 50%
    );
}

.advisory-section .section-title {
  color: white;
}

.advisory-section .section-description {
  color: #94a3b8;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.advisory-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advisory-card:hover {
  border-color: rgba(4, 124, 172, 0.4);
  box-shadow: 0 8px 25px rgba(4, 124, 172, 0.12);
}

.advisory-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.advisory-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.advisory-card p {
  color: #cbd5e1;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Solutions Showcase */
.solutions-showcase {
  padding: 100px 0;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}

.solutions-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23cbd5e1" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.solutions-marquee {
  margin-top: 3rem;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: marquee 10s linear infinite;
}

.solution-badge {
  background: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  min-width: fit-content;
}

.solution-badge:hover {
  border-color: #047cac;
  box-shadow: 0 6px 20px rgba(4, 124, 172, 0.12);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Solutions List Styles */
.solutions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.solution-list-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
}

.solution-list-item:hover {
  border-color: #047cac;
  box-shadow: 0 8px 25px rgba(4, 124, 172, 0.15);
}

/* Page-specific styles */
.page-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23047cac" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-hero .hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Advisory Services */
.advisory-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.advisory-process {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  color: white;
}

.advisory-process .section-title {
  color: white;
}

.advisory-process .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.process-step {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 70px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(4, 124, 172, 0.3);
}

.process-step h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.process-step p {
  color: #64748b;
  line-height: 1.7;
}

/* Industry Solutions */
.industry-solutions {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.industry-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(4, 124, 172, 0.3);
}

.industry-icon i {
  font-size: 1.8rem;
  color: white;
}

.industry-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.industry-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Values Section */
.values-detailed {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.values-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #047cac;
}

.value-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d71249;
  margin-bottom: 1rem;
}

.value-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Solution Links */
.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #047cac;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.solution-link:hover {
  color: #d71249;
  transform: translateX(5px);
}

.solution-link i {
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #047cac 0%, #d71249 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-content-watson h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-buttons .btn-primary {
  background: white;
  color: #047cac;
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: #047cac;
}

/* Responsive Design */

/* Tablets and smaller laptops (1024px and below) */
@media (max-width: 1024px) {
  .container,
  .nav-container {
    padding: 0 30px;
  }

  .hero-container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .ibm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .story-content,
  .contact-content {
    gap: 3rem;
  }

  .floating-card {
    display: none;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .container,
  .nav-container {
    padding: 0 20px;
  }

  /* Navigation */
  .logo-img {
    height: 45px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 20px;
    gap: 3rem;
  }

  .hero-content-center h4 {
    font-size: 1.1rem;
  }

  .hero-title-main {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-service-card {
    padding: 2rem 1.5rem;
  }

  .card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .card-icon-wrapper i {
    font-size: 2rem;
  }

  .hero-service-card h3 {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-catchphrase {
    font-size: 1.2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    transform: scale(1);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Sections */
  .solutions,
  .services,
  .about,
  .contact,
  .ibm-products,
  .data-tech-transport,
  .company-story,
  .mission-vision,
  .team-section,
  .certifications,
  .advisory-services,
  .advisory-process,
  .industry-solutions,
  .cta-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .section-catchphrase {
    font-size: 1.1rem;
  }

  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero .hero-title {
    font-size: 2.5rem;
  }

  .page-hero .hero-description {
    font-size: 1.1rem;
  }

  /* Grids */
  .solutions-grid,
  .ibm-grid,
  .services-grid,
  .mv-grid,
  .team-grid,
  .cert-grid,
  .process-steps,
  .industry-grid,
  .advisory-list,
  .solutions-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Data Technologies Section - Mobile */
  .data-tech-transport {
    padding: 60px 0;
  }

  .tech-category-section {
    margin-bottom: 3rem;
  }

  .tech-category-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .watson-grid > .flip-card:nth-last-child(1):nth-child(3n + 1) {
    grid-column: auto;
  }

  .flip-card {
    height: auto;
    min-height: 280px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 2rem;
  }

  .flip-card-front h4 {
    font-size: 1.3rem;
  }

  .flip-card-front p {
    font-size: 0.95rem;
  }

  .flip-card-back h4 {
    font-size: 1.2rem;
  }

  .flip-card-back li {
    font-size: 0.9rem;
  }

  /* Solutions Showcase Section - Mobile */
  .solutions-showcase {
    padding: 60px 0;
  }

  .solutions-showcase .section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .solutions-showcase .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .solutions-marquee {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }

  .solution-badge {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  /* About and Story */
  .about-content,
  .story-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text .section-title,
  .story-text .section-title {
    text-align: center;
  }

  .about-stats,
  .story-stats {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  /* Footer */
  .footer {
    padding: 60px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .social-links {
    justify-content: center;
  }

  /* CTA */
  .cta-content h2,
  .cta-content-watson h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Cards */
  .solution-card,
  .ibm-card,
  .service-item {
    padding: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  .container,
  .nav-container {
    padding: 0 15px;
  }

  /* Navigation */
  .logo-img {
    height: 40px;
  }

  .nav-menu {
    top: 60px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 40px;
  }

  .hero-container {
    padding: 0 15px;
    gap: 2rem;
  }

  .hero-content-center h4 {
    font-size: 0.9rem;
  }

  .hero-title-main {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-service-card {
    padding: 2rem 1.5rem;
  }

  .card-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .card-icon-wrapper i {
    font-size: 1.8rem;
  }

  .hero-service-card h3 {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-catchphrase {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-stats,
  .about-stats,
  .story-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Sections */
  .solutions,
  .services,
  .about,
  .contact,
  .ibm-products,
  .data-tech-transport,
  .company-story,
  .mission-vision,
  .team-section,
  .certifications,
  .advisory-services,
  .advisory-process,
  .industry-solutions,
  .cta-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .section-catchphrase {
    font-size: 1rem;
  }

  .page-hero {
    padding: 90px 0 50px;
  }

  .page-hero .hero-title {
    font-size: 2rem;
  }

  .page-hero .hero-description {
    font-size: 1rem;
  }

  /* Cards and items */
  .solution-card,
  .ibm-card,
  .service-item,
  .mv-card,
  .process-step,
  .industry-card {
    padding: 1.5rem;
  }

  .solution-card h3,
  .ibm-card h3,
  .service-item h3,
  .mv-card h3,
  .industry-card h3 {
    font-size: 1.2rem;
  }

  .solution-icon,
  .service-icon,
  .mv-icon,
  .industry-icon {
    width: 60px;
    height: 60px;
  }

  .solution-icon i,
  .service-icon i,
  .mv-icon i,
  .industry-icon i {
    font-size: 1.5rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* CTA */
  .cta-content h2,
  .cta-content-watson h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  /* Contact form */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  /* Advisory and solution items */
  .advisory-item,
  .solution-list-item {
    padding: 1.5rem;
  }

  .advisory-item h3 {
    font-size: 1.1rem;
  }

  .solution-list-item {
    font-size: 1rem;
  }

  /* Tech category */
  .tech-category-title {
    font-size: 1.6rem;
  }

  /* Data Technologies Section - Small Mobile */
  .data-tech-transport {
    padding: 50px 0;
  }

  .tech-category-section {
    margin-bottom: 2.5rem;
  }

  .tech-category-title {
    font-size: 1.4rem;
    padding: 0 5px;
    line-height: 1.3;
  }

  .flip-card {
    min-height: 260px;
    height: auto;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem;
  }

  .flip-card-front h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .flip-card-front p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .flip-card-back h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .flip-card-back li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }

  /* Solutions Showcase Section - Small Mobile */
  .solutions-showcase {
    padding: 50px 0;
  }

  .solutions-showcase .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .solutions-showcase .section-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .solutions-marquee {
    padding: 1rem 0;
    margin-top: 1.5rem;
  }

  .solution-badge {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 40px;
  }

  .marquee-content {
    gap: 1.5rem;
  }

  /* Team members */
  .member-image {
    height: 220px;
  }

  .member-info {
    padding: 1.5rem;
  }

  /* Values */
  .values-title {
    font-size: 1.6rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .value-item h4 {
    font-size: 1.1rem;
  }
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.feature p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.slide-in {
  animation: slide-in 0.6s ease-out forwards;
  opacity: 0;
}

.slide-in:nth-child(1) {
  animation-delay: 0.1s;
}
.slide-in:nth-child(2) {
  animation-delay: 0.2s;
}
.slide-in:nth-child(3) {
  animation-delay: 0.3s;
}
.slide-in:nth-child(4) {
  animation-delay: 0.4s;
}
.slide-in:nth-child(5) {
  animation-delay: 0.5s;
}
.slide-in:nth-child(6) {
  animation-delay: 0.6s;
}

.scale-in {
  animation: scale-in 0.5s ease-out forwards;
  opacity: 0;
}

.scale-in:nth-child(1) {
  animation-delay: 0.1s;
}
.scale-in:nth-child(2) {
  animation-delay: 0.2s;
}
.scale-in:nth-child(3) {
  animation-delay: 0.3s;
}
.scale-in:nth-child(4) {
  animation-delay: 0.4s;
}
.scale-in:nth-child(5) {
  animation-delay: 0.5s;
}
.scale-in:nth-child(6) {
  animation-delay: 0.6s;
}
