* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #34495e;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-3px);
}

.highlight {
  color: var(--secondary);
}

.highlight-text {
  color: var(--secondary);
  font-weight: 600;
  font-style: italic;
}

/* Header Styles */
.navbar {
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 70px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar-logo {
  margin-right: 70px;
}

.navbar-logo img {
  height: 40px;
  margin-right: 10px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin: 0 16px;
  position: relative;
}

.navbar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
  padding: 8px 6px;
}

.navbar-menu a:hover {
  color: #409cff;
}

.demo-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 9px 23px;
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.demo-btn:hover {
  background: #2179c4;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  border-radius: 7px;
  top: 38px;
  left: 0;
  padding: 0;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 11px 18px;
  display: block;
  font-size: 16px;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background: #2179c4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.custom-solutions-dropdown {
  display: none;
  flex-direction: row;
  width: 1040px;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: -150px;
  top: 40px;
  align-items: stretch;
  padding: 0;
}

.dropdown.solutions-dropdown:hover .custom-solutions-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.solutions-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 24px 30px;
  width: 400px;
  background: #fff;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-right: 1px solid #e4e9f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.solutions-list li {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
  color: #223762;
  font-weight: 500;
  margin-bottom: 2px;
  margin-right: 30px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  line-height: 1.3;
  background: #fff;
  white-space: normal;
}

.solutions-list li.active,
.solutions-list li:hover {
  background: #eaf4fc;
  border: 1.5px solid #409cff;
}

.solutions-list .icon img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.solutions-list .option-chevron {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.solutions-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solutions-list .option-chevron svg {
  width: 18px;
  height: 18px;
  stroke: #7b869a;
}

.solutions-detail {
  flex: 1;
  padding: 22px 36px 22px 8px;
  background: #fff;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

.solutions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  height: 32px;
}

.solutions-header h3 {
  font-size: 21px;
  color: #0d2242;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.features-btn {
  background: #409cff;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 9px;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(64, 156, 255, 0.07);
  white-space: nowrap;
  margin-left: 16px;
}

.features-btn:hover {
  background: #246db9;
}

.details-panel {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
}

.details-panel.active {
  display: block;
}

.details-panel .row {
  display: flex;
  gap: 38px;
  margin-bottom: 20px;
}

.feature-block {
  flex: 1;
  min-width: 0;
  padding: 18px 12px 20px 14px;
  background: #fff;
  border-radius: 7px;
  transition: background 0.18s;
  box-sizing: border-box;
}

.feature-block:hover {
  background: #f3f4f6;
}

.details-panel h4 {
  font-size: 17px;
  color: #163666;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.details-panel p {
  color: #3a4d6b;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-block h4:hover {
  color: #409cff;
}

.h-icon {
  margin-right: 16px;
  padding: 9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: rgb(18 39 80 / 5%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.custom-resources-dropdown {
  display: none;
  flex-direction: row;
  width: 850px;
  min-height: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -400px;
  top: 42px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.resources-dropdown:hover .custom-resources-dropdown {
  display: flex !important;
}

.resources-left-panel {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resources-label {
  font-size: 18px;
  font-weight: 650;
  color: #7b869a;
  margin-bottom: 22px;
  margin-left: 5px;
  letter-spacing: 0.02em;
}

.resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #223762;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.15s, color 0.15s;
}

.resources-list li:hover {
  color: #409cff;
}

.resources-list .h-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.resources-detail {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.resources-detail .resource-item,
.resources-detail .resource-item:hover {
  background: #fff;
}

.resources-detail .resource-item img {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 38px;
}

.resource-item {
  display: flex;
  text-decoration: none;
  color: #223762;
  width: 100%;
  align-items: center;
  font-weight: 600;
}

.resource-item img {
  height: 100px;
  width: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.resource-text {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}

.resource-label {
  color: #409cff;
  font-weight: 649;
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.resource-text p {
  color: #000000;
  font-size: 25px;
  font-weight: 530;
}

.resource-text p:hover {
  color: #409cff;
}

.custom-company-dropdown {
  display: none;
  flex-direction: row;
  width: 1200px;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -320px;
  top: 40px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.company-dropdown:hover .custom-company-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.company-left-panel {
  width: 270px;
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.company-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d2242;
  margin-bottom: 18px;
}

.company-description {
  font-size: 15px;
  color: #223762;
  line-height: 1.6;
  margin: 0;
}

.company-right-panel {
  flex: 1;
  display: flex;
  font-size: 15px;
  margin-right: 200px;
}

.company-section {
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.section-title {
  font-weight: 700;
  font-size: 15px;
  color: #7b869a;
  margin-bottom: 16px;
}

.company-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-links li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.company-links li:last-child {
  margin-bottom: 0;
}

.company-links .icon {
  width: 36px;
  height: 36px;
  background-color: rgba(18, 39, 80, 0.05);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.company-links .icon img {
  width: 18px;
  height: 18px;
}

.company-links .link-text strong {
  color: #223762;
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.company-links .link-text p {
  margin: 0;
  color: #223762;
  line-height: 1.5;
}

.link-text strong:hover {
  color: #409cff;
}

.navbar-menu .dropdown {
  z-index: 10;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #7f8c8d;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-visual {
  flex: 1;
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.floating-card span {
  font-weight: 600;
}

.card-1 {
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: 10%;
  width: 140px;
  height: 140px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  left: 20%;
  width: 130px;
  height: 130px;
  animation-delay: 2s;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about {
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about-content {
  display: flex;
  align-items: stretch;
  gap: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  z-index: -1;
}

.about-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.highlight-text {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-text:hover::after {
  transform: scaleX(1);
}

.interactive-text {
  position: relative;
  cursor: help;
  border-bottom: 1px dashed var(--secondary);
  color: var(--secondary);
  font-weight: 500;
}

.interactive-text:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.interactive-text:hover::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}

.highlight-quote {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  padding: 30px;
  border-radius: 15px;
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  position: relative;
  margin-top: 30px;
  box-shadow: var(--shadow);
}

.highlight-quote i {
  opacity: 0.7;
  margin: 0 10px;
}

/* Features */
.interactive-features {
  margin-top: 30px;
}

.feature-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 12px 24px;
  background: var(--light);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--text);
}

.toggle-btn.active {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.toggle-btn:hover:not(.active) {
  background: #d5dbdb;
  transform: translateY(-2px);
}

.content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
  text-align: center;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: white;
}

.tech-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.tech-item span {
  font-weight: 500;
}

.approach-list {
  list-style: none;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}

.approach-list li:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: var(--shadow);
}

.approach-list i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 5px;
}

.approach-list h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.approach-list p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.impact-item {
  text-align: center;
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: white;
}

.impact-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.impact-item h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.impact-item p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Stats Section */
.about-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(52, 152, 219, 0.1),
    transparent
  );
  transition: var(--transition);
}

.stat:hover::before {
  left: 100%;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 500;
  margin-bottom: 10px;
}

.stat-progress {
  width: 100%;
  height: 6px;
  background: var(--light);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--secondary);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease 0.5s;
}

/* Badges */
.achievement-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
}

.badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.badge i {
  color: var(--secondary);
}

/* Animation Classes */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
  }

  .feature-toggle {
    justify-content: center;
  }

  .tech-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.timeline-section .section-header h2 {
  color: white;
}

.timeline-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.timeline-section .section-header h2::after {
  background: rgba(255, 255, 255, 0.8);
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Timeline Navigation */
.timeline-navigation {
  position: relative;
  margin-bottom: 80px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 2px;
}

.nav-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.nav-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.nav-dot .year {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.7;
  transition: var(--transition);
}

.nav-dot .dot {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  transition: var(--transition);
  position: relative;
}

.nav-dot.active .year {
  opacity: 1;
  transform: translateY(-5px);
  color: white;
}

.nav-dot.active .dot {
  border-color: white;
  background: white;
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.nav-dot:hover .year {
  opacity: 1;
  transform: translateY(-5px);
}

.nav-dot:hover .dot {
  border-color: white;
  transform: scale(1.1);
}

/* Timeline Content */
.timeline-content-wrapper {
  position: relative;
  min-height: 500px;
  margin-bottom: 50px;
}

.timeline-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  display: none;
}

.timeline-content.active {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.content-left {
  flex: 1;
  padding-right: 50px;
}

.content-right {
  flex: 0 0 300px;
}

.year-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.timeline-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.achievement i {
  color: #4cd964;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.achievement span {
  opacity: 0.9;
  font-weight: 500;
}

/* Timeline Visual */
.timeline-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.visual-card {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  animation: float-visual 4s ease-in-out infinite;
}

.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.visual-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.visual-card span {
  font-weight: 600;
  color: white;
}

@keyframes float-visual {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Timeline Controls */
.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.timeline-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.timeline-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.timeline-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.timeline-btn:disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .timeline-content.active {
    flex-direction: column;
    gap: 40px;
  }

  .content-left {
    padding-right: 0;
  }

  .content-right {
    flex: none;
  }

  .visual-card {
    width: 150px;
    height: 150px;
  }

  .visual-card i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-dots {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .nav-dot {
    flex: 0 0 calc(33.333% - 20px);
  }

  .timeline-content h3 {
    font-size: 1.8rem;
  }

  .timeline-controls {
    flex-direction: column;
    align-items: center;
  }

  .timeline-btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .nav-dot {
    flex: 0 0 calc(50% - 15px);
  }

  .timeline-content h3 {
    font-size: 1.6rem;
  }

  .visual-card {
    width: 120px;
    height: 120px;
  }

  .visual-card i {
    font-size: 2rem;
  }

  .visual-card span {
    font-size: 0.9rem;
  }
}

/* Animation for content transitions */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-content.slide-in-right {
  animation: slideInFromRight 0.6s ease forwards;
}

.timeline-content.slide-in-left {
  animation: slideInFromLeft 0.6s ease forwards;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--secondary);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  color: white;
}

.service-card:hover .service-icon {
  background: white;
  color: var(--secondary);
}

.service-card:hover h3 {
  color: white;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: #7f8c8d;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.tagline::before,
.tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.tagline::before {
  left: -60px;
}

.tagline::after {
  right: -60px;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--secondary);
  color: white;
}

.value-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.value-card:hover .value-icon i {
  color: white;
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.value-card p {
  color: #7f8c8d;
}

/* Why Choose Us Section */
.why-choose {
  background: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-content p {
  color: #7f8c8d;
}

.cta-section {
  text-align: center;
  background: var(--light);
  padding: 50px;
  border-radius: 10px;
}

.cta-text {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 5px;
}

.contact-item h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-item p {
  color: #7f8c8d;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Banner */
.business-banner {
  font-family: "Montserrat", "Arial", sans-serif;
  background-image: url("../businessbg.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-banner-overlay {
  width: 100%;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 54, 86, 0.55);
}

.business-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 18px 0;
  text-align: center;
  line-height: 120%;
  letter-spacing: -0.98px;
  margin-bottom: 24px;
}

.business-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 35px 0;
  text-align: center;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 42px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp {
  color: #25d366;
}

.call {
  color: #9eabb7;
}

.business-btn {
  background: #fcc92f;
  color: #222;
  padding: 15px 36px;
  font-size: 1.25rem;
  border-radius: 32px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: none;
  cursor: pointer;
}

.business-btn:hover {
  background: #ffb500;
}

/* Footer */
.footer {
  padding: 50px 0 20px;
  background: #fff;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo-section {
  flex: 1 1 22%;
  min-width: 250px;
}

.footer-logo-section img {
  margin: 25px 0;
  height: 40px;
}

.footer-description {
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 30px 0 0;
  color: #555;
}

.footer-help {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-help img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.help-text {
  font-family: "Spartan", sans-serif !important;
  color: #007b7f;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0;
}

.consultation {
  font-family: "Spartan", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}

.footer-column {
  flex: 1 1 15%;
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Spartan", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 3px solid #0045a6;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  color: #555;
  margin: 20px 0;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #00a6a6;
}

.footer-column p {
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.footer-bottom {
  font-family: "Inter", sans-serif !important;
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 200px;
    margin-bottom: 10px;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .services-grid,
  .values-grid,
  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .floating-card {
    width: 100px;
    height: 100px;
    padding: 15px;
  }

  .floating-card i {
    font-size: 1.5rem;
  }

  .floating-card span {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
  }

  .feature-toggle {
    justify-content: center;
  }

  .tech-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-content {
    padding: 20px;
  }

  .stat {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .approach-list li {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}