/* ===== MODERN GLASSMORPHISM DESIGN 2026 ===== */

/* CSS Custom Properties for 2026 Design System */
:root {
  --primary-color: #2D9CDB;        /* Modern cyan-blue */
  --secondary-color: #1B74E4;      /* Deep blue */
  --accent-color: #FF4C61;         /* Modern red-pink for accents */
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --background-gradient: linear-gradient(135deg, #1B1B2F, #162447, #1F4068);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-color: #ffffff;
  --light-text: #C5C6C7;
  --white: #ffffff;
  
  /* Modern Gradients using custom colors */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --secondary-gradient: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  --dark-gradient: linear-gradient(135deg, var(--text-color) 0%, #1a202c 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(30, 136, 229, 0.1);
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;
  
  /* Spacing & Layout */
  --container-max-width: 1400px;
  --section-padding: 8rem 0;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Glass Effects */
  --backdrop-blur: blur(20px);
  --backdrop-blur-strong: blur(40px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background: var(--background-gradient);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* High DPI / 4K Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    font-size: 18px;
  }
}

@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
  body {
    font-size: 20px;
  }
}

/* Mobile Typography Improvements */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 2rem;
  }
  
  .feature-card h3,
  .service-card h3,
  .portfolio-info h3,
  .blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card p,
  .service-card p,
  .portfolio-info p,
  .blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .feature-card h3,
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .about-text h3 {
    font-size: 1.3rem;
  }
  
  .contact-info h3 {
    font-size: 1.6rem;
  }
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--background-gradient);
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  top: 50%;
  right: -200px;
  animation-delay: -7s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  bottom: -250px;
  left: 50%;
  animation-delay: -14s;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(30,136,229,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(106,72,215,0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: sparkle 15s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes sparkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-200px); }
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glass Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.hidden {
  transform: translateY(-100%);
}

.nav-container {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.nav-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.nav-logo .logo-link:hover {
  color: var(--white);
}

.logo-icon {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.4);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 12px;
  z-index: 1001;
  border-radius: 8px;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hamburger.active {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
}

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

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

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

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
  position: relative;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 600px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.4);
}

.cta-primary i {
  transition: var(--transition-smooth);
}

.cta-primary:hover i {
  transform: translateX(5px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Visual Container for Free Floating Icons */
.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateX(0);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: var(--white);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: techIconFloat 6s ease-in-out infinite;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 2;
}

.tech-icon::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;
  z-index: 1;
}

.tech-icon:hover::before {
  left: 100%;
}

.tech-icon:hover {
  transform: translateY(-15px) scale(1.15) rotateY(5deg);
  background: linear-gradient(135deg, 
    rgba(45, 156, 219, 0.2) 0%, 
    rgba(102, 126, 234, 0.15) 100%);
  border-color: rgba(45, 156, 219, 0.4);
  box-shadow: 
    0 25px 80px rgba(45, 156, 219, 0.3),
    0 0 0 1px rgba(45, 156, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation-play-state: paused;
}

.tech-icon i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 50%, 
    #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  z-index: 2;
  position: relative;
}

.tech-icon:hover i {
  transform: scale(1.4) rotate(15deg);
  background: linear-gradient(135deg, 
    #4facfe 0%, 
    #00f2fe 50%, 
    #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(79, 172, 254, 0.3));
}

/* Tech Icon Free Floating Positions */
.icon-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: 10%;
  right: 20%;
  animation-delay: 0.2s;
}

.icon-3 {
  top: 50%;
  right: 10%;
  animation-delay: 0.4s;
}

.icon-4 {
  bottom: 30%;
  left: 10%;
  animation-delay: 0.6s;
}

.icon-5 {
  bottom: 15%;
  right: 25%;
  animation-delay: 0.8s;
}

.icon-6 {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

@keyframes techIconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
  }
  50% {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
  }
  75% {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
  }
}

@keyframes containerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes techIconPulse {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 12px 40px rgba(45, 156, 219, 0.15),
      0 0 0 1px rgba(45, 156, 219, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes techIconGlow {
  0%, 100% {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  50% {
    filter: drop-shadow(0 4px 8px rgba(79, 172, 254, 0.2));
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.preloader.preloader-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader .loader {
  width: 80px;
  height: 80px;
  animation: logoSpin 2s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(45, 156, 219, 0.3));
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    height: 400px;
    order: 2;
  }
  
  .tech-icons-container {
    max-width: 400px;
    height: 400px;
    gap: 1.5rem;
  }
  
  .tech-icon {
    width: 80px;
    height: 80px;
  }
  
  .tech-icon i {
    font-size: 2rem;
  }
  
  .tech-icon span {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    height: 350px;
    order: 2;
  }
  
  .tech-icons-container {
    max-width: 350px;
    height: 350px;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .tech-icon {
    width: 70px;
    height: 70px;
  }
  
  .tech-icon i {
    font-size: 1.8rem;
  }
  
  .tech-icon span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    height: 300px;
    order: 2;
  }
  
  .tech-icons-container {
    max-width: 300px;
    height: 300px;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
  
  .tech-icon i {
    font-size: 1.5rem;
  }
  
  .tech-icon span {
    font-size: 0.6rem;
  }
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--glass-shadow);
  animation: float-card 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  right: 15%;
  animation-delay: -1.5s;
}

.card-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: -3s;
}

.card-5 {
  bottom: 5%;
  right:5%;
  animation-delay: -6s;
  padding: 2.5rem;
  transform: scale(1.2);
  animation: float-card-large 6s ease-in-out infinite;
}

.card-6 {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -7.5s;
}

.card-7 {
  top: 80%;
  right: 60%;
  transform: translateY(-50%);
  animation-delay: -9s;
}

.card-8 {
  top: 40%;
  left: 40%;
  transform: translateY(-50%);
  animation-delay: -10.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Special animations for cards with transforms */
.card-6 {
  animation: float-card-center-x 6s ease-in-out infinite;
}

.card-7 {
  animation: float-card-center-y 6s ease-in-out infinite;
}

.card-8 {
  animation: float-card-center-y 6s ease-in-out infinite;
}

@keyframes float-card-center-x {
  0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-20px) rotate(2deg); }
}

@keyframes float-card-center-y {
  0%, 100% { transform: translateY(-50%) translateY(0px) rotate(0deg); }
  50% { transform: translateY(-50%) translateY(-20px) rotate(2deg); }
}

@keyframes float-card-large {
  0%, 100% { transform: scale(1.2) translateY(0px) rotate(0deg); }
  50% { transform: scale(1.2) translateY(-20px) rotate(2deg); }
}



/* Features Preview */
.features-preview {
  padding: 6rem 0;
  position: relative;
}

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

.glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Premium Glass Footer */
.glass-footer {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(27, 27, 47, 0.95) 0%, 
    rgba(22, 36, 71, 0.9) 50%, 
    rgba(31, 64, 104, 0.95) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(45, 156, 219, 0.3);
  padding: 6rem 0 3rem;
  margin-top: 6rem;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.glass-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(45, 156, 219, 0.6) 50%, 
    transparent 100%);
}

.glass-footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(45, 156, 219, 0.05) 0%, 
    transparent 70%);
  animation: footer-glow 8s ease-in-out infinite;
  pointer-events: none;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.footer-brand {
  max-width: 450px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  transition: var(--transition-smooth);
  object-fit: contain;
}

.footer-logo:hover img {
  transform: scale(1.05) rotate(5deg);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 30px rgba(45, 156, 219, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-cta::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.6s ease;
}

.footer-cta:hover::before {
  left: 100%;
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 156, 219, 0.4);
}

.footer-cta i {
  transition: var(--transition-smooth);
}

.footer-cta:hover i {
  transform: translateX(5px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-column {
  position: relative;
}

.footer-column::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

.footer-column:hover h4::after {
  width: 100%;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  padding-left: 0;
  font-weight: 500;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--primary-color);
  font-weight: bold;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(8px);
  padding-left: 20px;
}

.footer-column a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(45, 156, 219, 0.15);
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(45, 156, 219, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 156, 219, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 156, 219, 0.1);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-gradient);
  border-radius: 50%;
  transition: var(--transition-smooth);
  transform: translate(-50%, -50%);
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link i {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(45, 156, 219, 0.4);
  box-shadow: 0 10px 30px rgba(45, 156, 219, 0.3);
}

.social-link:hover i {
  color: var(--white);
  transform: scale(1.1);
}

/* Footer Newsletter Section */
.footer-newsletter {
  background: rgba(45, 156, 219, 0.1);
  border: 1px solid rgba(45, 156, 219, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(45, 156, 219, 0.1);
  animation: footer-float 6s ease-in-out infinite;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(45, 156, 219, 0.1) 0%, 
    transparent 70%);
  animation: newsletter-glow 6s ease-in-out infinite;
}

@keyframes newsletter-glow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.footer-newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(45, 156, 219, 0.2);
}

.newsletter-form button {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(45, 156, 219, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 156, 219, 0.4);
}

/* Animations */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(27, 27, 47, 0.98);
    -webkit-backdrop-filter: var(--backdrop-blur-strong);
    backdrop-filter: var(--backdrop-blur-strong);
    border-top: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(45, 156, 219, 0.6) 50%, 
      transparent 100%);
  }
  
  .nav-menu .nav-link {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition-smooth);
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-menu .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 20px rgba(45, 156, 219, 0.3);
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .nav-menu .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 156, 219, 0.4);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-brand p {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-cta {
    margin: 0 auto;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h4 {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-bottom::before {
    width: 60px;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .newsletter-form input {
    width: 100%;
    min-width: 100%;
    margin-bottom: 0;
  }
  
  .newsletter-form button {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .floating-card i {
    font-size: 1.5rem;
  }
  
  /* Clean positioning for mobile */
  .card-1 {
    top: 5%;
    left: 5%;
  }
  
  .card-2 {
    top: 5%;
    right: 5%;
  }
  
  .card-3 {
    bottom: 5%;
    left: 5%;
  }
  
  .card-5 {
    bottom: 5%;
    right: 5%;
    padding: 2rem;
    transform: scale(1.1);
  }
  
  .card-6 {
    top: 5%;
    left: 50%;
  }
  
  .card-7 {
    top: 50%;
    right: 5%;
  }
  
  .card-8 {
    top: 50%;
    left: 5%;
  }
  
  /* Footer mobile optimizations */
  .glass-footer {
    padding: 3rem 0 2rem;
    margin-top: 3rem;
  }
  
  .footer-newsletter {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .footer-newsletter h3 {
    font-size: 1.2rem;
  }
  
  .footer-content {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    width: 40px;
    height: 40px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .footer-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-column a {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .social-link i {
    font-size: 1.1rem;
  }
  
  .newsletter-form {
    gap: 0.8rem;
  }
  
  .newsletter-form input {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  
  .newsletter-form button {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}

/* High DPI / 4K Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .glass-card,
  .floating-card,
  .nav-cta,
  .cta-primary {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .hero-badge,
  .cta-secondary {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #4facfe;
  outline-offset: 2px;
}

/* ===== PROFESSIONAL CONTACT PAGE ANIMATIONS ===== */

/* Typewriter Animation */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary-color); }
}

.typewriter-text {
  overflow: hidden;
  border-right: 3px solid var(--primary-color);
  white-space: nowrap;
  margin: 0 auto;
  animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Animated Gradient Text */
.animated-gradient {
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

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

/* Fade In Text Animation */
.fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Animation for CTA */
.pulse-animation {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.6), 0 0 20px rgba(30, 136, 229, 0.4);
  }
}

/* Hover Lift Effect */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}


/* Contact Visual Styles */
.contact-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.contact-orb {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orb-float 6s ease-in-out infinite;
}

.orb-inner {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(45, 156, 219, 0.4);
  z-index: 3;
  position: relative;
}

.orb-ring {
  position: absolute;
  border: 2px solid rgba(45, 156, 219, 0.3);
  border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite;
}

.orb-ring.ring-2 {
  width: 120px;
  height: 120px;
  animation-delay: 1s;
}

.orb-ring.ring-3 {
  width: 160px;
  height: 160px;
  animation-delay: 2s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes ring-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Contact Icons */
.contact-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glass-shadow);
  animation: icon-float 4s ease-in-out infinite;
}

.contact-icon:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon .icon-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-icon:hover .icon-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.icon-phone { top: 15%; left: 20%; animation-delay: 0s; }
.icon-email { top: 15%; right: 20%; animation-delay: 1s; }
.icon-location { bottom: 15%; left: 20%; animation-delay: 2s; }
.icon-time { bottom: 15%; right: 20%; animation-delay: 3s; }

@keyframes icon-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Enhanced Form Animations */
.animated-form {
  animation: form-slide-in 1s ease-out;
}

@keyframes form-slide-in {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.input-container {
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 2;
}

.textarea-container {
  margin-bottom: 2.5rem;
  z-index: 2;
}

.textarea-container textarea {
  resize: vertical;
  min-height: 140px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  line-height: 1.6;
  font-family: inherit;
}

.input-container input,
.input-container textarea {
  width: 100%;
  padding: 1.2rem 0 1.2rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 3;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-container:focus-within .input-icon {
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.input-container.error .input-icon {
  color: #ff6b6b;
}

.input-container input:focus,
.input-container textarea:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 0 0 3px rgba(45, 156, 219, 0.1),
    0 8px 25px rgba(45, 156, 219, 0.15);
  transform: translateY(-2px);
}

.input-container input:hover,
.input-container textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.floating-label {
  position: absolute;
  top: 1.2rem;
  left: 3.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  transform-origin: left;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 3.5rem);
}

/* Floating label states - controlled by JavaScript classes */
.input-container.focused .floating-label,
.input-container.has-content .floating-label {
  transform: translateY(-2rem) scale(0.85);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.input-container.error input,
.input-container.error textarea {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
  box-shadow: 
    0 0 0 3px rgba(255, 107, 107, 0.1),
    0 8px 25px rgba(255, 107, 107, 0.15);
}

.input-container.error .floating-label {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 3.5rem;
  font-weight: 500;
  animation: errorSlideIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.field-error::before {
  content: '⚠';
  font-size: 0.9rem;
  margin-right: 0.25rem;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 50%, 
    #f093fb 100%);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(102, 126, 234, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-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.6s ease;
}

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

.submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, 
    #764ba2 0%, 
    #f093fb 50%, 
    #667eea 100%);
}

.submit-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.submit-btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  opacity: 0;
  visibility: hidden;
}

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

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Success Animation */
.submit-btn.success {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  animation: success-pulse 0.6s ease;
  box-shadow: 
    0 10px 30px rgba(76, 175, 80, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn.success:hover {
  background: linear-gradient(135deg, #45a049, #4CAF50);
  box-shadow: 
    0 15px 40px rgba(76, 175, 80, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes success-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Error Animation */
.submit-btn.error {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  animation: error-shake 0.6s ease;
  box-shadow: 
    0 10px 30px rgba(244, 67, 54, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn.error:hover {
  background: linear-gradient(135deg, #d32f2f, #f44336);
  box-shadow: 
    0 15px 40px rgba(244, 67, 54, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes error-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ===== ADDITIONAL PAGE STYLES ===== */

/* Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Page Styles */
.about {
  padding: var(--section-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--glass-shadow);
}

/* Services Page Styles */
.services {
  padding: var(--section-padding);
}

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

.service-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Contact Page Styles */
.contact {
  padding: var(--section-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  width: 20px;
  color: var(--primary-color);
}

.contact-form {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(30, 136, 229, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(45, 156, 219, 0.6) 50%, 
    transparent 100%);
}

.contact-form::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(45, 156, 219, 0.05) 0%, 
    transparent 70%);
  animation: form-glow 8s ease-in-out infinite;
  pointer-events: none;
}

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

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

/* Portfolio Page Styles */
.portfolio {
  padding: var(--section-padding);
}

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

.portfolio-item {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 2rem;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Blog Page Styles */
.blog {
  padding: var(--section-padding);
}

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

.blog-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--backdrop-blur);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.blog-link i {
  transition: var(--transition-smooth);
}

.blog-link:hover i {
  transform: translateX(3px);
}

/* Portfolio Overlay & Tags */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.portfolio-tech span {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: rgba(30, 136, 229, 0.2);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(30, 136, 229, 0.3);
}

/* Blog Category */
.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
  text-align: center;
  padding: 4rem 0;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  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: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
}

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

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

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .portfolio-item,
  .blog-card {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .input-container input,
  .input-container textarea {
    padding: 1rem 0 1rem 2.5rem;
  }
  
  .floating-label {
    left: 3rem;
  }
  
  .input-icon {
    left: 0.8rem;
    font-size: 1rem;
    width: 18px;
    height: 18px;
  }
  
  .field-error {
    padding-left: 3rem;
    font-size: 0.8rem;
  }
  
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .about-text,
  .contact-info {
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input {
    min-width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .service-card,
  .portfolio-item,
  .blog-card,
  .contact-form {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .input-container input,
  .input-container textarea {
    padding: 0.8rem 0 0.8rem 2.2rem;
    font-size: 0.95rem;
  }
  
  .floating-label {
    left: 2.7rem;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 0.7rem;
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
  }
  
  .field-error {
    padding-left: 2.7rem;
    font-size: 0.75rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .portfolio-image img,
  .blog-image img {
    height: 200px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
  }
}

/* ===== SECTION TITLE WITH LOGO ===== */
.section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.section-logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.section-title-container .section-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive design for section title with logo */
@media (max-width: 768px) {
  .section-title-container {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .section-logo {
    width: 50px;
    height: 50px;
  }
  
  .section-title-container .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-logo {
    width: 45px;
    height: 45px;
  }
  
  .section-title-container .section-title {
    font-size: 1.8rem;
  }
}

/* ===== PROFESSIONAL TEAM IMAGE STYLING ===== */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.1);
}

.image-container:hover .team-image {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.team-names {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

  .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(135, 206, 250, 0.2);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
  }

.team-member:nth-child(1) {
  animation-delay: 0.2s;
}

.team-member:nth-child(2) {
  animation-delay: 0.4s;
}

.team-member:hover {
  background: rgba(135, 206, 250, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 206, 250, 0.3);
  border-color: rgba(135, 206, 250, 0.6);
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.3rem;
}

.member-role {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.team-member .social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  justify-content: center;
  align-items: center;
}

  .team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(135, 206, 250, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(135, 206, 250, 0.4);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

.team-member .social-links a:hover {
  background: rgba(135, 206, 250, 0.4);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 20px rgba(135, 206, 250, 0.4);
  border-color: rgba(135, 206, 250, 0.6);
}

.team-member .social-links a i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team-member .social-links a:hover i {
  transform: scale(1.1);
}

/* Specific colors for each social platform */
.team-member .social-links a[href*="github"]:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

.team-member .social-links a[href*="linkedin"]:hover {
  background: rgba(0, 119, 181, 0.8);
  color: white;
}

.team-member .social-links a[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: floatIcon 4s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.floating-icon i {
  animation: iconPulse 2s ease-in-out infinite;
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 2s;
}

.icon-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

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

/* Professional Image Responsive Design */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-text {
    order: 1;
    padding: 0 1rem;
  }
  
  .about-image {
    order: 2;
    display: flex;
    justify-content: center;
  }
  
  .image-container {
    height: 350px;
    max-width: 300px;
  }
  
  .overlay-content h4 {
    font-size: 1.5rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
  }
  
  .team-names {
    gap: 0.8rem;
    flex-direction: column;
  }
  
  .team-member {
    padding: 0.6rem 1rem;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .member-name {
    font-size: 1.1rem;
  }
  
  .member-role {
    font-size: 0.85rem;
  }
  
  .team-member .social-links {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }
  
  .team-member .social-links a {
    width: 30px;
    height: 30px;
  }
  
  .team-member .social-links a i {
    font-size: 0.9rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .floating-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .icon-1 { top: 8%; left: 5%; }
  .icon-2 { top: 12%; right: 8%; }
  .icon-3 { bottom: 18%; left: 8%; }
  .icon-4 { bottom: 12%; right: 5%; }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .stat-item {
    padding: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .image-container {
    height: 300px;
    max-width: 280px;
  }
  
  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ===== MOBILE RESPONSIVE FLOATING CARDS ===== */

/* Mobile Devices - Optimized floating cards layout */
@media (max-width: 768px) {
  .hero-visual {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .floating-card {
    display: flex !important;
    position: relative !important;
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    height: 80px;
    margin: 0;
    padding: 0.8rem;
    font-size: 0.8rem;
    animation: none;
    opacity: 1;
    transform: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .floating-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .floating-card i {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  
  .floating-card span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }
  
  /* Remove all absolute positioning for mobile */
  .card-1, .card-2, .card-3, .card-5, .card-6, .card-7, .card-8 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation-delay: 0s !important;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-content {
    order: 1;
    padding: 1rem 0;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero-visual {
    height: auto;
    min-height: 300px;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  .floating-card {
    flex: 0 0 calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
    height: 70px;
    padding: 0.6rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }
  
  .floating-card i {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .floating-card span {
    font-size: 0.7rem;
    font-weight: 500;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    max-width: 260px;
  }
  
  .hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .stat-item {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Contact page mobile optimizations */
  .contact-visual {
    min-height: 400px;
  }
  
  .contact-orb {
    width: 200px;
    height: 200px;
  }
  
  .orb-inner {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .orb-ring.ring-2 {
    width: 100px;
    height: 100px;
  }
  
  .orb-ring.ring-3 {
    width: 140px;
    height: 140px;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }
  
  .icon-phone { top: 10%; left: 15%; }
  .icon-email { top: 10%; right: 15%; }
  .icon-location { bottom: 10%; left: 15%; }
  .icon-time { bottom: 10%; right: 15%; }
  
  
  .typewriter-text {
    font-size: 1.5rem;
  }
  
  .animated-gradient {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .animated-bg,
  .particles,
  .gradient-orb {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}