* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-container a {
  text-decoration: none;
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0066ff;
}

.cta-btn {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

/* Added hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0066ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.8) 0%,
    rgba(99, 102, 255, 0.8) 50%,
    rgba(167, 139, 250, 0.8) 100%
  );
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 50px;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  background: #ffc107;
  color: #000;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  padding: 80px 50px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-header p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
}

/* Clients Section */
.clients-section {
  padding: 80px 50px;
  background: #f9f9f9;
  text-align: center;
}

.clients-section h3 {
  color: #999;
  font-size: 14px;
  margin-bottom: 50px;
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-weight: 700;
  color: #666;
  font-size: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: white;
  transition: all 0.3s;
}

.client-logo:hover {
  border-color: #0066ff;
  color: #0066ff;
}

/* Features Section */
.features-section {
  padding: 80px 50px;
  background: white;
}

.feature {
  margin-bottom: 60px;
}

.feature-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.feature-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-content ul {
  list-style: none;
  margin-top: 20px;
}

.feature-content li {
  color: #666;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-content li::before {
  content: "✓";
  color: #0066ff;
  font-weight: 700;
  font-size: 18px;
}

.feature-image {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0e6ff 100%);
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.feature:nth-child(even) .feature-header {
  direction: rtl;
}

.feature:nth-child(even) .feature-header > div {
  direction: ltr;
}

/* Added Features Grid Section */
.features-grid-section {
  padding: 80px 50px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Detailed Features */
.detailed-features {
  padding: 80px 50px;
  background: #f9f9f9;
}

.feature-detail {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  border-left: 5px solid #0066ff;
}

.feature-detail h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.feature-detail p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.detail-list li {
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-list li::before {
  content: "✓";
  color: #0066ff;
  font-weight: 700;
  font-size: 18px;
}

/* Products Section */
.products-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 60px;
  color: #000;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  background-size: cover;
  background-position: center;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  border-color: #0066ff;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.product-card:hover::before {
  background: rgba(255, 255, 255, 0.98);
}

.product-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0066ff;
  font-weight: 700;
}

.product-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  padding: 100px 50px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.95;
}

/* Product Detail Section */
.product-detail {
  padding: 80px 50px;
  background: white;
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-container.reverse {
  direction: rtl;
}

.product-detail-container.reverse > div {
  direction: ltr;
}

.product-detail-image {
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0e6ff 100%);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.product-detail-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-detail-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  padding: 10px 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  color: #0066ff;
  font-weight: 700;
  font-size: 18px;
  min-width: 20px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
}

.spec {
  color: #666;
}

.spec strong {
  color: #000;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  font-weight: 700;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Pricing Styles */
.pricing-section {
  padding: 80px 50px;
  background: white;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: #0066ff;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.pricing-card.featured {
  border-color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0066ff;
}

.price span {
  font-size: 18px;
  color: #666;
}

.price-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  color: #666;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: #0066ff;
  font-weight: 700;
}

.pricing-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #f0f0f0;
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.pricing-btn:hover {
  background: #e0e0e0;
}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
}

.pricing-btn.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.pricing-details {
  padding: 80px 50px;
  background: #f9f9f9;
}

.pricing-table {
  overflow-x: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th {
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  font-weight: 700;
}

/* Fees Section */
.fees-section {
  padding: 80px 50px;
  background: white;
}

.fees-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fee-item {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e0e0e0;
}

.fee-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.fee-amount {
  font-size: 32px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 10px;
}

.fee-item p {
  color: #666;
  font-size: 14px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #0066ff;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.faq-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* About Section Styles */
.about-mission {
  padding: 80px 50px;
  background: white;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.mission-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0066ff;
}

.stat-label {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.mission-image {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

/* Values Section */
.values-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  text-align: center;
}

.value-card:hover {
  border-color: #0066ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 50px;
  background: white;
}

.team-intro {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
  font-weight: 700;
}

.member-role {
  color: #0066ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #0066ff 0%, #6366ff 100%);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: 51%;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 51%;
  text-align: left;
}

.timeline-date {
  font-size: 20px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 10px;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.timeline-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-info-section {
  padding: 60px 50px;
  background: white;
}

.contact-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #e0e0e0;
}

.info-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.contact-info-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.contact-form-section {
  padding: 80px 50px;
  background: #f9f9f9;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.form-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.form-content p {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066ff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  color: #666;
  font-size: 14px;
  cursor: pointer;
  margin: 0;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0066ff 0%, #6366ff 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px; /* Added spacing */
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.form-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

/* Map Section */
.map-section {
  padding: 80px 50px;
  background: white;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 50px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0066ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-container {
    position: relative;
  }

  /* Show hamburger menu on mobile and hide regular nav links */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-links a {
    color: #555;
  }

  .hero {
    padding: 60px 20px;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-header {
    padding: 60px 20px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .feature-header,
  .product-detail-container {
    grid-template-columns: 1fr;
  }

  .product-detail-container.reverse {
    direction: ltr;
  }

  .clients-section,
  .features-section,
  .products-section,
  .cta-section,
  .comparison-section,
  footer {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .cta-section p {
    font-size: 16px;
  }

  .mission-container,
  .form-container,
  .product-detail-container {
    grid-template-columns: 1fr;
  }

  .product-detail-container.reverse {
    direction: ltr;
  }

  .mission-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .timeline::before {
    display: none;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0 0 0 40px !important;
    text-align: left !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }

  .logo-container a {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .feature-image,
  .product-detail-image {
    height: 250px;
  }

  .product-card {
    min-height: 300px;
    padding: 20px;
  }

  .product-icon {
    font-size: 32px;
  }

  .features-grid,
  .values-grid,
  .fees-container,
  .faq-container,
  .contact-info-container,
  .team-grid,
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .feature-detail {
    margin-bottom: 30px;
  }

  .form-image {
    display: none;
  }
}
/* Why Choose Us Section */
.why-choose-section {
    width: 100%;
    padding: 70px 8%;
    background: #eef4ff; /* Light blue background */
    margin-top: 40px;
}

.why-choose-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.why-left {
    flex: 1;
}

.why-left h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0066ff;
    font-weight: 700;
}

.why-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.why-right {
    flex: 1;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 18px;
    margin-bottom: 14px;
    color: #222;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .why-choose-container {
        flex-direction: column;
        text-align: center;
    }

    .why-right ul {
        margin-top: 20px;
    }

    .why-list li {
        justify-content: center;
    }
}
