/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* 3D Background Objects with Rotation Effects */
.background-3d-objects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.background-3d-objects::before,
.background-3d-objects::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
  animation: rotate3D 20s linear infinite;
  transform-style: preserve-3d;
}

.background-3d-objects::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  box-shadow: 
    0 0 50px rgba(30, 58, 138, 0.2),
    inset 0 0 50px rgba(30, 58, 138, 0.1);
}

.background-3d-objects::after {
  bottom: 15%;
  right: 15%;
  animation-delay: 10s;
  box-shadow: 
    0 0 50px rgba(59, 130, 246, 0.2),
    inset 0 0 50px rgba(59, 130, 246, 0.1);
}

/* Additional 3D floating objects */
.background-3d-objects .floating-cube {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 15px;
  animation: rotate3DCube 15s linear infinite;
  transform-style: preserve-3d;
}

.background-3d-objects .floating-cube:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.background-3d-objects .floating-cube:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 5s;
}

.background-3d-objects .floating-cube:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 10s;
}

.background-3d-objects .floating-cube:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 15s;
}

/* 3D Rotation Animations */
@keyframes rotate3D {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(0px);
  }
  25% {
    transform: rotateX(90deg) rotateY(90deg) rotateZ(90deg) translateZ(50px);
  }
  50% {
    transform: rotateX(180deg) rotateY(180deg) rotateZ(180deg) translateZ(100px);
  }
  75% {
    transform: rotateX(270deg) rotateY(270deg) rotateZ(270deg) translateZ(50px);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateZ(0px);
  }
}

@keyframes rotate3DCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(0px) scale(1);
  }
  33% {
    transform: rotateX(120deg) rotateY(120deg) rotateZ(120deg) translateZ(30px) scale(1.1);
  }
  66% {
    transform: rotateX(240deg) rotateY(240deg) rotateZ(240deg) translateZ(60px) scale(0.9);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateZ(0px) scale(1);
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Optimize for performance */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  min-height: 100vh;
}

/* Professional Color Palette */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #374151;
  --accent-color: #3b82f6;
  --success-color: #059669;
  --warning-color: #dc2626;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-dark: #111827;
  --border-color: #e5e7eb;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles - Professional Blue Gradient */
header {
  background: linear-gradient(135deg, 
    #1e3a8a 0%, 
    #3b82f6 25%, 
    #1e40af 50%, 
    #1d4ed8 75%, 
    #2563eb 100%);
  background-size: 400% 400%;
  animation: professionalShift 12s ease infinite;
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Professional Blue gradient animation */
@keyframes professionalShift {
  0% { 
    background-position: 0% 50%;
    filter: brightness(1.05) saturate(1.1);
  }
  50% { 
    background-position: 100% 50%;
    filter: brightness(1.1) saturate(1.15);
  }
  100% { 
    background-position: 0% 50%;
    filter: brightness(1.05) saturate(1.1);
  }
}

/* Professional Floating Elements */
header::before,
header::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite;
  z-index: 1;
}

header::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(30,58,138,0.15) 0%, transparent 70%);
}

header::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
}

@keyframes floatOrb {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-20px) scale(1.05);
    opacity: 0.6;
  }
}

.logo-container {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.2),
    0 0 60px rgba(255,255,255,0.2),
    0 0 120px rgba(102,126,234,0.15),
    0 0 180px rgba(118,75,162,0.1);
  border: 4px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  background: white;
  padding: 8px;
  position: relative;
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.2),
      0 0 120px rgba(30,58,138,0.15),
      0 0 180px rgba(59,130,246,0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.3),
      0 0 120px rgba(30,58,138,0.25),
      0 0 180px rgba(59,130,246,0.15);
  }
  100% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.2),
      0 0 120px rgba(30,58,138,0.15),
      0 0 180px rgba(59,130,246,0.1);
  }
}

.logo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6, #1e40af, #1d4ed8, #2563eb);
  background-size: 400% 400%;
  animation: professionalBorder 3s linear infinite;
  z-index: -1;
  box-shadow: 
    0 0 20px rgba(30,58,138,0.3),
    0 0 40px rgba(59,130,246,0.2),
    0 0 60px rgba(37,99,235,0.15);
}

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

.logo:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 
    0 12px 40px rgba(0,0,0,0.3),
    0 0 80px rgba(255,255,255,0.3),
    0 0 160px rgba(30,58,138,0.25),
    0 0 240px rgba(59,130,246,0.15);
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.3),
    0 0 20px rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #ffffff, #f0f8ff, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease infinite;
}

@keyframes titleGlow {
  0% { 
    background-position: 0% 50%;
    filter: brightness(1.1);
  }
  50% { 
    background-position: 100% 50%;
    filter: brightness(1.2);
  }
  100% { 
    background-position: 0% 50%;
    filter: brightness(1.1);
  }
}

header p {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.5s both;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.header-tagline {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.header-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 15px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.8s both;
  background: rgba(255,255,255,0.15);
  padding: 10px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.header-subtitle:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.header-description {
  max-width: 800px;
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 1s both;
}

.header-description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.12);
  padding: 25px 30px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.header-description p:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Navigation - Professional Style */
nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
  border-bottom: 1px solid rgba(30, 58, 138, 0.3);
}

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

.nav-logo .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e3a8a;
  padding: 8px 15px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(30, 58, 138, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.logo-link:hover::before {
  left: 100%;
}

.logo-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-medium);
}

.logo-link:hover .logo {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
  border-color: var(--primary-color);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  text-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.logo-link:hover .logo-text {
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(30, 58, 138, 0.6);
  transform: scale(1.02);
}

nav a {
  color: #1e3a8a;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: var(--transition);
  position: relative;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  opacity: 1;
}

nav a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Services Section - Professional Design */
.services {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}

.services h2 {
  color: #1e3a8a;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.services-intro {
  color: #374151;
  font-size: 1.2rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30,58,138,0.2);
  border-radius: var(--border-radius-lg);
  padding: 35px 25px;
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  border-color: rgba(30, 58, 138, 0.4);
  box-shadow: var(--shadow-heavy);
  text-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
}

/* About Section - Professional Colors */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 154, 158, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(254, 207, 239, 0.3) 0%, transparent 50%);
  animation: float 12s ease-in-out infinite;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  color: #d63384;
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-content p {
  color: #6f42c1;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

.feature {
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  animation: bounce 2s ease infinite;
}

.feature h3 {
  color: #d63384;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature p {
  color: #6f42c1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section - Professional Colors */
.contact {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
}

.contact h2 {
  color: #1e3a8a;
  font-size: 3rem;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30,58,138,0.2);
  border-radius: 20px;
  padding: 40px 30px;
  color: #1e3a8a;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 58, 138, 0.4);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.2),
    0 0 0 1px rgba(30, 58, 138, 0.3);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contact-card p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.whatsapp-btn, .email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.email-btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.whatsapp-btn:hover, .email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.email-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Map Section - Professional Colors */
.map {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: float 18s ease-in-out infinite;
}

.map h2 {
  color: #2c3e50;
  font-size: 3rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.location-info {
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

.location-info h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.location-info p {
  color: #34495e;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.map-link {
  display: inline-block;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Footer - Simple Clean Design */
footer {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #333;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  color: #495057;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p, .footer-section a {
  color: #6c757d;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #495057;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
  color: #6c757d;
  font-size: 0.9rem;
}

/* Basic Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translate3d(0, 0, 0);
  }
  40% { 
    transform: translate3d(0, -10px, 0);
  }
  60% { 
    transform: translate3d(0, -5px, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    min-height: 80vh;
    padding: 40px 20px;
  }
  
  header h1 {
    font-size: 3rem;
  }
  
  header p {
    font-size: 1.3rem;
  }
  
  .header-tagline {
    font-size: 1.5rem;
  }
  
  .header-subtitle {
    font-size: 1.1rem;
    padding: 6px 15px;
  }
  
  .header-description {
    margin: 20px auto 0;
  }
  
  .header-description p {
    font-size: 1rem;
    padding: 15px 20px;
  }
  
  .logo {
    width: 120px;
    height: 120px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo-link {
    padding: 6px 12px;
    gap: 8px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .nav-logo .logo {
    width: 40px;
    height: 40px;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    min-height: 70vh;
    padding: 30px 15px;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  .header-tagline {
    font-size: 1.3rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
    padding: 6px 15px;
  }
  
  .header-description {
    margin: 15px auto 0;
  }
  
  .header-description p {
    font-size: 0.95rem;
    padding: 12px 15px;
    line-height: 1.6;
  }
  
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .logo-link {
    padding: 5px 10px;
    gap: 6px;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  .nav-logo .logo {
    width: 35px;
    height: 35px;
  }
  
  .services,
  .contact,
  .map {
    padding: 60px 15px;
  }
  
  .service-item {
    padding: 20px;
  }
  
  .contact-info {
    font-size: 0.9rem;
  }
}

/* Stylish Contact Form Section */
.contact-form-section {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(30,58,138,0.2);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.1),
    0 0 0 1px rgba(30,58,138,0.1);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30,58,138,0.1), rgba(59,130,246,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.form-container:hover::before {
  opacity: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  color: #06b6d4;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease-out;
}

.form-header p {
  color: #374151;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stylish-form {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

.input-wrapper {
  position: relative;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.input-wrapper:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.input-wrapper:focus-within {
  background: rgba(255,255,255,0.2);
  border-color: #3b82f6;
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.15),
    0 0 0 3px rgba(255,0,110,0.2);
  transform: translateY(-3px);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 18px 20px 18px 50px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.input-wrapper label {
  position: absolute;
  top: 18px;
  left: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  transform-origin: left top;
}

.input-wrapper input:focus + label,
.input-wrapper input:valid + label,
.input-wrapper select:focus + label,
.input-wrapper select:valid + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:valid + label {
  top: 8px;
  left: 50px;
  font-size: 0.8rem;
  color: #ff006e;
  transform: scale(0.9);
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
  color: #ff006e;
  transform: translateY(-50%) scale(1.1);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #06ffa5);
  transition: width 0.3s ease;
}

.input-wrapper:focus-within .focus-border {
  width: 100%;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.submit-btn {
  position: relative;
  padding: 15px 30px;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 55px;
}

.whatsapp-submit {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.email-submit {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.whatsapp-submit:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.email-submit:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-content {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.form-footer p {
  color: #374151;
  font-size: 0.9rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .form-header h3 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-actions {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    padding: 15px 15px 15px 45px;
  }
  
  .input-wrapper label {
    left: 45px;
  }
  
  .input-wrapper input:focus + label,
  .input-wrapper input:valid + label,
  .input-wrapper select:focus + label,
  .input-wrapper select:valid + label,
  .input-wrapper textarea:focus + label,
  .input-wrapper textarea:valid + label {
    left: 45px;
  }
  
  .input-icon {
    left: 12px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 25px 15px;
  }
  
  .form-header h3 {
    font-size: 1.8rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
  
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    font-size: 0.9rem;
    padding: 12px 12px 12px 40px;
  }
  
  .input-wrapper label {
    font-size: 0.9rem;
    left: 40px;
  }
  
  .input-wrapper input:focus + label,
  .input-wrapper input:valid + label,
  .input-wrapper select:focus + label,
  .input-wrapper select:valid + label,
  .input-wrapper textarea:focus + label,
  .input-wrapper textarea:valid + label {
    left: 40px;
    font-size: 0.7rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 1rem;
  }
  
  .submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Optimize background gradients */
header,
.services,
.about,
.contact,
.map {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Optimize shadows for better performance */
.service-item,
.contact-card,
.form-container {
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

/* Optimize text rendering */
h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Optimize CSS animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes logoFloat {
  0%, 100% { 
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% { 
    transform: translate3d(0, -8px, 0) rotate(1deg);
  }
}

/* Optimize gradient animations */
@keyframes rainbowShift {
  0% { 
    background-position: 0% 50%;
    filter: brightness(1.1) saturate(1.2);
  }
  50% { 
    background-position: 100% 50%;
    filter: brightness(1.2) saturate(1.3);
  }
  100% { 
    background-position: 0% 50%;
    filter: brightness(1.1) saturate(1.2);
  }
}

/* Optimize logo glow animation */
@keyframes logoGlow {
  0% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.2),
      0 0 120px rgba(102,126,234,0.15),
      0 0 180px rgba(118,75,162,0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.3),
      0 0 120px rgba(102,126,234,0.25),
      0 0 180px rgba(118,75,162,0.15);
  }
  100% {
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.2),
      0 0 60px rgba(255,255,255,0.2),
      0 0 120px rgba(102,126,234,0.15),
      0 0 180px rgba(118,75,162,0.1);
  }
}

/* Optimize title glow animation */
@keyframes titleGlow {
  0% { 
    background-position: 0% 50%;
    filter: brightness(1.1);
  }
  50% { 
    background-position: 100% 50%;
    filter: brightness(1.2);
  }
  100% { 
    background-position: 0% 50%;
    filter: brightness(1.1);
  }
}

/* Optimize floating orb animation */
@keyframes floatOrb {
  0%, 100% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translate3d(0, -20px, 0) scale(1.05);
    opacity: 0.6;
  }
}

/* Optimize rainbow border animation */
@keyframes rainbowBorder {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* Optimize bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translate3d(0, 0, 0);
  }
  40% { 
    transform: translate3d(0, -10px, 0);
  }
  60% { 
    transform: translate3d(0, -5px, 0);
  }
}

/* Optimize spin animation */
@keyframes spin {
  0% { 
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% { 
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

/* Optimize gradient shift animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Optimize gradient rotate animation */
@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
