@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* Enhanced CSS Variables */
:root {
  --primary: #1a237e;
  --primary-dark: #0d153a;
  --primary-light: #283593;
  --secondary: #00bcd4;
  --secondary-dark: #008ba3;
  --accent: #ff4081;
  --accent-gradient: linear-gradient(45deg, #ff4081, #ff6b9d);
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  
  --bg-light: #f5f7ff;
  --bg-gradient: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
  --white: #ffffff;
  --white-transparent: rgba(255, 255, 255, 0.95);
  --text-dark: #1a1a2e;
  --text-gray: #5a5a72;
  --text-light: #8a8aa3;
  --border-gray: #e1e4f0;
  --border-light: #f0f2fa;
  
  --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  --gradient-secondary: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
  --gradient-accent: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
  --gradient-dark: linear-gradient(135deg, #0d153a 0%, #1a237e 100%);
  
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-floating: 0 25px 80px rgba(0, 0, 0, 0.15);
  --shadow-accent: 0 10px 30px rgba(255, 64, 129, 0.2);
  --shadow-blue: 0 10px 30px rgba(0, 188, 212, 0.2);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-full: 100px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Enhanced Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}


body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--bg-gradient);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 35, 126, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Enhanced Header with Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white-transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

a {
  text-decoration: none;
}


.header.scrolled {
  background: var(--white-transparent);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(30px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Enhanced Logo */
.logo {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.logo span {
  color: var(--secondary);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Navigation */
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none !important; /* Ensure no underline */
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
  border-radius: 2px;
  transition-delay: 0.1s;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 50%;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 50%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Enhanced CTA Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-btn {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.phone-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.phone-btn:hover::before {
  left: 100%;
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 160px 0 120px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
  opacity: 0.4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #b2ebf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  box-shadow: var(--shadow-medium);
}

.feature-item span {
  font-weight: 600;
  font-size: 15px;
}

/* Enhanced Hero Image */
.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  transform: rotate(-5deg);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-floating);
  border: 5px solid var(--white);
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-floating);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: float 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.floating-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.floating-card strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.floating-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 64, 129, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.btn-large {
  padding: 20px 45px;
  font-size: 18px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

/* Enhanced Services Section */
.services {
  padding: 120px 0;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(26, 35, 126, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(0, 188, 212, 0.03) 0%, transparent 50%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 20px;
  color: var(--text-gray);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Enhanced Service Cards */
.service-card {
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  transform: translate(50px, 50px);
  opacity: 0.1;
  transition: var(--transition-slow);
}

.service-card:hover::after {
  transform: translate(0, 0);
  width: 400px;
  height: 400px;
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-floating);
}

/* Service Card Colors */
.card-blue {
  border-top: 5px solid #2196f3;
}

.card-blue .service-icon {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.card-green {
  border-top: 5px solid #4caf50;
}

.card-green .service-icon {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.card-purple {
  border-top: 5px solid #9c27b0;
}

.card-purple .service-icon {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.card-red {
  border-top: 5px solid #f44336;
}

.card-red .service-icon {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.card-orange {
  border-top: 5px solid #ff9800;
}

.card-orange .service-icon {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.card-teal {
  border-top: 5px solid #009688;
}

.card-teal .service-icon {
  background: linear-gradient(135deg, #009688, #00796b);
  box-shadow: 0 10px 30px rgba(0, 150, 136, 0.3);
}

.card-indigo {
  border-top: 5px solid #3f51b5;
}

.card-indigo .service-icon {
  background: linear-gradient(135deg, #3f51b5, #303f9f);
  box-shadow: 0 10px 30px rgba(63, 81, 181, 0.3);
}

/* Enhanced Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transform: scale(0);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon::after {
  transform: scale(1);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Enhanced Stats Section */
.stats-section {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.stat-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #b2ebf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Enhanced Why Choose Section */
.why-choose {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}

.why-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.2;
  z-index: 1;
}

.why-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: grayscale(20%);
}

.why-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-floating);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.badge-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.why-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.8;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.benefit-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Enhanced Testimonials */
.testimonials {
  position: relative;
  padding: 120px 0;
  background: var(--gradient-primary);
  color: var(--white);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.testimonials .section-header {
  position: relative;
  z-index: 2;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.quote-icon {
  font-size: 80px;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.rating {
  color: #ffd700;
  font-size: 20px;
  display: flex;
  gap: 2px;
}

/* Enhanced CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #b2ebf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 22px;
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 100px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #b2ebf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}


.footer-col ul li a::before {
  content: '→';
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 10px;
  text-decoration: none !important;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-info a {
  text-decoration: none !important;
}

.btn, .phone-btn, .form-submit {
  text-decoration: none !important;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.6;
}

.contact-info p::before {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 300;
}

/* Loan Category Images Section */
.loan-category-images {
  padding: 80px 0;
  background: var(--bg-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-bounce);
  height: 300px;
}

.category-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-floating);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  color: var(--white);
}

.category-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-content p {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 300;
}

/* Enhanced Form Styles */
.form-container {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-floating);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
}

.form-container h3 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-smooth);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-submit {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 20px 45px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 64, 129, 0.4);
}

/* Enhanced Animations Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}