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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1e3a8a;
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #374151;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

h2 {
  font-size: 2.5rem;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.8rem;
  color: #1e3a8a;
}

h4 {
  font-size: 1.3rem;
  color: #374151;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 1.1rem;
}

/* Enhanced Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-logo h2 {
  color: #1e3a8a;
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transition: width 0.3s ease;
}

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e3a8a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
  background: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.8),
    rgba(30, 30, 30, 0.7),
    rgba(50, 50, 50, 0.8),
    rgba(20, 20, 20, 0.7)
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: 140px 0 100px;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/gateway.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: backgroundSlider 12s ease-in-out infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: grainMove 20s linear infinite;
  z-index: -1;
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle-2 {
  top: 60%;
  left: 20%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.particle-3 {
  top: 30%;
  left: 80%;
  animation-delay: 10s;
  animation-duration: 22s;
}

.particle-4 {
  top: 70%;
  left: 70%;
  animation-delay: 15s;
  animation-duration: 28s;
}

.particle-5 {
  top: 40%;
  left: 50%;
  animation-delay: 8s;
  animation-duration: 35s;
}

.particle-6 {
  top: 80%;
  left: 30%;
  animation-delay: 12s;
  animation-duration: 26s;
}
/* Enhanced Hero Visual for Fintech Setup */
.fintech-setup-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.company-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.arrow-flow {
  font-size: 2rem;
  color: #f59e0b;
  animation: pulse 2s ease-in-out infinite;
}

.india-destination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.india-flag {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #228b22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wave 2s ease-in-out infinite;
}

.india-flag i {
  font-size: 1.5rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.india-skyline {
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.building {
  background: #1e3a8a;
  border-radius: 2px 2px 0 0;
  position: relative;
}

.building-1 {
  width: 12px;
  height: 25px;
}

.building-2 {
  width: 15px;
  height: 35px;
}

.building-3 {
  width: 10px;
  height: 20px;
}

.building-4 {
  width: 18px;
  height: 40px;
}

.building::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: #f59e0b;
  border-radius: 50%;
  animation: buildingLight 3s ease-in-out infinite;
}

.fintech-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.fintech-element {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatStaggered 4s ease-in-out infinite;
}

.fintech-element:nth-child(1) {
  animation-delay: 0s;
}

.fintech-element:nth-child(2) {
  animation-delay: 0.5s;
}

.fintech-element:nth-child(3) {
  animation-delay: 1s;
}

.fintech-element i {
  font-size: 1.2rem;
  color: #f59e0b;
}

/* Enhanced Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

@keyframes buildingLight {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
  }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .fintech-setup-visual {
    flex-direction: column;
    gap: 2rem;
  }

  .arrow-flow {
    transform: rotate(90deg);
  }

  .fintech-icons {
    gap: 1rem;
  }

  .fintech-element {
    width: 40px;
    height: 40px;
  }

  .fintech-element i {
    font-size: 1rem;
  }
}

/* Animated Wave */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.wave {
  width: 100%;
  height: 100%;
  animation: waveMove 8s ease-in-out infinite;
}

.shape-fill {
  fill: rgba(255, 255, 255, 0.1);
  animation: waveOpacity 6s ease-in-out infinite;
}

.shape-fill:nth-child(2) {
  animation-delay: 2s;
}

.shape-fill:nth-child(3) {
  animation-delay: 4s;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  color: #e5e7eb;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: white;
  color: #1e3a8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.globe-icon {
  font-size: 4rem;
  color: #f59e0b;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
  transition: all 0.3s ease;
}

.globe-icon:hover {
  transform: scale(1.1) rotate(360deg);
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.8));
}

.india-skyline {
  width: 200px;
  height: 100px;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  background-size: 200% 200%;
  animation: skylineGlow 4s ease-in-out infinite;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.india-skyline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #1e3a8a;
  border-radius: 0 0 10px 10px;
}

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

@keyframes floatingLights {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes skylineGlow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.8);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes waveMove {
  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-20px) scaleY(1.1);
  }
}

@keyframes waveOpacity {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
  }
}

@keyframes backgroundSlider {
  0%,
  100% {
    background-image: url("images/gateway.jpg");
    opacity: 1;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    background-image: url("images/gateway.jpg");
    opacity: 1;
  }
  75% {
    opacity: 0.8;
  }
}

/* Enhanced Who We Serve Section */
.who-we-serve {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.who-we-serve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.2),
    transparent
  );
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.service-card {
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
}
.service-link {
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
}

/* Why Nostrum Section */
.why-nostrum {
  padding: 80px 0;
  background: white;
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature h4 {
  margin-bottom: 0.5rem;
}

.feature p {
  color: #6b7280;
  font-size: 1rem;
}

/* Enhanced Testimonials Section */
.testimonials {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.2),
    transparent
  );
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 1rem;
}

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

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.15);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.quote-icon i {
  color: white;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 1.8rem;
  color: white;
}

.author-info h4 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.author-info p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 500;
}

.company-logo i {
  font-size: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-top: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-rating i:nth-child(3) {
  animation-delay: 0.4s;
}
.testimonial-rating i:nth-child(4) {
  animation-delay: 0.6s;
}
.testimonial-rating i:nth-child(5) {
  animation-delay: 0.8s;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  /* margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1); */
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.05);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.trust-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item p {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Enhanced Lead Capture Form */
.lead-capture {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.form-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 58, 138, 0.05)
  );
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 5s;
  animation-duration: 30s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 15%;
  animation-delay: 10s;
  animation-duration: 22s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 70%;
  right: 20%;
  animation-delay: 15s;
  animation-duration: 28s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 80%;
  animation-delay: 8s;
  animation-duration: 35s;
}

.shape-6 {
  width: 90px;
  height: 90px;
  top: 80%;
  left: 70%;
  animation-delay: 12s;
  animation-duration: 26s;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.form-header {
  margin-bottom: 3rem;
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
}

.form-icon i {
  font-size: 2rem;
  color: white;
}

.form-header h2 {
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}

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

.form-group {
  margin-bottom: 2rem;
}

.input-wrapper {
  position: relative;
  display: block;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.input-wrapper textarea .input-icon {
  top: 25px;
  transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 20px 20px 20px 60px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fafbfc;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  position: relative;
  box-sizing: border-box;
  font-weight: 400;
}

.input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 50px;
}

.input-wrapper textarea {
  padding-left: 60px;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  background: white;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
  color: #1e3a8a;
}

.input-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transition: width 0.3s ease;
  border-radius: 0 0 16px 16px;
}

.input-wrapper input:focus ~ .input-focus-border,
.input-wrapper select:focus ~ .input-focus-border,
.input-wrapper textarea:focus ~ .input-focus-border {
  width: 100%;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-icon {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-text {
  transform: translateX(-5px);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.form-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

.form-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.05);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.benefit-item i {
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cbd5e1;
}

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

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

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 5rem;
  margin-left: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #316ad1;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
  color: #cbd5e1;
  margin: 0;
}

/* Page Hero Styles */
.page-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.page-hero p {
  color: #e5e7eb;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Compact Hero Form */
.hero-form-compact {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 520px;
  width: 100%;
}

.form-header-compact {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header-compact h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-header-compact p {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.hero-lead-form {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-grid input,
.form-grid select {
  background: rgba(248, 250, 252, 0.9);
  border: 1.5px solid rgba(229, 231, 235, 0.8);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #374151;
  font-weight: 400;
}

.form-grid input:focus,
.form-grid select:focus {
  outline: none;
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.form-grid input::placeholder {
  color: #9ca3af;
  font-size: 0.9rem;
}

.form-grid select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

.form-grid input[type="text"]:nth-child(5),
.form-grid select:nth-child(6) {
  grid-column: 1 / -1;
}

.cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.cta-btn:active {
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-form-compact {
    padding: 1.5rem;
    margin: 0 1rem;
    max-width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .form-grid input[type="text"]:nth-child(5),
  .form-grid select:nth-child(6) {
    grid-column: 1;
  }

  .form-header-compact h3 {
    font-size: 1.3rem;
  }

  .form-header-compact p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-form-compact {
    padding: 1.25rem;
  }

  .form-grid input,
  .form-grid select {
    padding: 11px 12px;
    font-size: 0.85rem;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
/* Services Overview Styles */
.services-overview {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1400px; /* Increased from 1200px */
  margin: 0 auto;
}

/* Grid positioning (keep the same) */
.service-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.service-item:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.service-item:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1;
}

.service-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.service-item:nth-child(5) {
  grid-column: 4 / 6;
  grid-row: 2;
}

/* Enhanced service card design (restored to original beauty) */
.service-item {
  background: white;
  padding: 3.5rem; /* Increased padding for spacious feel */
  border-radius: 20px; /* Larger border radius */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06); /* Enhanced shadow */
  text-align: center; /* Center alignment like original */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 400px; /* Ensure consistent height */
}

/* Restore the top border highlight effect */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.1);
}

/* Enhanced service icon */
.service-icon {
  width: 80px; /* Larger icon size */
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem; /* Center the icon */
}

.service-icon i {
  font-size: 2rem; /* Larger icon */
  color: white;
}

/* Enhanced typography */
.service-item h3 {
  margin-bottom: 1rem;
  color: #1e3a8a;
  font-size: 1.5rem; /* Larger title */
  font-weight: 600;
}

.service-item p {
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 1.1rem; /* Larger description text */
  line-height: 1.6;
}

/* Enhanced list styling */
.service-item ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Left align list items */
}

.service-item ul li {
  padding: 0.75rem 0; /* More spacing between list items */
  color: #6b7280;
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
}

.service-item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e3a8a;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 1400px) {
  .services-grid {
    max-width: 1200px;
    gap: 1.5rem;
  }

  .service-item {
    padding: 3rem;
    min-height: 380px;
  }
}

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

  .service-item:nth-child(1),
  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(4),
  .service-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-item {
    min-height: 350px;
  }
}

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

  .service-item {
    padding: 2.5rem;
    min-height: auto;
  }
}

/* Why India Section */
.why-india {
  padding: 80px 0;
  background: #f8fafc;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #e5e7eb;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: white;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-card,
.vision-card {
  text-align: center;
  padding: 3rem;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Leadership Section */
.leadership {
  padding: 80px 0;
  background: #f8fafc;
}

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

.leader-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.leader-photo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.leader-photo i {
  font-size: 2.5rem;
  color: white;
}

.leader-card h3 {
  margin-bottom: 0.5rem;
}

.leader-card h4 {
  color: #6b7280;
  margin-bottom: 1rem;
}

.leader-expertise {
  margin-top: 1.5rem;
}

.expertise-tag {
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.25rem;
}

/* Company Values */
.company-values {
  padding: 80px 0;
  background: white;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Blog Styles */
.categories {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: white;
}

.blog-posts {
  padding: 80px 0;
  background: #f8fafc;
}

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

.blog-post {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(59, 130, 246, 0.05);
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.1);
}

.post-image {
  height: 200px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image i {
  font-size: 3rem;
  color: white;
}

.post-content {
  padding: 2rem;
}

.post-category {
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.post-content h3 {
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.post-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.read-more {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #3b82f6;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #1e3a8a;
}

/* Contact Page Styles */
.contact-form-section {
  padding: 80px 0;
  background: white;
}

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

.contact-info h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 1.2rem;
  color: white;
}

.method-details h4 {
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

.method-details p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.social-connect h4 {
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #e5e7eb;
}

.contact-form-container h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #6b7280;
}

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

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

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

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

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Enhanced Hover Effects */
.service-card:hover .card-icon,
.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.leader-card:hover .leader-photo {
  transform: scale(1.05);
}

.blog-post:hover .post-image {
  transform: scale(1.05);
}

/* Enhanced Visual Hierarchy */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.2),
    transparent
  );
  margin: 60px 0;
}

/* Enhanced Card Transitions */
.service-card,
.service-item,
.blog-post,
.leader-card,
.faq-item {
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card.animate,
.service-item.animate,
.blog-post.animate,
.leader-card.animate,
.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Button States */
.btn:active {
  transform: translateY(-1px);
}

/* Enhanced Form Focus States */
.form-group input:focus,
.form-group select:focus,
.newsletter-form input:focus {
  transform: translateY(-2px);
}

/* Enhanced Navigation Active States */
.nav-menu a.active {
  color: #1e3a8a;
}

.nav-menu a.active::after {
  width: 100%;
}

/* Enhanced Stats */
.stat-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Enhanced Focus Indicators */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.2);
}

/* Enhanced Hover States for Interactive Elements */
.nav-menu a:hover,
.social-link:hover,
.read-more:hover {
  transform: translateY(-1px);
}

/* Enhanced Visual Feedback */
.service-card:active,
.service-item:active,
.blog-post:active {
  transform: translateY(-4px);
  transition: transform 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .newsletter-form input {
    min-width: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .testimonial-card {
    padding: 2rem;
  }

  .lead-capture {
    padding: 80px 0 60px;
  }

  .form-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .contact-form {
    padding: 2.5rem;
  }

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

  .form-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .service-card,
  .contact-form {
    padding: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .service-item,
  .leader-card,
  .faq-item {
    padding: 1.5rem;
  }

  .testimonials {
    padding: 80px 0 60px;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-number {
    font-size: 2.5rem;
  }

  .lead-capture {
    padding: 60px 0 40px;
  }

  .contact-form {
    padding: 2rem;
    border-radius: 20px;
  }

  .form-icon {
    width: 60px;
    height: 60px;
  }

  .form-icon i {
    font-size: 1.5rem;
  }

  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    padding: 18px 18px 18px 50px;
    font-size: 0.95rem;
  }

  .input-icon {
    left: 18px;
    font-size: 1rem;
  }

  .submit-btn {
    padding: 18px 30px;
    font-size: 1rem;
  }
}

/* Enhanced Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e3a8a;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  transition: all 0.3s ease;
}

.nav-menu.mobile-menu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-menu.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.nav-menu.mobile-menu a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #1e3a8a;
  transform: translateX(10px);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.mobile-menu {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-form-compact {
    margin: 2rem auto 0;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .nav-menu.mobile-menu {
    top: 80px;
    height: calc(100vh - 80px);
    padding: 1.5rem;
  }

  .nav-menu.mobile-menu a {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .nav-container {
    height: 80px;
    padding: 0 20px;
  }

  .nav-logo h2 {
    font-size: 1.8rem;
  }
}
