/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
      --primary-color: #1e40af;
      --primary-dark: #1e3a8a;
      --secondary-color: #059669;
      --accent-color: #d97706;
      --success-color: #10b981;
      --warning-color: #f59e0b;
      --error-color: #dc2626;
      --text-primary: #1f2937;
      --text-secondary: #6b7280;
      --text-light: #9ca3af;
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --bg-dark: #0f172a;
      --border-color: #e5e7eb;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
     --text-primary: #1f2937;
     --text-secondary: #6b7280;
     --text-light: #9ca3af;
     --bg-primary: #ffffff;
     --bg-secondary: #f8fafc;
     --bg-dark: #0f172a;
     --bg-gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
     --bg-gradient-2: linear-gradient(135deg, #059669 0%, #10b981 100%);
     --bg-gradient-3: linear-gradient(135deg, #1e40af 0%, #059669 100%);
     --bg-gradient-4: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     --bg-gradient-5: linear-gradient(135deg, #1e40af 0%, #059669 100%);
     --bg-gradient-6: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
     --bg-gradient-7: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
     --bg-gradient-8: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff8a95 100%);
     --logo-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #8b5cf6 100%);
     --sunset-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ff8e53 100%);
     --border-color: #e5e7eb;
     --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
     --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
     --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
     --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
     --shadow-colorful: 0 10px 25px -3px rgba(37, 99, 235, 0.2), 0 4px 15px -2px rgba(139, 92, 246, 0.15);
 }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading for Images */
.hero-img,
.about-img,
.story-img,
.why-img,
.team-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Images */
.hero-img[src],
.about-img[src],
.story-img[src],
.why-img[src],
.team-img[src] {
    animation: none;
    background: none;
}

/* Image Gallery Optimization (if needed) */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.image-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
}

.image-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.image-item:hover img {
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
}

.logo {
     width: 300px;
     height: auto;
     border-radius: 8px;
     object-fit: contain;
     background: white;
     padding: 2px;
 }


.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
     text-decoration: none;
     color: var(--text-primary);
     font-weight: 500;
     padding: 0.5rem 1rem;
     border-radius: 6px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

.nav-link::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: var(--primary-color);
     transition: left 0.3s ease;
     z-index: -1;
 }

.nav-link:hover::before,
.nav-link.active::before {
     left: 0;
 }

.nav-link:hover,
.nav-link.active {
      color: white;
      background: var(--logo-gradient);
      background-size: 200% 200%;
      animation: logoNavLinkShift 2s ease infinite;
      position: relative;
      box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
      border-radius: 8px;
      font-weight: 600;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
 }

@keyframes navLinkShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
}

@keyframes logoNavLinkShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
}

/* Enhanced Active Navigation */
.nav-link.active {
      background: var(--logo-gradient) !important;
      background-size: 200% 200% !important;
      animation: logoNavLinkShift 2s ease infinite !important;
      color: white !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
      box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4) !important;
      position: relative !important;
      z-index: 10 !important;
}

/* Navigation Dropdown - Removed */

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
      padding: 100px 0 80px;
      margin-top: 70px;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      position: relative;
      overflow: hidden;
}

@keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
}

.hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,50"/></svg>');
     background-size: 100% 100%;
     pointer-events: none;
     z-index: 1;
}
.hero .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border: #2046c3;
}
.cta-section .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border: #2046c3;
}
 .cta-section .btn-outline {
    background: transparent;
    color: #dee6ff;
    border-color: #e0e7ff;
}
 .hero .btn-outline {
    background: transparent;
    color: #dee6ff;
    border-color: #e0e7ff;
}
.testimonials-section .section-description {
    font-size: 1.1rem;
    color: #dfeaff;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}
.hero::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
     border-radius: 50%;
     animation: float 6s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}

@keyframes float {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 2;
 }

.hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1rem;
     color: white;
     text-shadow: 3px 3px 20px rgba(0,0,0,0.8);
     letter-spacing: -1px;
 }

.hero-subtitle {
     font-size: 1.5rem;
     color: #fbbf24;
     font-weight: 600;
     margin-bottom: 1.5rem;
     text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
 }

.hero-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2rem;
      line-height: 1.7;
      text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
      font-weight: 400;
  }

  .hero-contact {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 0.8rem 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
  }

  .hero-contact:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .hero-contact i {
      font-size: 1.2rem;
      color: #fbbf24;
  }

  .hero-contact span {
      font-size: 1rem;
      color: white;
      font-weight: 500;
  }

  .hero-phone {
      color: #fbbf24;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  .hero-phone:hover {
      color: #ffffff;
      text-decoration: underline;
  }

.hero-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

.hero-image {
     position: relative;
 }

.hero-img {
     width: 100%;
     height: 450px;
     object-fit: contain;
     border-radius: 20px;
     transition: all 0.3s ease;
     border-radius:21px;
 }


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
     background: var(--primary-color);
     color: white;
 }

.btn-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
     transition: left 0.5s;
 }

.btn-primary:hover::before {
     left: 100%;
 }

 .btn-primary:hover {
     background-position: 100% 100%;
     transform: translateY(-2px) scale(1.05);
     box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
 }

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
     padding: 80px 0;
     background: var(--bg-primary);
     position: relative;
 }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--text-primary);
     position: relative;
     z-index: 2;
 }

.section-description {
     font-size: 1.1rem;
     color: var(--text-secondary);
     max-width: 600px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

.services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }
.service-card {
    background: linear-gradient(135deg, #86b2ff 0%, #8097df 30%, #423df4 60%, #5f8de9 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 
ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: 1;
}

.service-card:hover::before {
     opacity: 1;
}

.service-card:hover {
       transform: translateY(-8px) scale(1.02);
       box-shadow: 0 20px 40px rgba(0,0,0,0.15);
       border-color: var(--primary-color);
       background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 20%, #b2ebf2 40%, #80deea 60%, #4dd0e1 80%, #26c6da 100%);
       animation: cardGlow 2s ease-in-out infinite alternate;
  }

.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .service-link {
      color: #000000;
      text-shadow: none;
  }

@keyframes cardGlow {
      0% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
      100% { box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3); }
}

.service-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary-color), var(--purple-color), var(--pink-color));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 1.8rem;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
      animation: pulse 2s infinite;
 }

@keyframes iconShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
}

@keyframes pulse {
     0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
     50% { transform: scale(1.05); box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4); }
}

.service-card:nth-child(1) .service-icon {
     background: linear-gradient(135deg, #ff6b6b, #ee5a52, #ff8e53);
}

.service-card:nth-child(2) .service-icon {
     background: linear-gradient(135deg, #4ecdc4, #44a08d, #093637);
}

.service-card:nth-child(3) .service-icon {
     background: linear-gradient(135deg, #45b7d1, #96ceb4, #feca57);
}

.service-card:nth-child(4) .service-icon {
     background: linear-gradient(135deg, #ffecd2, #fcb69f, #a8edea);
}

.service-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: white;
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

 .service-description {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 1.5rem;
      line-height: 1.6;
      position: relative;
      z-index: 2;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }

.service-link {
      color: white;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: 0.3s;
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
 }

@keyframes gradient-text {
     0%, 100% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
}

.service-link:hover {
     gap: 0.8rem;
 }

.services-view-all {
     text-align: center;
     margin-top: 3rem;
 }

/* About Preview */
.about-preview {
     padding: 80px 0;
     background: linear-gradient(180deg, #1e40af, #fb000b);
     background-size: 300% 300%;
     position: relative;
     overflow: hidden;
 }
 .about-preview .btn-outline {
    background: transparent;
    color: #f2f5ff;
    border-color: #eef2ff;
}

.about-preview::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(251, 191, 36, 0.1), rgba(217, 119, 6, 0.1));
     animation: aboutPreviewOverlay 10s ease infinite;
 }

@keyframes logoAboutPreviewShift {
     0% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
 }

@keyframes aboutPreviewOverlay {
     0%, 100% { opacity: 0.3; }
     50% { opacity: 0.6; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
     font-size: 1.1rem;
     color: white;
     margin-bottom: 2rem;
     line-height: 1.7;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
 }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
     display: block;
     font-size: 2rem;
     font-weight: 700;
     color: white;
     margin-bottom: 0.5rem;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
 }

.stat-label {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.8);
     font-weight: 500;
 }

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* CTA Section */
.cta-section {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
     color: white;
     text-align: center;
 }

.cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
     animation: ctaOverlay 8s ease infinite;
 }

@keyframes ctaShift {
     0% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
 }

@keyframes ctaOverlay {
     0%, 100% { opacity: 0.3; }
     50% { opacity: 0.6; }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
      background: #1f2937;
      color: white;
      padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
     margin-bottom: 1rem;
}

.footer-logo {
    width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 8px 2px;
}

.footer-payment {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-phonepe {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background: white;
    padding: 8px;
    box-shadow: var(--shadow-md);
    display: inline-block;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s 
ease;
    margin-top: 15px;
}

.footer-phonepe:hover {
    transform: scale(1.05);
}


.footer-description {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-values {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.value-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
     width: 40px;
     height: 40px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: 0.3s;
 }

.social-link:hover {
      background-position: 100% 100%;
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 8px 20px rgba(255, 0, 150, 0.4);
  }

  .phonepe-link {
      background: linear-gradient(135deg, #5f259f, #8b5cf6);
      position: relative;
      overflow: hidden;
  }

  .phonepe-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
  }

  .phonepe-link:hover::before {
      left: 100%;
  }

  .phonepe-link:hover {
      background: linear-gradient(135deg, #8b5cf6, #a855f7);
      box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
      transform: translateY(-3px) scale(1.15);
  }

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    color: #94a3b8;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.footer-bottom {
     border-top: 1px solid #334155;
     padding-top: 2rem;
     text-align: center;
     color: #94a3b8;
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

.footer-bottom a {
     color: var(--primary-color);
     text-decoration: none;
     transition: all 0.3s ease;
 }

.footer-bottom a:hover {
     text-decoration: underline;
     color: var(--accent-color);
 }

.developed-by {
     margin-top: 0.5rem;
     font-size: 0.9rem;
 }

.dev-link {
     color: var(--accent-color);
     font-weight: 600;
     transition: all 0.3s ease;
 }

.dev-link:hover {
     color: var(--pink-color);
     background: linear-gradient(45deg, var(--accent-color), var(--pink-color));
     background-size: 200% 200%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: gradient-link 2s ease infinite;
 }

@keyframes gradient-link {
     0%, 100% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
}

.brand-text {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-color);
 }

.footer-brand-text {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--primary-color);
 }

/* Franchise Section */
.franchise-opportunity {
    padding: 80px 0;
    background: var(--bg-primary);
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.franchise-info {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.franchise-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.franchise-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
     width: 60px;
     height: 60px;
     background: var(--sunset-gradient);
     background-size: 200% 200%;
     animation: benefitIconShift 4s ease infinite;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     color: white;
     font-size: 1.5rem;
     border: 2px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
 }

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.franchise-form-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.requirement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
     0% { transform: scale(1); }
     50% { transform: scale(1.05); }
     100% { transform: scale(1); }
 }

.whatsapp-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: white;
      text-decoration: none;
      padding: 15px 20px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

.whatsapp-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
     transition: left 0.5s;
 }

.whatsapp-btn:hover::before {
     left: 100%;
 }

.whatsapp-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 35px rgba(255, 0, 150, 0.5);
      background-position: 100% 100%;
      border-color: rgba(255, 255, 255, 0.6);
  }

.whatsapp-btn i {
     font-size: 1.5rem;
     animation: whatsappIcon 2s infinite;
 }

@keyframes whatsappIcon {
     0%, 100% { transform: scale(1) rotate(0deg); }
     50% { transform: scale(1.1) rotate(5deg); }
 }

.whatsapp-btn span {
     font-size: 0.9rem;
     white-space: nowrap;
 }

@media (max-width: 768px) {
     .whatsapp-chat {
         bottom: 20px;
         right: 20px;
     }

     .whatsapp-btn {
         padding: 12px 16px;
         gap: 8px;
     }

     .whatsapp-btn span {
         display: none;
     }

}

/* Page Hero */
.page-hero {
     padding: 100px 0 60px;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
     color: white;
     margin-top: 70px;
 }

.page-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
     animation: pageHeroOverlay 10s ease infinite;
 }

@keyframes pageHeroShift {
     0% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
 }

@keyframes pageHeroOverlay {
     0%, 100% { opacity: 0.2; }
     50% { opacity: 0.4; }
}

.page-hero-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* About Story */
.about-story {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-description {
     font-size: 1.1rem;
     color: var(--text-secondary);
     margin-bottom: 1.5rem;
     line-height: 1.7;
 }

 .contact-banner {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     padding: 1rem 1.5rem;
     border-radius: 12px;
     margin: 2rem 0;
     display: flex;
     align-items: center;
     gap: 1rem;
     box-shadow: var(--shadow-lg);
     border: 2px solid rgba(255, 255, 255, 0.1);
 }

 .contact-banner i {
     font-size: 1.3rem;
     color: #fbbf24;
 }

 .contact-banner span {
     font-size: 1rem;
     font-weight: 500;
 }

 .contact-number {
     color: #fbbf24;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
 }

 .contact-number:hover {
     color: #ffffff;
     text-decoration: underline;
     transform: scale(1.05);
 }

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* Mission Vision Values */
.mission-vision {
     padding: 80px 0;
     background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
     position: relative;
     overflow: hidden;
}

.mission-vision::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
     animation: missionVisionOverlay 15s ease infinite;
     pointer-events: none;
}

@keyframes missionVisionOverlay {
     0%, 100% { opacity: 0.3; transform: rotate(0deg); }
     50% { opacity: 0.6; transform: rotate(5deg); }
}

.mv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 2rem;
     border-radius: 12px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
     text-align: center;
     transition: 0.3s;
     position: relative;
     z-index: 2;
}

.mv-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
     background: rgba(255, 255, 255, 0.15);
     border-color: rgba(255, 255, 255, 0.3);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.mv-title {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: #ffffff;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mv-description {
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.6;
     text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mission-vision .section-title {
     color: #ffffff;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mission-vision .section-description {
     color: rgba(255, 255, 255, 0.8);
     text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.team-social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.team-social-link:hover {
    background: var(--primary-color);
    color: white;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
        background: linear-gradient(180deg, #1e40af, #fb000b);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    animation: whyChooseUsOverlay 15s ease infinite;
    pointer-events: none;
}

@keyframes whyChooseUsOverlay {
    0%, 100% { opacity: 0.3; transform: rotate(0deg); }
    50% { opacity: 0.6; transform: rotate(5deg); }
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.why-choose-us .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-choose-us .section-description {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.why-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* Services Introduction */
.services-intro {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Detail Cards */
.main-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: 0.3s;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features,
.service-benefits {
    margin-bottom: 2rem;
}

.features-title,
.benefits-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.benefit-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.benefit-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    position: relative;
    overflow: hidden;
}

.service-process .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-process .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.process-number i {
    font-size: 1.5rem;
    margin-bottom: 2px;
    z-index: 2;
}

.process-number-text {
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.process-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Contact Main */
.contact-main {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-method-detail {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-method-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.contact-method-detail a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    animation: contactFormOverlay 20s ease infinite;
    pointer-events: none;
}

@keyframes contactFormOverlay {
    0%, 100% { opacity: 0.2; transform: rotate(0deg); }
    50% { opacity: 0.4; transform: rotate(2deg); }
}

.form-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-weight: 400;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 20px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.form-input:hover,
.form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 1rem;
    align-self: flex-start;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(139, 92, 246, 0.02));
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border-left-color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(139, 92, 246, 0.08));
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.pricing-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.pricing-btn {
    width: 100%;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.achievement-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.achievement-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .page-hero {
        padding: 80px 0 40px;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0 40px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-img {
        height: 300px;
    }

    .hero-description {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-detail-title {
        font-size: 1.3rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .franchise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .franchise-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Process Mobile Improvements */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .process-number {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .process-number i {
        font-size: 1.8rem;
    }

    .process-number-text {
        font-size: 1rem;
    }

    /* Form Mobile Improvements */
    .contact-form-section {
        padding: 1.5rem;
        margin: 1rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    /* Icon spacing improvements */
    .benefit-icon, .requirement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Features Section */
.features-section {
     padding: 80px 0;
     background: var(--bg-primary);
     position: relative;
}

.features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
 }

.feature-item {
     text-align: center;
     padding: 2rem;
     background: white;
     border-radius: 15px;
     box-shadow: var(--shadow-md);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

.feature-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
     opacity: 0;
     transition: opacity 0.3s ease;
 }

.feature-item:hover::before {
     opacity: 1;
 }

.feature-item:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-xl);
 }

.feature-icon {
      width: 60px;
      height: 60px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
      transition: all 0.3s ease;
  }

.feature-item:hover .feature-icon {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 8px 25px rgba(255, 0, 150, 0.5);
      background-position: 100% 100%;
  }

.feature-item h3 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: var(--text-primary);
 }

.feature-item p {
     color: var(--text-secondary);
     line-height: 1.6;
 }

/* Testimonials Section */
.testimonials-section {
      padding: 80px 0;
      background: var(--bg-gradient-5);
      position: relative;
 }

.testimonials-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
     pointer-events: none;
}

.testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

.testimonial-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: var(--shadow-lg);
     transition: all 0.3s ease;
     position: relative;
 }

.testimonial-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(0,0,0,0.15);
 }

.testimonial-content {
     margin-bottom: 1.5rem;
 }

.testimonial-content p {
     font-size: 1rem;
     line-height: 1.7;
     color: var(--text-secondary);
     font-style: italic;
     position: relative;
     z-index: 2;
 }

.testimonial-content p::before {
     content: '"';
     font-size: 3rem;
     color: var(--primary-color);
     position: absolute;
     top: -10px;
     left: -20px;
     opacity: 0.3;
 }

.testimonial-author {
     display: flex;
     align-items: center;
 }

.author-info h4 {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--text-primary);
     margin-bottom: 0.3rem;
     position: relative;
     z-index: 2;
 }

.author-info p {
     font-size: 0.9rem;
     color: var(--text-secondary);
     position: relative;
     z-index: 2;
 }

@media (max-width: 768px) {
     .features-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }
 }

 /* Service Gallery Section */
 .service-gallery {
     padding: 80px 0;
     background: var(--bg-primary);
     position: relative;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .gallery-item {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow-lg);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .gallery-item:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 .gallery-image {
     position: relative;
     height: 300px;
     overflow: hidden;
 }

 .gallery-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .gallery-item:hover .gallery-image img {
     transform: scale(1.1);
 }

 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: white;
     padding: 2rem 1.5rem 1.5rem;
     transform: translateY(10px);
     opacity: 0;
     transition: all 0.3s ease;
 }

 .gallery-item:hover .gallery-overlay {
     transform: translateY(0);
     opacity: 1;
 }

 .gallery-overlay h4 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: white;
 }

 .gallery-overlay p {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.5;
 }

 .gallery-cta {
     text-align: center;
 }

 .gallery-cta .btn {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     border: none;
     padding: 1rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
 }

 .gallery-cta .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
     background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
 }

 @media (max-width: 1024px) {
     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }
 }

 @media (max-width: 480px) {
     .container {
         padding: 0 15px;
     }

     .hero-title {
         font-size: 1.8rem;
     }

     .hero-subtitle {
         font-size: 1rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .btn {
         width: 100%;
         justify-content: center;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .hero {
         min-height: 500px;
         padding: 80px 0 60px;
     }

     .hero-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.2rem;
     }

     .hero-img {
         height: 300px;
     }

     /* Enhanced Mobile Responsiveness */
     .process-number {
         width: 70px;
         height: 70px;
     }

     .process-number i {
         font-size: 1.4rem;
     }

     .process-number-text {
         font-size: 0.8rem;
     }

     .benefit-icon, .requirement-icon {
         width: 45px;
         height: 45px;
         font-size: 1rem;
     }

     .form-title {
         font-size: 1.2rem;
     }

     .contact-form-section {
         padding: 1rem;
         margin: 0.5rem;
     }

     /* Logo sizing for mobile */
     .logo {
         width: 200px;
     }

     .footer-logo {
         width: 200px;
     }

     .footer-phonepe {
         width: 120px;
     }


 }