/* Base Styles */
:root {
  --primary-color: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  --secondary-color: #334155;
  --accent-color: #f59e0b;
  --accent-dark: #d97706;
  --light-color: #f8fafc;
  --light-gray: #e2e8f0;
  --mid-gray: #94a3b8;
  --dark-color: #0f172a;
  --dark-blue: #1e293b;
  --error-color: #ef4444;
  --success-color: #10b981;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;
  --box-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark-color);
  line-height: 1.2;
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--mid-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  gap: 8px;
}

.btn i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white !important;
  border: none;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--light-gray);
  box-shadow: var(--box-shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Add styles for small buttons */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--box-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  height: 80px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-color);
}

.logo h1 span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links li a {
  font-weight: 500;
  transition: var(--transition);
  color: var(--secondary-color);
  position: relative;
  padding: 8px 0;
}

.nav-links li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li a:hover:after {
  width: 100%;
}

.nav-contact {
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-contact:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Add styles for the nav contact button */
.nav-contact-btn {
  padding: 8px 16px;
  font-size: 0.95rem;
  margin-left: 10px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark-color);
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.hero-content h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: rgba(59, 130, 246, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--secondary-color);
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stats .stat-item span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--mid-gray);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image-container {
  position: relative;

}

.hero-image-container img {
  display: block;
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  transition: transform 0.5s ease;
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--light-gray);
  z-index: 2;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.floating-card span {
  font-weight: 600;
  font-size: 0.9rem;
}

.card-1 {
  top: 20%;
  left: -40px;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  right: -50px;
  animation: float 7s ease-in-out infinite;
  animation-delay: 1s;
}

.card-3 {
  bottom: 15%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

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

/* Stats Section */
.stats {
  background-color: white;
  padding: 60px 0;
  margin-top: -40px;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.stat-item h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 1rem;
  color: var(--mid-gray);
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background-color: var(--light-color);
}

.features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--secondary-color);
  line-height: 1.7;
}

/* Core Services Section */
.core-services {
  padding: 100px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-light);
}

.service-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--dark-color);
}

.service-card p {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.learn-more i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.learn-more:hover {
  color: var(--primary-dark);
}

.learn-more:hover i {
  transform: translateX(4px);
}

/* Automation Tools Section */
.automation {
  padding: 100px 0;
  background-color: #1a2234;
  color: white;
  position: relative;
  z-index: 1;
}

.automation .section-title {
  color: white;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 16px;
}

.automation .section-title span {
  color: #4285f4;
}

.automation .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 60px;
}

/* Automation Tools Section - Fixed Layout */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.tools-grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Position the 4th and 5th cards in the second row, centered */
.tools-grid .tool-card:nth-child(4),
.tools-grid .tool-card:nth-child(5) {
  grid-row: 2;
}

.tools-grid .tool-card:nth-child(4) {
  grid-column: 1 / span 1;
  margin-left: auto;
}

.tools-grid .tool-card:nth-child(5) {
  grid-column: 2 / span 1;
  margin-right: auto;
}

.tool-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}

.tool-icon {
  width: 56px;
  height: 56px;
  background-color: #2d343f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tool-icon i {
  font-size: 24px;
  color: #f5a623;
}

.tool-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}

.tool-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tool-card .btn-explore {
  color: #4285f4;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tool-card .btn-explore:hover {
  color: #5c9aff;
}

.tool-card .btn-explore i {
  transition: transform 0.3s ease;
}

.tool-card .btn-explore:hover i {
  transform: translateX(4px);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all .btn {
  background-color: #4285f4;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all .btn:hover {
  background-color: #5c9aff;
  transform: translateY(-2px);
}

/* Pricing Plans Section */
.pricing {
  padding: 100px 0;
  background-color: var(--light-color);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  box-shadow: var(--card-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--box-shadow);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.popular-tag {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-gradient);
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark-color);
}

.plan-header p {
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid-gray);
}

.plan-features {
  margin-bottom: 36px;
  flex-grow: 1;
}

.feature {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature i {
  color: var(--success-color);
  margin-top: 4px;
}

.feature.inactive i {
  color: var(--error-color);
}

.feature.inactive {
  color: var(--mid-gray);
}

.pricing-card .btn {
  width: 100%;
}

/* Partner Network Section */
.partner {
  padding: 100px 0;
  background-color: white;
}

.partner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.partner-content {
  flex: 1;
}

.partner-content h2 {
  text-align: left;
  margin-bottom: 24px;
}

.partner-content p {
  margin-bottom: 30px;
  color: var(--secondary-color);
  line-height: 1.7;
}

.partner-features {
  margin-bottom: 36px;
}

.partner-features li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.partner-features li i {
  color: var(--primary-color);
  margin-top: 4px;
}

.partner-image {
  flex: 1;
  position: relative;
}

.partner-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--light-gray);
}

/* Knowledge Hub Section */
.knowledge-hub {
  padding: 100px 0;
  background-color: var(--light-color);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.article-tag {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.article-date {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--dark-color);
}

.article-card p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: white;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.contact-info {
  background: var(--primary-gradient);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-top: 4px;
}

.contact-info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-form {
  padding: 40px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  background-color: white;
}

.contact-form .btn {
  width: 100%;
}

/* Add styles for form note */
.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--mid-gray);
  text-align: center;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: white;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-about p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 12px 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

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

@media (max-width: 992px) {
  .hero .container {
    gap: 40px;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .partner .container {
    flex-direction: column;
  }

  .partner-content {
    text-align: center;
  }

  .partner-content h2 {
    text-align: center;
  }

  .partner-features li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--box-shadow);
  }

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

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-contact-btn {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }
}

/* Enhance High-Value GST Services section */
.high-value {
  padding: 100px 0;
  background-color: #f8fafc;
}

.high-value .section-title {
  text-align: center;
  color: #1a2234;
  margin-bottom: 8px;
}

.high-value .section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 48px;
}

.high-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.high-value-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.high-value-card h3 {
  color: #1e40af;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.high-value-list {
  margin-bottom: 24px;
}

.high-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #334155;
}

.high-value-list li i {
  color: #22c55e;
  margin-top: 4px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
}

.sector-item i {
  color: #4285f4;
}

.high-value-card .btn {
  background-color: #1e40af;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.high-value-card .btn:hover {
  background-color: #1e3a8a;
  transform: translateY(-2px);
}

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

  .tools-grid .tool-card:nth-child(1),
  .tools-grid .tool-card:nth-child(2) {
    grid-row: 1;
  }

  .tools-grid .tool-card:nth-child(3),
  .tools-grid .tool-card:nth-child(4) {
    grid-row: 2;
  }

  .tools-grid .tool-card:nth-child(5) {
    grid-row: 3;
    grid-column: 1 / span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  .tools-grid .tool-card:nth-child(n) {
    grid-column: 1;
    max-width: 100%;
  }

  .tools-grid .tool-card:nth-child(1) {
    grid-row: 1;
  }
  .tools-grid .tool-card:nth-child(2) {
    grid-row: 2;
  }
  .tools-grid .tool-card:nth-child(3) {
    grid-row: 3;
  }
  .tools-grid .tool-card:nth-child(4) {
    grid-row: 4;
  }
  .tools-grid .tool-card:nth-child(5) {
    grid-row: 5;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 0;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

