 :root {
     --primary: #0A2463;
     --secondary: #FFD700;
     --accent: #3E92CC;
     --light: #FFFFFF;
     --dark: #1E1E1E;
     --gray: #6C757D;
     --light-gray: #F8F9FA;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Jost', sans-serif;
     line-height: 1.6;
     color: var(--dark);
     overflow-x: hidden;
     font-size: 16px;
 }

 /* Base heading styles */
 h1 {
     font-size: 3.5rem;
     line-height: 1.2;
     font-weight: 800;
     letter-spacing: -1px;
     margin-bottom: 1.5rem;
 }

 h2 {
     font-size: 2.8rem;
     line-height: 1.3;
     font-weight: 700;
     letter-spacing: -0.5px;
     margin-bottom: 1.25rem;
 }

 h3 {
     font-size: 1.8rem;
     line-height: 1.4;
     font-weight: 600;
     letter-spacing: -0.25px;
     margin-bottom: 1rem;
 }

 h4 {
     font-size: 1.4rem;
     line-height: 1.4;
     font-weight: 600;
     margin-bottom: 0.75rem;
 }

 /* Section specific heading styles */
 .web-dev-hero h1,
 .services-hero h1,
 .about-hero h1 {
     font-size: 3.5rem;
     line-height: 1.2;
     font-weight: 800;
     letter-spacing: -1px;
     margin-bottom: 1.5rem;
 }

 .web-dev-intro h2,
 .web-dev-importance h2,
 .web-dev-about h2,
 .web-dev-services h2,
 .web-dev-tech h2,
 .web-dev-process h2,
 .web-dev-industries h2,
 .web-dev-case-studies h2,
 .web-dev-testimonials h2,
 .web-dev-stats h2,
 .web-dev-faq h2,
 .web-dev-cta h2 {
     font-size: 2.8rem;
     line-height: 1.3;
     font-weight: 700;
     letter-spacing: -0.5px;
     margin-bottom: 1.25rem;
 }

 /* Responsive styles */
 @media (max-width: 1200px) {
     h1 {
         font-size: 3.2rem;
     }

     h2 {
         font-size: 2.5rem;
     }

     h3 {
         font-size: 1.6rem;
     }

     h4 {
         font-size: 1.3rem;
     }

     .web-dev-hero h1,
     .services-hero h1,
     .about-hero h1 {
         font-size: 3.2rem;
     }

     .web-dev-intro h2,
     .web-dev-importance h2,
     .web-dev-about h2,
     .web-dev-services h2,
     .web-dev-tech h2,
     .web-dev-process h2,
     .web-dev-industries h2,
     .web-dev-case-studies h2,
     .web-dev-testimonials h2,
     .web-dev-stats h2,
     .web-dev-faq h2,
     .web-dev-cta h2 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 992px) {
     h1 {
         font-size: 3rem;
     }

     h2 {
         font-size: 2.3rem;
     }

     h3 {
         font-size: 1.5rem;
     }

     h4 {
         font-size: 1.2rem;
     }

     .web-dev-hero h1,
     .services-hero h1,
     .about-hero h1 {
         font-size: 3rem;
     }

     .web-dev-intro h2,
     .web-dev-importance h2,
     .web-dev-about h2,
     .web-dev-services h2,
     .web-dev-tech h2,
     .web-dev-process h2,
     .web-dev-industries h2,
     .web-dev-case-studies h2,
     .web-dev-testimonials h2,
     .web-dev-stats h2,
     .web-dev-faq h2,
     .web-dev-cta h2 {
         font-size: 2.3rem;
     }
 }

 @media (max-width: 768px) {
     h1 {
         font-size: 2.5rem;
     }

     h2 {
         font-size: 2rem;
     }

     h3 {
         font-size: 1.3rem;
     }

     h4 {
         font-size: 1.1rem;
     }

     .web-dev-hero h1,
     .services-hero h1,
     .about-hero h1 {
         font-size: 2.5rem;
     }

     .web-dev-intro h2,
     .web-dev-importance h2,
     .web-dev-about h2,
     .web-dev-services h2,
     .web-dev-tech h2,
     .web-dev-process h2,
     .web-dev-industries h2,
     .web-dev-case-studies h2,
     .web-dev-testimonials h2,
     .web-dev-stats h2,
     .web-dev-faq h2,
     .web-dev-cta h2 {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     h1 {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     h3 {
         font-size: 1.2rem;
     }

     h4 {
         font-size: 1rem;
     }

     .web-dev-hero h1,
     .services-hero h1,
     .about-hero h1 {
         font-size: 2.2rem;
     }

     .web-dev-intro h2,
     .web-dev-importance h2,
     .web-dev-about h2,
     .web-dev-services h2,
     .web-dev-tech h2,
     .web-dev-process h2,
     .web-dev-industries h2,
     .web-dev-case-studies h2,
     .web-dev-testimonials h2,
     .web-dev-stats h2,
     .web-dev-faq h2,
     .web-dev-cta h2 {
         font-size: 1.8rem;
     }
 }

 h5,
 h6 {
     font-family: 'Jost', sans-serif;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--primary);
     line-height: 1.2;
 }

 h5 {
     font-size: 1.75rem;
 }

 h6 {
     font-size: 1.5rem;
 }

 p {
     font-size: 1.125rem;
     line-height: 1.7;
     color: var(--gray);
 }

 .section-title h2 {
     font-size: 2.75rem;
     margin-bottom: 1rem;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline-block;
 }

 .section-title p {
     font-size: 1.25rem;
     color: var(--gray);
     max-width: 700px;
     margin: 1rem auto 0;
 }

 .feature-card h3 {
     font-size: 1.5rem;
     margin: 1.5rem 0 1rem;
 }

 .testimonial-text {
     font-size: 1.25rem;
     line-height: 1.8;
     color: var(--dark);
 }

 .author-info h4 {
     font-size: 1.25rem;
     margin-bottom: 0.25rem;
 }

 .author-info p {
     font-size: 1rem;
     color: var(--gray);
 }

 /* Responsive Typography */
 @media (max-width: 1200px) {
     h1 {
         font-size: 3rem;
     }

     h2 {
         font-size: 2.25rem;
     }

     .section-title h2 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 992px) {
     h1 {
         font-size: 2.75rem;
     }

     h2 {
         font-size: 2rem;
     }

     h3 {
         font-size: 1.5rem;
     }

     .section-title h2 {
         font-size: 2.25rem;
     }

     .section-title p {
         font-size: 1.1rem;
     }

     .feature-card h3 {
         font-size: 1.35rem;
     }

     .testimonial-text {
         font-size: 1.15rem;
     }
 }

 @media (max-width: 768px) {
     body {
         font-size: 15px;
     }

     h1 {
         font-size: 2.25rem;
     }

     h2 {
         font-size: 1.75rem;
     }

     h3 {
         font-size: 1.35rem;
     }

     p {
         font-size: 1rem;
     }

     .section-title h2 {
         font-size: 1.85rem;
     }

     .section-title p {
         font-size: 1rem;
     }

     .feature-card h3 {
         font-size: 1.25rem;
     }

     .testimonial-text {
         font-size: 1.1rem;
     }

     .author-info h4 {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 576px) {
     body {
         font-size: 14px;
     }

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.5rem;
     }

     h3 {
         font-size: 1.25rem;
     }

     .section-title h2 {
         font-size: 1.6rem;
     }

     .section-title p {
         font-size: 0.95rem;
     }

     .feature-card h3 {
         font-size: 1.2rem;
     }

     .testimonial-text {
         font-size: 1rem;
     }

     .author-info h4 {
         font-size: 1rem;
     }

     .author-info p {
         font-size: 0.9rem;
     }
 }

 /* Button Typography */
 .btn {
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 0.3px;
 }

 @media (max-width: 768px) {
     .btn {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 576px) {
     .btn {
         font-size: 0.9rem;
     }
 }

 /* Navigation Typography */
 nav ul li a {
     font-size: 1.05rem;
     font-weight: 500;
 }

 @media (max-width: 992px) {
     nav ul li a {
         font-size: 1rem;
     }
 }

 /* Digital Marketing Section Styles */
 .digital-marketing-section {
     background-color: #f8fafc;
     padding: 80px 0;
     color: #1e293b;
     line-height: 1.6;
 }

 .digital-marketing-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .digital-marketing-content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 60px;
 }

 .digital-marketing-hero {
     flex: 1;
     max-width: 500px;
 }

 .digital-marketing-badge {
     font-size: 16px;
     color: #6366f1;
     margin-bottom: 16px;
     font-weight: 500;
 }

 .digital-marketing-title {
     font-size: 64px;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 32px;
     color: #0f172a;
 }

 .digital-marketing-description {
     font-size: 18px;
     color: #64748b;
     margin-bottom: 40px;
     line-height: 1.7;
 }

 .digital-marketing-reviews {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .digital-marketing-avatars {
     display: flex;
     margin-right: 16px;
 }

 .digital-marketing-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 3px solid white;
     margin-left: -8px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
     font-size: 18px;
 }

 .digital-marketing-avatar:first-child {
     margin-left: 0;
     background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
 }

 .digital-marketing-avatar:nth-child(2) {
     background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
 }

 .digital-marketing-avatar:nth-child(3) {
     background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
 }

 .digital-marketing-rating {
     display: flex;
     flex-direction: column;
 }

 .digital-marketing-stars {
     display: flex;
     gap: 2px;
     margin-bottom: 4px;
 }

 .digital-marketing-star {
     color: #fbbf24;
     font-size: 20px;
 }

 .digital-marketing-review-text {
     font-size: 16px;
     color: #64748b;
 }

 .digital-marketing-review-count {
     color: #6366f1;
 }

 .digital-marketing-services {
     flex: 1;
     max-width: 500px;
 }

 .digital-marketing-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
 }

 .digital-marketing-card {
     background: white;
     padding: 32px 24px;
     border-radius: 16px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 1px solid #e2e8f0;
 }

 .digital-marketing-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     border-color: #6366f1;
 }

 .digital-marketing-icon {
     width: 48px;
     height: 48px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 16px;
     font-size: 20px;
     transition: all 0.3s ease;
 }

 .digital-marketing-card:hover .digital-marketing-icon {
     transform: scale(1.1);
 }

 .digital-marketing-card.real-time .digital-marketing-icon {
     background: linear-gradient(135deg, #3b82f6, #1d4ed8);
     color: white;
 }

 .digital-marketing-card.keywords .digital-marketing-icon {
     background: linear-gradient(135deg, #10b981, #059669);
     color: white;
 }

 .digital-marketing-card.seo .digital-marketing-icon {
     background: linear-gradient(135deg, #ef4444, #dc2626);
     color: white;
 }

 .digital-marketing-card.performance .digital-marketing-icon {
     background: linear-gradient(135deg, #f59e0b, #d97706);
     color: white;
 }

 .digital-marketing-card-title {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 8px;
     color: #0f172a;
     transition: color 0.3s ease;
 }

 .digital-marketing-card:hover .digital-marketing-card-title {
     color: #6366f1;
 }

 .digital-marketing-card-description {
     font-size: 14px;
     color: #64748b;
     line-height: 1.6;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .digital-marketing-section {
         padding: 60px 0;
     }

     .digital-marketing-content {
         flex-direction: column;
         text-align: center;
         gap: 40px;
     }

     .digital-marketing-title {
         font-size: 48px;
     }

     .digital-marketing-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .digital-marketing-container {
         padding: 0 16px;
     }
 }

 @media (max-width: 480px) {
     .digital-marketing-title {
         font-size: 36px;
     }

     .digital-marketing-description {
         font-size: 16px;
     }
 }

 /* Demo page styles (remove these when integrating) */
 body {
     margin: 0;
     padding: 0;
 }

 .demo-header {
     background: #1e293b;
     color: white;
     padding: 20px;
     text-align: center;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 .demo-footer {
     background: #1e293b;
     color: white;
     padding: 40px 20px;
     text-align: center;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 /* Hero Section Typography */
 .hero {
     background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
     color: var(--light);
     padding: 180px 0 100px;
     text-align: center;
     position: relative;
 }

 .hero h1 {
     font-size: 3.5rem;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     color: #ffffff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     font-weight: 700;
     letter-spacing: -0.02em;
     position: relative;
 }

 .hero p {
     font-size: 1.25rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.95);
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
     max-width: 800px;
     margin: 0 auto 2rem;
     position: relative;
     padding-bottom: 1.5rem;
 }

 .hero p::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--secondary);
     border-radius: 2px;
 }

 @media (max-width: 992px) {
     .hero {
         padding: 150px 0 80px;
     }

     .hero h1 {
         font-size: 2.75rem;
         margin-bottom: 1.25rem;
     }

     .hero p {
         font-size: 1.15rem;
         margin-bottom: 1.75rem;
         padding-bottom: 1.25rem;
     }
 }

 @media (max-width: 768px) {
     .hero {
         padding: 130px 0 70px;
     }

     .hero h1 {
         font-size: 2.25rem;
         margin-bottom: 1rem;
     }

     .hero p {
         font-size: 1.1rem;
         margin-bottom: 1.5rem;
         padding-bottom: 1rem;
         max-width: 90%;
     }

     .hero p::after {
         width: 60px;
         height: 2px;
     }
 }

 @media (max-width: 576px) {
     .hero {
         padding: 120px 0 60px;
     }

     .hero h1 {
         font-size: 2rem;
         margin-bottom: 0.875rem;
     }

     .hero p {
         font-size: 1rem;
         margin-bottom: 1.25rem;
         padding-bottom: 0.875rem;
         max-width: 95%;
     }

     .hero p::after {
         width: 50px;
         height: 2px;
     }
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header Styles */
 header {
     background-color: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
     position: fixed;
     width: 100%;
     z-index: 1000;
     padding: 0;
     transition: all 0.3s ease;
 }

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

 .logo {
     display: flex;
     align-items: center;
     flex-shrink: 0;
     transition: transform 0.3s ease;
 }

 .logo img {
     height: 50px;
     width: auto;
     object-fit: contain;
     transition: all 0.3s ease;
 }

 @media (max-width: 1200px) {
     .logo img {
         height: 45px;
     }
 }

 @media (max-width: 992px) {
     .logo img {
         height: 40px;
     }
 }

 @media (max-width: 768px) {
     .logo img {
         height: 35px;
     }
 }

 @media (max-width: 576px) {
     .logo img {
         height: 30px;
     }
 }

 .logo h1 {
     font-size: 1.8rem;
     margin: 0;
     color: var(--primary);
     white-space: nowrap;
     font-weight: 700;
     letter-spacing: -0.5px;
     line-height: 1;
 }

 .logo span {
     font-size: 0.9rem;
     color: var(--gray);
     margin-left: 12px;
     font-style: italic;
     display: none;
 }

 nav {
     flex: 1;
     display: flex;
     justify-content: center;
 }

 nav ul {
     display: flex;
     list-style: none;
     gap: 100px;
     margin: 0;
     padding: 0;
     align-items: center;
 }

 nav ul li {
     margin: 0;
     position: relative;
 }

 nav ul li a {
     text-decoration: none;
     color: var(--dark);
     font-weight: 500;
     transition: all 0.3s ease;
     font-size: 1.05rem;
     padding: 8px 0;
     position: relative;
     display: inline-block;
     line-height: 1;
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--accent), var(--primary));
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 nav ul li a:hover {
     color: var(--accent);
     transform: translateY(-1px);
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 .cta-buttons {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-shrink: 0;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 10px 20px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     text-align: center;
     white-space: nowrap;
     font-size: 0.95rem;
     letter-spacing: 0.3px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     height: 40px;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary), #0d2d6b);
     color: var(--light);
     border: none;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(10, 36, 99, 0.2);
 }

 .btn-secondary {
     background: linear-gradient(135deg, var(--secondary), #e6c200);
     color: var(--dark);
     border: none;
 }

 .btn-secondary:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
 }

 .mobile-menu-btn {
     display: none;
     font-size: 1.5rem;
     color: var(--primary);
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .mobile-menu-btn:hover {
     background-color: rgba(10, 36, 99, 0.1);
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
     color: var(--light);
     padding: 180px 0 100px;
     text-align: center;
     position: relative;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto 30px;
 }

 .hero-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 30px;
 }

 .hero .btn {
     min-width: 180px;
     height: 50px;
     font-size: 1.1rem;
     padding: 0 25px;
     border-radius: 25px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 @media (max-width: 768px) {
     .hero-buttons {
         flex-direction: column;
         gap: 15px;
         padding: 0 20px;
         width: 100%;
         max-width: 400px;
         margin: 30px auto 0;
     }

     .hero .btn {
         width: 100%;
         min-width: unset;
         height: 45px;
         font-size: 1rem;
     }
 }

 @media (max-width: 480px) {
     .hero-buttons {
         padding: 0 15px;
         gap: 12px;
     }

     .hero .btn {
         height: 42px;
         font-size: 0.95rem;
     }
 }

 /* Why Choose Us Section */
 .why-choose-mehr {
     padding: 100px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     position: relative;
     overflow: hidden;
 }

 .why-choose-mehr::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000" opacity="0.03"/></svg>');
     opacity: 0.5;
 }

 .why-choose-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 1;
 }

 .why-choose-badge {
     display: inline-block;
     padding: 8px 20px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     color: var(--light);
     border-radius: 30px;
     font-size: 0.9rem;
     font-weight: 500;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .why-choose-title {
     font-size: 2.8rem;
     color: var(--primary);
     margin-bottom: 20px;
     line-height: 1.3;
     font-weight: 700;
 }

 .why-choose-subtitle {
     font-size: 1.2rem;
     color: var(--gray);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .why-choose-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     position: relative;
     z-index: 1;
 }

 .why-choose-card {
     background: var(--light);
     border-radius: 15px;
     padding: 20px 15px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .why-choose-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
     z-index: 0;
 }

 .why-choose-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
 }

 .why-choose-card:hover::before {
     opacity: 0.05;
 }

 .why-choose-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     position: relative;
     z-index: 1;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .why-choose-icon i {
     font-size: 1.5rem;
     color: var(--light);
     transition: all 0.4s ease;
 }

 .why-choose-card:hover .why-choose-icon {
     transform: scale(1.1) rotate(5deg);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .why-choose-content {
     position: relative;
     z-index: 1;
 }

 .why-choose-content h3 {
     font-size: 1.2rem;
     color: var(--primary);
     margin-bottom: 10px;
     transition: color 0.3s ease;
     font-weight: 600;
 }

 .why-choose-content p {
     color: var(--gray);
     line-height: 1.5;
     margin-bottom: 15px;
     transition: color 0.3s ease;
     font-size: 0.9rem;
 }

 .why-choose-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .why-choose-list li {
     display: flex;
     align-items: center;
     margin-bottom: 8px;
     color: var(--gray);
     transition: color 0.3s ease;
     font-size: 0.85rem;
 }

 .why-choose-list li i {
     color: var(--primary);
     margin-right: 8px;
     font-size: 0.8rem;
     transition: color 0.3s ease;
 }

 .why-choose-card:hover .why-choose-content h3,
 .why-choose-card:hover .why-choose-content p,
 .why-choose-card:hover .why-choose-list li {
     color: var(--primary);
 }

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

     .why-choose-title {
         font-size: 2.5rem;
     }
 }

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

     .why-choose-title {
         font-size: 2rem;
     }

     .why-choose-subtitle {
         font-size: 1.1rem;
     }

     .why-choose-card {
         padding: 15px;
     }

     .why-choose-icon {
         width: 50px;
         height: 50px;
         margin-bottom: 12px;
     }

     .why-choose-icon i {
         font-size: 1.3rem;
     }

     .why-choose-content h3 {
         font-size: 1.1rem;
     }

     .why-choose-content p {
         font-size: 0.85rem;
     }

     .why-choose-list li {
         font-size: 0.8rem;
     }
 }

 @media (max-width: 576px) {
     .why-choose-mehr {
         padding: 40px 0;
     }

     .why-choose-title {
         font-size: 1.8rem;
     }

     .why-choose-subtitle {
         font-size: 1rem;
     }

     .why-choose-card {
         padding: 20px 15px;
     }

     .why-choose-icon {
         width: 45px;
         height: 45px;
         margin-bottom: 12px;
     }

     .why-choose-icon i {
         font-size: 1.2rem;
     }

     .why-choose-content h3 {
         font-size: 1rem;
     }

     .why-choose-content p {
         font-size: 0.85rem;
     }

     .why-choose-list li {
         font-size: 0.8rem;
     }
 }

 /* Add these styles to the existing CSS */
 .feature-content {
     width: 100%;
     max-width: 600px;
     margin: 0 auto;
 }

 .feature-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     width: 100%;
 }

 @media (max-width: 768px) {
     .feature-card {
         flex-direction: column;
         text-align: center;
         align-items: center;
         width: 100%;
     }
 }

 /* Services Section */
 .services {
     padding: 80px 0;
 }

 /* Service Tabs Styles */
 .service-tabs {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 40px;
     padding: 0 20px;
 }

 .service-tab {
     padding: 12px 24px;
     background-color: var(--light-gray);
     border-radius: 30px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
     color: var(--dark);
     border: 2px solid transparent;
     user-select: none;
     position: relative;
     overflow: hidden;
 }

 .service-tab:hover {
     background-color: var(--primary-light);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .service-tab.active {
     background-color: var(--primary);
     color: white;
     border-color: var(--primary);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     transform: translateY(-2px);
 }

 .service-content {
     display: none;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .service-content.active {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 .service-details {
     background-color: var(--light-gray);
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     margin-top: 20px;
 }

 .service-details h3 {
     color: var(--primary);
     margin-bottom: 20px;
     font-size: 1.8rem;
     font-weight: 600;
 }

 .service-details p {
     color: var(--dark);
     margin-bottom: 25px;
     line-height: 1.6;
     font-size: 1.1rem;
 }

 .service-features {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .service-features li {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     color: var(--dark);
     font-size: 1.05rem;
 }

 .service-features li i {
     color: var(--primary);
     margin-right: 12px;
     font-size: 1.1rem;
 }

 @media (max-width: 768px) {
     .service-tabs {
         flex-direction: row;
         overflow-x: auto;
         flex-wrap: nowrap;
         justify-content: flex-start;
         gap: 10px;
         padding: 10px 20px;
         margin: 0 -20px;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: none;
     }

     .service-tabs::-webkit-scrollbar {
         display: none;
     }

     .service-tab {
         flex: 0 0 auto;
         min-width: 140px;
         white-space: nowrap;
         padding: 10px 20px;
         font-size: 14px;
     }

     .service-details {
         padding: 25px;
         margin-top: 15px;
     }

     .service-details h3 {
         font-size: 1.5rem;
     }

     .service-details p {
         font-size: 1rem;
     }

     .service-features li {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 576px) {
     .service-tabs {
         gap: 8px;
         padding: 0 15px;
     }

     .service-tab {
         min-width: 130px;
         padding: 8px 12px;
         font-size: 13px;
     }
 }

 .service-tab.active {
     background-color: var(--primary);
     color: var(--light);
 }

 .service-content {
     display: none;
 }

 .service-content.active {
     display: block;
 }

 .service-details {
     background-color: var(--light-gray);
     padding: 40px;
     border-radius: 10px;
 }

 .service-details h3 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: var(--primary);
     line-height: 1.4;
 }

 @media (max-width: 992px) {
     .service-details h3 {
         font-size: 1.6rem;
         margin-bottom: 18px;
     }
 }

 @media (max-width: 768px) {
     .service-details h3 {
         font-size: 1.4rem;
         margin-bottom: 15px;
     }
 }

 @media (max-width: 576px) {
     .service-details h3 {
         font-size: 1.25rem;
         margin-bottom: 12px;
         line-height: 1.3;
     }
 }

 .service-details ul {
     list-style-position: inside;
     margin-bottom: 30px;
 }

 .service-details li {
     margin-bottom: 10px;
 }

 /* Process Section */
 .web-dev-process {
     padding: 80px 0;
     background: #f8f9fa;
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 30px;
     margin-top: 40px;
 }

 .process-step {
     background: white;
     padding: 35px 25px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
     text-align: center;
 }

 .process-step:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .step-number {
     width: 50px;
     height: 50px;
     background: linear-gradient(45deg, #6c5ce7, #0984e3);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 600;
     margin: 0 auto 20px;
 }

 .process-step h3 {
     font-size: 1.3rem;
     color: #2d3436;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 2px solid #e9ecef;
 }

 .step-features {
     list-style: none;
     padding: 0;
     margin: 0;
     text-align: left;
 }

 .step-features li {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 15px;
     margin-bottom: 10px;
     background: #f8f9fa;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .step-features li:hover {
     background: #e9ecef;
     transform: translateX(5px);
 }

 .step-features i {
     font-size: 1.2rem;
     color: #6c5ce7;
 }

 @media (max-width: 1200px) {
     .process-steps {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 992px) {
     .process-steps {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .process-steps {
         gap: 20px;
     }

     .process-step {
         padding: 30px 20px;
     }
 }

 @media (max-width: 480px) {
     .process-steps {
         grid-template-columns: 1fr;
     }

     .process-step {
         padding: 25px 20px;
     }
 }

 /* Case Studies */
 .case-studies {
     padding: 80px 0;
     background-color: var(--light-gray);
 }

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

 .case-card {
     background-color: var(--light);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .case-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
 }

 .case-image {
     height: 250px;
     background-size: cover;
     background-position: center;
     position: relative;
     overflow: hidden;
 }

 .case-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
     transition: all 0.3s ease;
 }

 .case-card:hover .case-image::after {
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
 }

 .case-content {
     padding: 30px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .case-content h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     color: var(--primary);
     line-height: 1.4;
     transition: color 0.3s ease;
 }

 .case-card:hover .case-content h3 {
     color: var(--accent);
 }

 .case-stats {
     display: flex;
     gap: 15px;
     margin: 20px 0;
     flex-wrap: wrap;
 }

 .stat {
     background: linear-gradient(135deg, var(--primary), #0d2d6b);
     color: var(--light);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
 }

 .stat i {
     font-size: 1rem;
 }

 .case-content p {
     color: var(--gray);
     margin-bottom: 25px;
     line-height: 1.6;
     flex-grow: 1;
 }

 .case-card .btn {
     align-self: flex-start;
     margin-top: auto;
     background: linear-gradient(135deg, var(--accent), #2d7cb3);
     color: var(--light);
     padding: 12px 25px;
     border-radius: 25px;
     font-weight: 500;
     transition: all 0.3s ease;
     border: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .case-card .btn i {
     font-size: 0.9rem;
     transition: transform 0.3s ease;
 }

 .case-card .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(62, 146, 204, 0.3);
 }

 .case-card .btn:hover i {
     transform: translateX(3px);
 }

 @media (max-width: 768px) {
     .case-grid {
         grid-template-columns: 1fr;
         max-width: 500px;
         margin-left: auto;
         margin-right: auto;
     }

     .case-image {
         height: 200px;
     }

     .case-content {
         padding: 20px;
     }

     .case-content h3 {
         font-size: 1.3rem;
     }
 }

 /* Testimonials */
 .testimonials {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
     position: relative;
     overflow: hidden;
 }

 .testimonial-slider {
     max-width: 1200px;
     margin: 50px auto 0;
     position: relative;
     padding: 0 50px;
 }

 .testimonial-track {
     display: flex;
     transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
     will-change: transform;
 }

 .testimonial {
     background: linear-gradient(145deg, #ffffff, #f8f9fa);
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin: 0 15px;
     min-width: 100%;
     position: relative;
     transition: all 0.5s ease;
     opacity: 0.7;
     transform: scale(0.95);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .testimonial.active {
     opacity: 1;
     transform: scale(1);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 }

 .testimonial::before {
     content: '"';
     position: absolute;
     top: 20px;
     left: 20px;
     font-size: 5rem;
     color: var(--primary);
     opacity: 0.1;
     font-family: serif;
     line-height: 1;
 }

 .testimonial::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, var(--primary), var(--accent));
     border-radius: 20px 20px 0 0;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 20px;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 15px;
     margin-top: 20px;
     transition: all 0.3s ease;
 }

 .testimonial:hover .testimonial-author {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .author-avatar {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background-size: cover;
     background-position: center;
     border: 3px solid var(--light);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .testimonial:hover .author-avatar {
     transform: scale(1.1);
     border-color: var(--accent);
 }

 .author-info h4 {
     margin-bottom: 5px;
     font-size: 1.2rem;
     color: var(--primary);
     font-weight: 600;
 }

 .author-info p {
     color: var(--gray);
     font-size: 0.95rem;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .author-info p i {
     color: var(--accent);
     font-size: 0.8rem;
 }

 .testimonial-rating {
     color: var(--secondary);
     margin-bottom: 20px;
     display: flex;
     gap: 3px;
 }

 .testimonial-rating i {
     font-size: 1.1rem;
     filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
 }

 .slider-controls {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     transform: translateY(-50%);
     display: flex;
     justify-content: space-between;
     pointer-events: none;
     z-index: 2;
 }

 .slider-arrow {
     width: 45px;
     height: 45px;
     background: var(--light);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     pointer-events: auto;
     border: 2px solid rgba(0, 0, 0, 0.05);
 }

 .slider-arrow:hover {
     background: var(--primary);
     color: var(--light);
     transform: scale(1.1);
     box-shadow: 0 8px 20px rgba(10, 36, 99, 0.2);
 }

 .slider-dots {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 40px;
 }

 .slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--gray);
     opacity: 0.3;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .slider-dot::after {
     content: '';
     position: absolute;
     top: -4px;
     left: -4px;
     right: -4px;
     bottom: -4px;
     border-radius: 50%;
     background: var(--primary);
     opacity: 0;
     transition: all 0.3s ease;
 }

 .slider-dot.active {
     opacity: 1;
     background: var(--primary);
     transform: scale(1.2);
 }

 .slider-dot.active::after {
     opacity: 0.1;
 }

 /* Testimonials Mobile Responsive Styles */
 @media (max-width: 768px) {
     .testimonial-slider {
         padding: 0 20px;
         margin-top: 30px;
     }

     .testimonial {
         padding: 25px 20px;
         margin: 0 10px;
         border-radius: 15px;
     }

     .testimonial::before {
         font-size: 4rem;
         top: 15px;
         left: 15px;
     }

     .testimonial-text {
         font-size: 1rem;
         line-height: 1.6;
         margin-bottom: 15px;
     }

     .testimonial-author {
         padding: 15px;
         margin-top: 15px;
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }

     .author-avatar {
         width: 60px;
         height: 60px;
         margin: 0 auto;
     }

     .author-info {
         text-align: center;
     }

     .author-info h4 {
         font-size: 1.1rem;
         margin-bottom: 5px;
     }

     .author-info p {
         font-size: 0.9rem;
     }

     .testimonial-rating {
         margin-bottom: 15px;
     }

     .testimonial-rating i {
         font-size: 1rem;
     }

     .slider-arrow {
         width: 35px;
         height: 35px;
         font-size: 0.9rem;
     }

     .slider-dots {
         margin-top: 25px;
         gap: 8px;
     }

     .slider-dot {
         width: 8px;
         height: 8px;
     }
 }

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

     .testimonial {
         padding: 20px 15px;
         margin: 0 5px;
     }

     .testimonial-text {
         font-size: 0.95rem;
     }

     .testimonial-author {
         padding: 12px;
     }

     .author-avatar {
         width: 50px;
         height: 50px;
     }

     .author-info h4 {
         font-size: 1rem;
     }

     .author-info p {
         font-size: 0.85rem;
     }

     .slider-arrow {
         width: 30px;
         height: 30px;
     }

     .testimonials .section-title h2 {
         font-size: 1.8rem;
     }

     .testimonials .section-title p {
         font-size: 0.95rem;
     }
 }

 /* CTA Section */
 .cta-section {
     padding: 80px 0;
     background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
     color: var(--light);
     text-align: center;
 }

 .cta-section h2 {
     color: var(--light);
     font-size: 2.2rem;
     margin-bottom: 20px;
 }

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

 /* FAQ Section */
 .faq {
     padding: 80px 0;
 }

 .faq-container {
     max-width: 800px;
     margin: 50px auto 0;
 }

 .faq-item {
     margin-bottom: 20px;
     border-bottom: 1px solid #eee;
     padding-bottom: 20px;
 }

 .faq-question {
     font-weight: 600;
     font-size: 1.1rem;
     margin-bottom: 10px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-answer {
     color: var(--gray);
 }

 /* Footer */
 footer {
     background-color: var(--dark);
     color: var(--light);
     padding: 60px 0 20px;
 }

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

 .footer-column h3 {
     color: var(--light);
     margin-bottom: 20px;
     font-size: 1.3rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: var(--gray);
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: var(--light);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     color: var(--light);
     font-size: 1.2rem;
     transition: color 0.3s;
 }

 .social-links a:hover {
     color: var(--secondary);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--gray);
     font-size: 0.9rem;
 }

 /* Responsive Styles */
 @media (max-width: 1200px) {
     .header-container {
         padding: 0 20px;
     }

     nav ul {
         gap: 30px;
     }
 }

 @media (max-width: 992px) {
     .header-container {
         height: 70px;
         padding: 0 20px;
     }

     nav {
         display: none;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
         color: var(--primary);
         cursor: pointer;
         border-radius: 8px;
         transition: all 0.3s ease;
     }

     .cta-buttons {
         display: none;
     }

     .logo span {
         display: none;
     }

     .logo h1 {
         font-size: 1.5rem;
     }
 }

 @media (max-width: 576px) {
     .header-container {
         height: 60px;
         padding: 0 15px;
     }

     .logo h1 {
         font-size: 1.3rem;
     }

     .btn {
         padding: 10px 20px;
         font-size: 0.95rem;
     }
 }

 /* Mobile Navigation Styles */
 .mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 280px;
     height: 100vh;
     background: #ffffff;
     box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
     z-index: 1001;
     transition: right 0.3s ease;
     padding: 80px 20px 30px;
     overflow-y: auto;
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-menu ul li {
     margin: 0;
     padding: 0;
 }

 .mobile-menu ul li a {
     display: block;
     padding: 12px 15px;
     color: var(--dark);
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: 500;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .mobile-menu ul li a:hover {
     background: rgba(10, 36, 99, 0.05);
     color: var(--primary);
 }

 .mobile-menu .mobile-cta {
     margin-top: 210px;
     padding: 15px;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .mobile-menu .mobile-cta .btn {
     width: 100%;
     justify-content: center;
 }

 .mobile-menu-close {
     position: absolute;
     top: 20px;
     right: 20px;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(10, 36, 99, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .mobile-menu-close:hover {
     background: rgba(10, 36, 99, 0.1);
 }

 .mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .mobile-menu-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 @media (max-width: 992px) {
     .mobile-menu-btn {
         display: flex;
     }

     nav {
         display: none;
     }
 }

 /* SEO Services Section Styles */
 .seo-services-section {
     background-color: #f1f5f9;
     padding: 80px 0;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     color: #1e293b;
     overflow: hidden;
 }

 .seo-services-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .seo-services-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .seo-services-badge {
     font-size: 16px;
     color: #6366f1;
     margin-bottom: 16px;
     font-weight: 500;
 }

 .seo-services-title {
     font-size: 35px;
     font-weight: 700;
     color: linear-gradient(135deg, var(--primary), var(--accent));
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .seo-services-content {
     display: grid;
     grid-template-columns: 300px 1fr 350px;
     gap: 60px;
     align-items: center;
 }

 /* Tabs Styling */
 .seo-services-tabs {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 @media (max-width: 1024px) {
     .seo-services-tabs {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
         padding: 0;
         margin: 0;
     }

     .seo-tab-button {
         width: 100%;
         text-align: center;
         padding: 12px 15px;
         font-size: 14px;
         margin: 0;
         white-space: normal;
         min-width: unset;
     }

     .seo-tab-button.active {
         transform: translateX(0);
     }

     .seo-tab-button:hover {
         transform: translateX(0);
     }
 }

 @media (max-width: 576px) {
     .seo-services-tabs {
         gap: 8px;
     }

     .seo-tab-button {
         padding: 10px 12px;
         font-size: 13px;
     }
 }

 .seo-tab-button {
     background: white;
     border: 2px solid #e2e8f0;
     border-radius: 50px;
     padding: 16px 24px;
     font-size: 16px;
     font-weight: 500;
     color: #64748b;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-align: left;
     position: relative;
     overflow: hidden;
 }

 .seo-tab-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
     transition: left 0.5s;
 }

 .seo-tab-button:hover::before {
     left: 100%;
 }

 .seo-tab-button:hover {
     border-color: #6366f1;
     transform: translateX(8px);
     box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
 }

 .seo-tab-button.active {
     background: linear-gradient(135deg, #6366f1, #8b5cf6);
     border-color: #6366f1;
     color: white;
     transform: translateX(12px);
     box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
 }

 .seo-tab-button.active::after {
     content: '→';
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
 }

 /* Image Container */
 .seo-services-image-container {
     position: relative;
     height: 400px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .seo-tab-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
     opacity: 0;
     transform: scale(1.1) rotate(2deg);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .seo-tab-image.active {
     opacity: 1;
     transform: scale(1) rotate(0deg);
 }

 .seo-services-image-container::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
     z-index: 1;
     border-radius: 20px;
 }

 /* Content Area */
 .seo-services-content-area {
     position: relative;
 }

 .seo-tab-content {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
 }

 .seo-tab-content.active {
     opacity: 1;
     transform: translateY(0);
     position: relative;
 }

 .seo-content-icon {
     width: 80px;
     height: 80px;
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 32px;
     margin-bottom: 24px;
     position: relative;
     overflow: hidden;
 }

 .seo-content-icon::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transform: rotate(45deg);
     animation: shimmer 3s infinite;
 }

 @keyframes shimmer {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     50% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }

     100% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }
 }

 .seo-content-title {
     font-size: 32px;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 16px;
     line-height: 1.3;
 }

 .seo-content-description {
     font-size: 16px;
     color: #64748b;
     line-height: 1.7;
     margin-bottom: 32px;
 }

 .seo-read-more-btn {
     background: #0f172a;
     color: white;
     border: none;
     border-radius: 50px;
     padding: 14px 28px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .seo-read-more-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;
 }

 .seo-read-more-btn:hover::before {
     left: 100%;
 }

 .seo-read-more-btn:hover {
     background: #6366f1;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
 }

 .seo-read-more-btn::after {
     content: '→';
     margin-left: 8px;
     transition: transform 0.3s ease;
 }

 .seo-read-more-btn:hover::after {
     transform: translateX(4px);
 }

 /* Color variations for different tabs */
 .content-marketing .seo-content-icon {
     background: linear-gradient(135deg, #6366f1, #8b5cf6);
     color: white;
 }

 .seo-optimization .seo-content-icon {
     background: linear-gradient(135deg, #10b981, #059669);
     color: white;
 }

 .digital-marketing .seo-content-icon {
     background: linear-gradient(135deg, #f59e0b, #d97706);
     color: white;
 }

 .mobile-optimization .seo-content-icon {
     background: linear-gradient(135deg, #ef4444, #dc2626);
     color: white;
 }

 .web-accessibility .seo-content-icon {
     background: linear-gradient(135deg, #8b5cf6, #a855f7);
     color: white;
 }

 .creative-advertising .seo-content-icon {
     background: linear-gradient(135deg, #06b6d4, #0891b2);
     color: white;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .seo-services-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .seo-services-tabs {
         display: flex;
         flex-direction: row;
         overflow-x: auto;
         gap: 10px;
         padding: 0;
         margin: 0 -20px;
         padding: 0 20px;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: none;
         -ms-overflow-style: none;
     }

     .seo-services-tabs::-webkit-scrollbar {
         display: none;
     }

     .seo-tab-button {
         flex: 0 0 auto;
         min-width: 140px;
         text-align: center;
         padding: 12px 15px;
         font-size: 14px;
         margin: 0;
         white-space: nowrap;
     }

     .seo-tab-button.active {
         transform: translateX(0);
     }

     .seo-tab-button:hover {
         transform: translateX(0);
     }
 }

 @media (max-width: 576px) {
     .seo-services-tabs {
         gap: 8px;
         padding: 0 15px;
         margin: 0 -15px;
     }

     .seo-tab-button {
         min-width: 130px;
         padding: 10px 12px;
         font-size: 13px;
     }
 }

 /* Demo styles (remove when integrating) */
 body {
     margin: 0;
     padding: 0;
 }

 .demo-header {
     background: #1e293b;
     color: white;
     padding: 20px;
     text-align: center;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 .demo-footer {
     background: #1e293b;
     color: white;
     padding: 40px 20px;
     text-align: center;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 /* Add these styles to the existing CSS */
 .seo-content-list {
     list-style: none;
     padding: 0;
     margin: 20px 0;
 }

 .seo-content-list li {
     padding: 8px 0;
     color: #64748b;
     position: relative;
     padding-left: 25px;
 }

 .seo-content-list li::before {
     content: '→';
     position: absolute;
     left: 0;
     color: #6366f1;
     font-weight: bold;
 }

 .seo-content-description {
     margin-bottom: 20px;
     line-height: 1.7;
 }

 /* Add these styles in the CSS section */
 .footer-logo {
     margin-bottom: 20px;
 }

 .footer-logo img {
     height: 40px;
     width: auto;
     object-fit: contain;
 }

 @media (max-width: 768px) {
     .footer-logo img {
         height: 35px;
     }
 }

 @media (max-width: 576px) {
     .footer-logo img {
         height: 30px;
     }
 }

 /* About Page Styles */
 .about-hero {
     background: linear-gradient(135deg, var(--primary), var(--accent));
     color: var(--light);
     padding: 120px 0 80px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .about-hero h1 {
     color: var(--light);
     font-size: 3.5rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
 }

 .about-hero p {
     color: var(--light);
     font-size: 1.5rem;
     max-width: 800px;
     margin: 0 auto;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
 }

 .about-section {
     padding: 80px 0;
     background: linear-gradient(to bottom, #f8f9fa, #ffffff);
     position: relative;
     overflow: hidden;
 }

 .about-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000" opacity="0.03"/></svg>');
     opacity: 0.5;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .about-content {
     padding-right: 30px;
 }

 .about-content h2 {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 15px;
 }

 .about-content h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 80px;
     height: 3px;
     background: linear-gradient(to right, var(--primary), var(--accent));
     border-radius: 2px;
 }

 .about-content p {
     font-size: 1.1rem;
     line-height: 1.8;
     color: var(--gray);
     margin-bottom: 20px;
 }

 .about-content p:last-child {
     margin-bottom: 0;
 }

 .about-image {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .about-image::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.2), rgba(var(--accent-rgb), 0.2));
     z-index: 1;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .about-image:hover::before {
     opacity: 1;
 }

 .about-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

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

 @media (max-width: 992px) {
     .about-section {
         padding: 60px 0;
     }

     .about-grid {
         gap: 40px;
     }

     .about-content h2 {
         font-size: 2.2rem;
     }

     .about-content p {
         font-size: 1rem;
     }
 }

 @media (max-width: 768px) {
     .about-section {
         padding: 40px 0;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .about-content {
         padding-right: 0;
         text-align: center;
     }

     .about-content h2 {
         font-size: 2rem;
         text-align: center;
     }

     .about-content h2::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .about-content p {
         font-size: 0.95rem;
         line-height: 1.7;
     }

     .about-image {
         max-width: 500px;
         margin: 0 auto;
     }
 }

 @media (max-width: 576px) {
     .about-section {
         padding: 30px 0;
     }

     .about-content h2 {
         font-size: 1.8rem;
         margin-bottom: 20px;
     }

     .about-content p {
         font-size: 0.9rem;
         line-height: 1.6;
     }

     .about-image {
         border-radius: 15px;
     }
 }

 .stats-section {
     padding: 100px 0;
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
     position: relative;
     overflow: hidden;
 }

 .stats-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2029&q=80') center/cover;
     opacity: 0.1;
 }

 .stats-wrapper {
     position: relative;
     z-index: 1;
 }

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

 .stat-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

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

 .stat-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     transition: transform 0.3s ease;
 }

 .stat-card:hover .stat-icon {
     transform: scale(1.1);
 }

 .stat-icon i {
     font-size: 32px;
     color: var(--white);
 }

 .stat-content {
     color: var(--white);
 }

 .stat-number {
     font-size: 48px;
     font-weight: 700;
     margin-bottom: 10px;
     background: linear-gradient(45deg, var(--white), var(--light-gray));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     position: relative;
     display: inline-block;
 }

 .stat-number::after {
     content: '+';
     font-size: 32px;
     position: absolute;
     top: -10px;
     right: -20px;
     color: var(--white);
 }

 .stat-label {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--white);
 }

 .stat-description {
     font-size: 16px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
 }

 @media (max-width: 768px) {
     .stats-section {
         padding: 60px 0;
     }

     .stats-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 20px;
     }

     .stat-card {
         padding: 30px 20px;
     }

     .stat-number {
         font-size: 36px;
     }

     .stat-label {
         font-size: 18px;
     }
 }

 .team-section {
     padding: 100px 0;
     background-color: var(--light-gray);
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .team-member {
     background: var(--light);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .team-member:hover {
     transform: translateY(-10px);
 }

 .team-image {
     width: 100%;
     height: 300px;
     overflow: hidden;
 }

 .team-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .team-member:hover .team-image img {
     transform: scale(1.1);
 }

 .team-info {
     padding: 25px;
     text-align: center;
 }

 .team-info h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .team-info p {
     color: var(--gray);
     margin-bottom: 1rem;
 }

 .team-social {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 1rem;
 }

 .team-social a {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: var(--light-gray);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary);
     transition: all 0.3s ease;
 }

 .team-social a:hover {
     background: var(--primary);
     color: var(--light);
     transform: translateY(-3px);
 }

 .mission-section {
     padding: 100px 0;
 }

 .mission-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .mission-card {
     text-align: center;
     padding: 30px;
     background: var(--light);
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .mission-card:hover {
     transform: translateY(-10px);
 }

 .mission-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
 }

 .mission-icon i {
     font-size: 1.8rem;
     color: var(--light);
 }

 .mission-card h3 {
     font-size: 1.4rem;
     margin-bottom: 1rem;
 }

 .mission-cta {
     text-align: center;
     margin-top: 60px;
 }

 .mission-cta p {
     font-size: 1.3rem;
     margin-bottom: 1.5rem;
 }

 /* Responsive Styles for About Page */
 @media (max-width: 1200px) {
     .about-hero h1 {
         font-size: 3rem;
     }

     .about-hero p {
         font-size: 1.3rem;
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 992px) {
     .about-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .about-image {
         order: -1;
     }

     .team-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .mission-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .about-hero {
         padding: 100px 0 60px;
     }

     .about-hero h1 {
         font-size: 2.5rem;
     }

     .about-hero p {
         font-size: 1.1rem;
     }

     .about-section {
         padding: 60px 0;
     }

     .stats-grid {
         gap: 20px;
     }

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

     .stat-label {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .about-hero h1 {
         font-size: 2rem;
     }

     .about-hero p {
         font-size: 1rem;
     }

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

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

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

 /* About Page Mobile Styles */
 @media (max-width: 768px) {
     .about-hero {
         padding: 100px 20px 60px;
         text-align: center;
     }

     .about-hero h1 {
         font-size: 2.5rem;
         margin-bottom: 1rem;
         line-height: 1.2;
     }

     .about-hero p {
         font-size: 1.1rem;
         max-width: 100%;
         margin: 0 auto;
     }

     .about-section {
         padding: 60px 20px;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-top: 30px;
     }

     .about-content {
         text-align: center;
         padding: 0 15px;
     }

     .about-content h2 {
         font-size: 2rem;
         margin-bottom: 1.2rem;
     }

     .about-content p {
         font-size: 1rem;
         line-height: 1.6;
         margin-bottom: 1.2rem;
     }

     .about-image {
         margin: 0 -20px;
     }

     .about-image img {
         width: 100%;
         height: auto;
         border-radius: 0;
     }

     /* Stats Section Mobile */
     .stats-section {
         padding: 60px 20px;
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .stat-item {
         padding: 15px;
     }

     .stat-number {
         font-size: 2.5rem;
         margin-bottom: 0.5rem;
     }

     .stat-label {
         font-size: 1rem;
     }

     /* Team Section Mobile */
     .team-section {
         padding: 60px 20px;
     }

     .team-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-top: 30px;
     }

     .team-member {
         max-width: 400px;
         margin: 0 auto;
     }

     .team-image {
         height: 250px;
     }

     .team-info {
         padding: 20px;
     }

     .team-info h3 {
         font-size: 1.3rem;
     }

     .team-info p {
         font-size: 0.95rem;
     }

     /* Mission Section Mobile */
     .mission-section {
         padding: 60px 20px;
     }

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

     .mission-card {
         padding: 25px;
     }

     .mission-icon {
         width: 60px;
         height: 60px;
         margin-bottom: 1rem;
     }

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

     .mission-card h3 {
         font-size: 1.2rem;
         margin-bottom: 0.8rem;
     }

     .mission-card p {
         font-size: 0.95rem;
     }

     .mission-cta {
         margin-top: 40px;
     }

     .mission-cta p {
         font-size: 1.1rem;
         margin-bottom: 1.2rem;
     }

     /* Section Title Mobile */
     .section-title {
         padding: 0 15px;
         margin-bottom: 30px;
     }

     .section-title h2 {
         font-size: 1.8rem;
         line-height: 1.3;
     }

     .section-title p {
         font-size: 1rem;
         margin-top: 0.8rem;
     }
 }

 @media (max-width: 576px) {
     .about-hero {
         padding: 80px 15px 50px;
     }

     .about-hero h1 {
         font-size: 2rem;
     }

     .about-hero p {
         font-size: 1rem;
     }

     .about-section {
         padding: 50px 15px;
     }

     stats-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .stat-number {
         font-size: 2.2rem;
     }

     .stat-label {
         font-size: 0.95rem;
     }

     .team-image {
         height: 220px;
     }

     .mission-card {
         padding: 20px;
     }

     .mission-cta p {
         font-size: 1rem;
     }

     .section-title h2 {
         font-size: 1.6rem;
     }

     .section-title p {
         font-size: 0.95rem;
     }
 }

 /* Fix for feature cards in about section */
 .about-section .about-grid {
     margin: 0;
     padding: 0;
 }

 .about-section .feature-card {
     background: var(--light);
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     text-align: center;
     transition: transform 0.3s;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .about-section .feature-card:hover {
     transform: translateY(-10px);
 }

 .about-section .icon-circle {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
 }

 .about-section .icon-circle i {
     font-size: 2rem;
     color: var(--light);
 }

 .about-section .feature-card h3 {
     font-size: 1.3rem;
     margin-bottom: 15px;
     color: var(--primary);
 }

 .about-section .feature-card p {
     color: var(--gray);
     line-height: 1.6;
     margin-bottom: 0;
 }

 @media (max-width: 768px) {
     .about-section .about-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         padding: 0 15px;
     }

     .about-section .feature-card {
         padding: 25px;
         margin-bottom: 15px;
     }

     .about-section .icon-circle {
         width: 70px;
         height: 70px;
         margin-bottom: 1.2rem;
     }

     .about-section .icon-circle i {
         font-size: 1.8rem;
     }

     .about-section .feature-card h3 {
         font-size: 1.2rem;
         margin-bottom: 12px;
     }

     .about-section .feature-card p {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .about-section .about-grid {
         gap: 15px;
         padding: 0 10px;
     }

     .about-section .feature-card {
         padding: 20px;
         margin-bottom: 10px;
     }

     .about-section .icon-circle {
         width: 60px;
         height: 60px;
         margin-bottom: 1rem;
     }

     .about-section .icon-circle i {
         font-size: 1.5rem;
     }

     .about-section .feature-card h3 {
         font-size: 1.1rem;
         margin-bottom: 10px;
     }

     .about-section .feature-card p {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 768px) {
     .stats-section {
         padding: 40px 0;
     }

     .stats-grid {
         gap: 15px;
     }

     .stat-card {
         padding: 20px 15px;
     }

     .stat-icon {
         width: 45px;
         height: 45px;
     }

     .stat-icon i {
         font-size: 1.2rem;
     }

     .stat-number {
         font-size: 2rem;
     }

     .stat-label {
         font-size: 0.9rem;
     }

     .stat-description {
         font-size: 0.75rem;
     }
 }

 @media (max-width: 576px) {
     .stats-section {
         padding: 30px 0;
     }

     .stats-grid {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     .stat-card {
         padding: 15px;
         flex-direction: row;
         align-items: center;
         gap: 15px;
     }

     .stat-icon {
         width: 40px;
         height: 40px;
         margin-bottom: 0;
     }

     .stat-icon i {
         font-size: 1rem;
     }



     .stat-number {
         font-size: 1.8rem;
         margin-bottom: 2px;
     }

     .stat-label {
         font-size: 0.85rem;
         margin-bottom: 2px;
     }

     .stat-description {
         font-size: 0.7rem;
         line-height: 1.3;
     }
 }

 .why-us {
     padding: 100px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     position: relative;
     overflow: hidden;
 }

 .why-us::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     opacity: 0.5;
 }

 .why-us-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .why-us-badge {
     display: inline-block;
     padding: 8px 20px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     color: white;
     border-radius: 30px;
     font-size: 0.9rem;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 20px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .why-us-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--dark);
     margin-bottom: 20px;
     line-height: 1.3;
 }

 .why-us-subtitle {
     font-size: 1.2rem;
     color: var(--gray);
     max-width: 600px;
     margin: 0 auto;
 }

 .why-us-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     margin-top: 40px;
 }

 .why-us-card {
     background: white;
     border-radius: 20px;
     padding: 40px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .why-us-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 1;
 }

 .why-us-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .why-us-card:hover::before {
     opacity: 0.05;
 }

 .why-us-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
 }

 .why-us-icon i {
     font-size: 28px;
     color: white;
     transition: all 0.3s ease;
 }

 .why-us-card:hover .why-us-icon {
     transform: rotateY(180deg);
 }

 .why-us-content {
     position: relative;
     z-index: 2;
 }

 .why-us-content h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 15px;
     transition: all 0.3s ease;
 }

 .why-us-content p {
     color: var(--gray);
     margin-bottom: 20px;
     line-height: 1.6;
     transition: all 0.3s ease;
 }

 .why-us-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .why-us-list li {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
     color: var(--gray);
     transition: all 0.3s ease;
 }

 .why-us-list li i {
     color: var(--primary);
     margin-right: 10px;
     font-size: 0.9rem;
 }

 .why-us-card:hover .why-us-content h3,
 .why-us-card:hover .why-us-content p,
 .why-us-card:hover .why-us-list li {
     color: var(--dark);
 }

 @media (max-width: 1200px) {
     .why-us-grid {
         gap: 20px;
     }

     .why-us-title {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 768px) {
     .why-us {
         padding: 60px 0;
     }

     .why-us-header {
         margin-bottom: 40px;
     }

     .why-us-title {
         font-size: 1.8rem;
     }

     .why-us-subtitle {
         font-size: 1.1rem;
     }

     .why-us-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .why-us-card {
         padding: 30px;
     }

     .why-us-icon {
         width: 60px;
         height: 60px;
     }

     .why-us-icon i {
         font-size: 24px;
     }

     .why-us-content h3 {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 576px) {
     .why-us {
         padding: 40px 0;
     }

     .why-us-title {
         font-size: 1.5rem;
     }

     .why-us-subtitle {
         font-size: 1rem;
     }

     .why-us-card {
         padding: 25px;
     }

     .why-us-icon {
         width: 50px;
         height: 50px;
     }

     .why-us-icon i {
         font-size: 20px;
     }

     .why-us-content h3 {
         font-size: 1.2rem;
     }

     .why-us-content p {
         font-size: 0.95rem;
     }

     .why-us-list li {
         font-size: 0.9rem;
     }
 }

 /* Services Page Styles */
 .services-hero {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80');
     background-size: cover;
     background-position: center;
     color: white;
     text-align: center;
     padding: 100px 0;
 }

 .services-hero h1 {
     font-size: 3.5rem;
     margin-bottom: 20px;
 }

 .services-hero p {
     font-size: 1.2rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .services-grid-section {
     padding: 80px 0;
     background-color: var(--light-bg);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .service-card {
     background: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .service-icon i {
     font-size: 1.8rem;
     color: white;
 }

 .service-card h3 {
     font-size: 1.4rem;
     margin-bottom: 15px;
     color: var(--dark);
 }

 .service-card p {
     color: var(--gray);
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .service-features {
     list-style: none;
     margin-bottom: 25px;
 }

 .service-features li {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
     color: var(--gray);
 }

 .service-features li i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 0.9rem;
 }

 .service-card .btn {
     width: 100%;
     text-align: center;
 }

 .cta-section {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     text-align: center;
     padding: 80px 0;
 }

 .cta-section h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
 }

 .cta-section p {
     font-size: 1.1rem;
     margin-bottom: 30px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-section .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
 }

 .cta-section .btn-secondary {
     background: white;
     color: var(--primary-color);
 }

 .cta-section .btn-secondary:hover {
     background: var(--light-bg);
 }

 /* Responsive Styles for Services Page */
 @media (max-width: 1200px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .services-hero h1 {
         font-size: 2.5rem;
     }

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

     .cta-section .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .cta-section .btn {
         width: 100%;
         max-width: 300px;
     }
 }

 /* Web Development Page Styles */
 .web-dev-hero {
     position: relative;
     padding: 160px 0 120px;
     background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('https://img.freepik.com/free-photo/website-hosting-concept-with-bright-light_23-2149406783.jpg?semt=ais_hybrid&w=740') no-repeat center center/cover;
     color: #ffffff;
     overflow: hidden;
 }

 .web-dev-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%23ffffff" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: float 20s linear infinite;
 }

 .web-dev-hero h1 {
     font-size: 3.8rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 30px;
     position: relative;
     z-index: 2;
     text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
     background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: fadeInUp 1s ease-out;
 }

 .web-dev-hero p {
     font-size: 1.4rem;
     line-height: 1.6;
     margin-bottom: 40px;
     color: rgba(255, 255, 255, 0.9);
     position: relative;
     z-index: 2;
     animation: fadeInUp 1s ease-out 0.2s;
     animation-fill-mode: both;
 }

 .web-dev-hero .hero-buttons {
     display: flex;
     gap: 20px;
     position: relative;
     z-index: 2;
     animation: fadeInUp 1s ease-out 0.4s;
     animation-fill-mode: both;
 }

 .web-dev-hero .btn {
     padding: 16px 32px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

 .web-dev-hero .btn-primary {
     background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
     border: none;
     color: #ffffff;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .web-dev-hero .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
 }

 .web-dev-hero .btn-secondary {
     background: rgba(255, 255, 255, 0.1);
     border: 2px solid rgba(255, 255, 255, 0.2);
     color: #ffffff;
     backdrop-filter: blur(10px);
 }

 .web-dev-hero .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-3px);
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .web-dev-hero {
         padding: 120px 0 80px;
     }

     .web-dev-hero h1 {
         font-size: 2.8rem;
     }

     .web-dev-hero p {
         font-size: 1.2rem;
     }

     .web-dev-hero .hero-buttons {
         flex-direction: column;
         gap: 15px;
     }

     .web-dev-hero .btn {
         width: 100%;
         text-align: center;
     }
 }

 @media (max-width: 576px) {
     .web-dev-hero {
         padding: 100px 0 60px;
     }

     .web-dev-hero h1 {
         font-size: 2.2rem;
     }

     .web-dev-hero p {
         font-size: 1.1rem;
     }
 }

 .web-dev-intro {
     position: relative;
     padding: 160px 0;
     background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
     overflow: hidden;
 }

 .web-dev-intro::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 @keyframes patternFloat {
     0% {
         transform: translate(0, 0) rotate(0deg);
     }

     50% {
         transform: translate(-10px, -10px) rotate(1deg);
     }

     100% {
         transform: translate(0, 0) rotate(0deg);
     }
 }

 .intro-content {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .intro-content h2 {
     font-size: 4rem;
     color: #1a1a1a;
     margin-bottom: 40px;
     position: relative;
     font-weight: 800;
     line-height: 1.2;
     text-transform: uppercase;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
 }

 .intro-content h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 0;
     width: 120px;
     height: 4px;
     background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 2px;
     box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
 }

 .intro-content p {
     font-size: 1.3rem;
     line-height: 1.8;
     color: #4b5563;
     margin-bottom: 30px;
     position: relative;
     animation: fadeInUp 1s ease-out 0.2s;
     animation-fill-mode: both;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .intro-content p:last-child {
     margin-bottom: 0;
 }

 .intro-content p::before {
     content: '';
     position: absolute;
     top: -20px;
     left: 0;
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, #4f46e5 0%, transparent 100%);
     opacity: 0.5;
 }

 .intro-content p::after {
     content: '';
     position: absolute;
     bottom: -20px;
     right: 0;
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, transparent 0%, #4f46e5 100%);
     opacity: 0.5;
 }

 .intro-content .intro-image {
     position: relative;
     animation: float 6s ease-in-out infinite;
 }

 .intro-content .intro-image::before {
     content: '';
     position: absolute;
     top: -20px;
     left: -20px;
     right: -20px;
     bottom: -20px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 20px;
     opacity: 0.1;
     z-index: -1;
     animation: pulse 4s ease-in-out infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 0.1;
     }

     50% {
         transform: scale(1.05);
         opacity: 0.15;
     }

     100% {
         transform: scale(1);
         opacity: 0.1;
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0);
     }
 }

 @media (max-width: 1200px) {
     .intro-content {
         gap: 40px;
     }

     .intro-content h2 {
         font-size: 3.5rem;
     }

     .intro-content p {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-intro {
         padding: 120px 0;
     }

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

     .intro-content h2 {
         font-size: 3rem;
     }

     .intro-content h2::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .intro-content p {
         font-size: 1.15rem;
     }

     .intro-content p::before,
     .intro-content p::after {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .web-dev-intro {
         padding: 100px 0;
     }

     .intro-content h2 {
         font-size: 2.5rem;
     }

     .intro-content p {
         font-size: 1.1rem;
         line-height: 1.7;
     }
 }

 @media (max-width: 576px) {
     .web-dev-intro {
         padding: 80px 0;
     }

     .intro-content h2 {
         font-size: 2.2rem;
     }

     .intro-content p {
         font-size: 1rem;
     }

     .intro-content h2::after {
         width: 100px;
     }
 }

 .web-dev-importance {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-importance::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
     opacity: 0.5;
 }

 .web-dev-importance .container {
     position: relative;
     z-index: 2;
 }

 .web-dev-importance h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 60px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

 .importance-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .importance-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .importance-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .importance-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

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

 .importance-card h3 {
     font-size: 1.8rem;
     color: #1a1a1a;
     margin-bottom: 30px;
     position: relative;
     padding-bottom: 15px;
 }

 .importance-card h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 2px;
 }

 .stats-list,
 .influence-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .stats-list li,
 .influence-list li {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-size: 1.1rem;
     color: #4b5563;
     transition: transform 0.3s ease;
 }

 .stats-list li:hover,
 .influence-list li:hover {
     transform: translateX(10px);
 }

 .stats-list li i,
 .influence-list li i {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     margin-right: 15px;
     font-size: 1.2rem;
     box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
     transition: transform 0.3s ease;
 }

 .stats-list li:hover i,
 .influence-list li:hover i {
     transform: scale(1.1);
 }

 @media (max-width: 1200px) {
     .web-dev-importance h2 {
         font-size: 3rem;
     }

     .importance-card {
         padding: 30px;
     }

     .importance-card h3 {
         font-size: 1.6rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-importance {
         padding: 100px 0;
     }

     .importance-grid {
         grid-template-columns: 1fr;
         max-width: 600px;
     }

     .web-dev-importance h2 {
         font-size: 2.8rem;
         margin-bottom: 40px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-importance {
         padding: 80px 0;
     }

     .web-dev-importance h2 {
         font-size: 2.5rem;
     }

     .importance-card {
         padding: 25px;
     }

     .importance-card h3 {
         font-size: 1.4rem;
     }

     .stats-list li,
     .influence-list li {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-importance {
         padding: 60px 0;
     }

     .web-dev-importance h2 {
         font-size: 2.2rem;
     }

     .importance-card {
         padding: 20px;
     }

     .importance-card h3 {
         font-size: 1.3rem;
     }

     .stats-list li i,
     .influence-list li i {
         width: 35px;
         height: 35px;
         font-size: 1rem;
     }
 }

 .web-dev-about {
     position: relative;
     padding: 140px 0;
     background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
     overflow: hidden;
 }

 .web-dev-about::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-about .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-about h2 {
     font-size: 2.8rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
     line-height: 1.3;
 }

 @media (max-width: 992px) {
     .web-dev-about h2 {
         font-size: 2.2rem;
         line-height: 1.4;
         margin-bottom: 30px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-about h2 {
         font-size: 1.8rem !important;
         line-height: 1.4;
         margin-bottom: 25px;
         letter-spacing: -0.5px;
     }
 }

 @media (max-width: 480px) {
     .web-dev-about h2 {
         font-size: 1.5rem !important;
         line-height: 1.4;
         margin-bottom: 20px;
         letter-spacing: -0.25px;
     }
 }

 .web-dev-about p {
     font-size: 1.2rem;
     line-height: 1.8;
     color: #4b5563;
     text-align: center;
     max-width: 800px;
     margin: 0 auto 40px;
     animation: fadeInUp 1s ease-out 0.2s;
     animation-fill-mode: both;
 }

 .web-dev-about h3 {
     font-size: 2rem;
     text-align: center;
     margin-bottom: 40px;
     color: #1a1a1a;
     font-weight: 700;
     animation: fadeInUp 1s ease-out 0.4s;
     animation-fill-mode: both;
 }

 .features-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-top: 40px;
     position: relative;
 }

 .features-list::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .features-list li {
     background: #ffffff;
     border-radius: 20px;
     padding: 30px 25px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     gap: 20px;
     cursor: pointer;
 }

 .features-list li::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .features-list li:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .features-list li:hover::before {
     opacity: 1;
 }

 .features-list li i {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.8rem;
     box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
     transition: all 0.3s ease;
     flex-shrink: 0;
 }

 .features-list li:hover i {
     transform: scale(1.15) rotate(8deg);
     background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
 }

 .features-list li span {
     font-size: 1.2rem;
     color: #1a1a1a;
     font-weight: 600;
     transition: all 0.3s ease;
     line-height: 1.4;
 }

 .features-list li:hover span {
     color: #4f46e5;
 }

 @media (max-width: 1200px) {
     .features-list {
         gap: 25px;
     }

     .features-list li {
         padding: 25px 20px;
     }

     .features-list li i {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }

     .features-list li span {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 992px) {
     .features-list {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 20px;
     }

     .features-list li {
         padding: 20px 15px;
     }
 }

 @media (max-width: 768px) {
     .features-list {
         grid-template-columns: 1fr;
         gap: 20px;
         padding: 0 15px;
         margin-top: 30px;
     }

     .features-list li {
         padding: 25px 20px;
         border-radius: 16px;
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
         display: flex;
         align-items: center;
         gap: 15px;
     }

     .features-list li i {
         width: 50px;
         height: 50px;
         font-size: 1.4rem;
         border-radius: 12px;
         flex-shrink: 0;
     }

     .features-list li span {
         font-size: 1.1rem;
         font-weight: 600;
         line-height: 1.4;
     }
 }

 @media (max-width: 576px) {
     .features-list {
         gap: 15px;
         padding: 0 10px;
         margin-top: 25px;
     }

     .features-list li {
         padding: 20px 15px;
         border-radius: 14px;
         box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
         gap: 12px;
     }

     .features-list li i {
         width: 45px;
         height: 45px;
         font-size: 1.3rem;
         border-radius: 10px;
     }

     .features-list li span {
         font-size: 1rem;
         font-weight: 600;
         line-height: 1.3;
     }
 }

 @media (max-width: 375px) {
     .features-list {
         gap: 12px;
         padding: 0 8px;
         margin-top: 20px;
     }

     .features-list li {
         padding: 18px 12px;
         border-radius: 12px;
         gap: 10px;
     }

     .features-list li i {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
         border-radius: 8px;
     }

     .features-list li span {
         font-size: 0.95rem;
         line-height: 1.2;
     }
 }

 .web-dev-services {
     position: relative;
     padding: 140px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-services::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-services .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-services h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 30px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

 .web-dev-services>.container>p {
     font-size: 1.2rem;
     line-height: 1.8;
     color: #4b5563;
     text-align: center;
     max-width: 800px;
     margin: 0 auto 60px;
     animation: fadeInUp 1s ease-out 0.2s;
     animation-fill-mode: both;
 }

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

 .service-card {
     background: #ffffff;
     border-radius: 20px;
     padding: 40px 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

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

 .service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     position: relative;
     transition: all 0.3s ease;
 }

 .service-icon::after {
     content: '';
     position: absolute;
     top: -5px;
     left: -5px;
     right: -5px;
     bottom: -5px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 25px;
     opacity: 0.2;
     z-index: -1;
     transition: all 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1) rotate(5deg);
 }

 .service-card:hover .service-icon::after {
     transform: scale(1.2);
     opacity: 0.3;
 }

 .service-icon i {
     font-size: 2rem;
     color: #ffffff;
     transition: all 0.3s ease;
 }

 .service-card h3 {
     font-size: 1.5rem;
     color: #1a1a1a;
     margin-bottom: 20px;
     font-weight: 700;
     transition: all 0.3s ease;
 }

 .service-card:hover h3 {
     transform: translateY(-5px);
 }

 .service-features {
     list-style: none;
     padding: 0;
     margin: 0;
     width: 100%;
 }

 .service-features li {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     font-size: 1.1rem;
     color: #4b5563;
     transition: all 0.3s ease;
 }

 .service-features li i {
     color: #4f46e5;
     margin-right: 10px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .service-card:hover .service-features li {
     transform: translateX(5px);
 }

 .service-card:hover .service-features li i {
     transform: scale(1.2);
 }

 @media (max-width: 1200px) {
     .web-dev-services h2 {
         font-size: 3rem;
     }

     .service-card {
         padding: 35px 25px;
     }

     .service-icon {
         width: 70px;
         height: 70px;
     }

     .service-icon i {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-services {
         padding: 100px 0;
     }

     .web-dev-services h2 {
         font-size: 2.8rem;
     }

     .web-dev-services>.container>p {
         font-size: 1.1rem;
         margin-bottom: 40px;
     }

     .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .web-dev-services {
         padding: 80px 0;
     }

     .web-dev-services h2 {
         font-size: 2.5rem;
     }

     .web-dev-services>.container>p {
         font-size: 1rem;
     }

     .service-card {
         padding: 30px 20px;
     }

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

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

     .service-card h3 {
         font-size: 1.3rem;
     }

     .service-features li {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-services {
         padding: 60px 0;
     }

     .web-dev-services h2 {
         font-size: 2.2rem;
     }

     .service-card {
         padding: 25px 15px;
     }

     .service-icon {
         width: 50px;
         height: 50px;
     }

     .service-icon i {
         font-size: 1.3rem;
     }

     .service-card h3 {
         font-size: 1.2rem;
     }

     .service-features li {
         font-size: 0.95rem;
     }
 }

 .web-dev-tech {
     padding: 80px 0;
     background: #f8f9fa;
 }

 .tech-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     margin-top: 40px;
 }

 .tech-category {
     background: white;
     padding: 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .tech-category:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .tech-category h3 {
     font-size: 1.5rem;
     color: #2d3436;
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 2px solid #e9ecef;
     position: relative;
 }

 .tech-category h3::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 50px;
     height: 2px;
     background: linear-gradient(45deg, #6c5ce7, #0984e3);
     transition: width 0.3s ease;
 }

 .tech-category:hover h3::after {
     width: 100px;
 }

 .tech-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .tech-list li {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 12px 15px;
     margin-bottom: 10px;
     background: #f8f9fa;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .tech-list li:hover {
     background: #e9ecef;
     transform: translateX(5px);
 }

 .tech-list i {
     font-size: 1.5rem;
     color: #6c5ce7;
     transition: transform 0.3s ease;
 }

 .tech-list li:hover i {
     transform: scale(1.1);
 }

 /* Responsive Styles for Technology Section */
 @media (max-width: 1200px) {
     .tech-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .web-dev-tech {
         padding: 60px 0;
     }

     .tech-grid {
         gap: 20px;
     }

     .tech-category {
         padding: 25px;
     }

     .tech-category h3 {
         font-size: 1.3rem;
         margin-bottom: 20px;
     }

     .tech-list li {
         padding: 10px 12px;
         font-size: 0.95rem;
     }

     .tech-list i {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 480px) {
     .tech-grid {
         grid-template-columns: 1fr;
     }

     .tech-category {
         padding: 20px;
     }

     .tech-category h3 {
         font-size: 1.2rem;
         margin-bottom: 15px;
     }

     .tech-list li {
         padding: 8px 10px;
         font-size: 0.9rem;
     }

     .tech-list i {
         font-size: 1.2rem;
     }
 }

 .web-dev-process {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-process::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-process .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-process h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .process-step {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 40px 25px 30px 25px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .process-step::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .process-step:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .process-step:hover::before {
     opacity: 1;
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 25px;
     box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
     transition: all 0.3s ease;
     position: relative;
     z-index: 2;
 }

 .process-step:hover .step-number {
     transform: scale(1.1) rotate(8deg);
     background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
 }

 .process-step h3 {
     font-size: 1.3rem;
     color: #1a1a1a;
     margin-bottom: 18px;
     font-weight: 700;
     transition: all 0.3s ease;
 }

 .process-step:hover h3 {
     color: #4f46e5;
 }

 .step-features {
     list-style: none;
     padding: 0;
     margin: 0;
     width: 100%;
 }

 .step-features li {
     display: flex;
     align-items: center;
     margin-bottom: 14px;
     font-size: 1.05rem;
     color: #4b5563;
     transition: all 0.3s ease;
 }

 .step-features li:last-child {
     margin-bottom: 0;
 }

 .step-features li i {
     color: #4f46e5;
     margin-right: 10px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .process-step:hover .step-features li {
     transform: translateX(5px);
 }

 .process-step:hover .step-features li i {
     transform: scale(1.2);
 }

 @media (max-width: 1200px) {
     .web-dev-process h2 {
         font-size: 3rem;
     }

     .process-step {
         padding: 30px 15px 20px 15px;
     }

     .step-number {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-process {
         padding: 80px 0;
     }

     .web-dev-process h2 {
         font-size: 2.5rem;
     }

     .process-steps {
         gap: 20px;
     }

     .process-step {
         padding: 22px 8px 15px 8px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-process {
         padding: 60px 0;
     }

     .web-dev-process h2 {
         font-size: 2.2rem;
     }

     .process-step {
         padding: 15px 4px 10px 4px;
     }

     .step-number {
         width: 38px;
         height: 38px;
         font-size: 1rem;
         margin-bottom: 15px;
     }

     .process-step h3 {
         font-size: 1.1rem;
     }

     .step-features li {
         font-size: 0.95rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-process {
         padding: 40px 0;
     }

     .web-dev-process h2 {
         font-size: 1.5rem;
     }

     .process-steps {
         gap: 10px;
     }

     .process-step {
         padding: 10px 2px 8px 2px;
     }

     .step-number {
         width: 28px;
         height: 28px;
         font-size: 0.8rem;
         margin-bottom: 10px;
     }

     .process-step h3 {
         font-size: 1rem;
     }

     .step-features li {
         font-size: 0.9rem;
     }
 }

 .web-dev-industries {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-industries::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-industries .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-industries h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 20px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

 .web-dev-industries>.container>p {
     font-size: 1.2rem;
     line-height: 1.8;
     color: #4b5563;
     text-align: center;
     max-width: 800px;
     margin: 0 auto 50px;
     animation: fadeInUp 1s ease-out 0.2s;
     animation-fill-mode: both;
 }

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

 .industry-card {
     background: #ffffff;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 30px 20px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .industry-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .industry-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

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

 .industry-card i {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.8rem;
     margin-bottom: 20px;
     box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
     transition: all 0.3s ease;
     position: relative;
     z-index: 2;
 }

 .industry-card:hover i {
     transform: scale(1.1) rotate(8deg);
     background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
 }

 .industry-card span {
     font-size: 1.1rem;
     color: #1a1a1a;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .industry-card:hover span {
     color: #4f46e5;
 }

 @media (max-width: 1200px) {
     .web-dev-industries h2 {
         font-size: 3rem;
     }

     .industry-card {
         padding: 25px 15px;
     }

     .industry-card i {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-industries {
         padding: 80px 0;
     }

     .web-dev-industries h2 {
         font-size: 2.5rem;
     }

     .industries-grid {
         gap: 20px;
     }

     .industry-card {
         padding: 20px 10px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-industries {
         padding: 60px 0;
     }

     .web-dev-industries h2 {
         font-size: 2.2rem;
     }

     .industry-card {
         padding: 15px 5px;
     }

     .industry-card i {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .industry-card span {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-industries {
         padding: 40px 0;
     }

     .web-dev-industries h2 {
         font-size: 1.5rem;
     }

     .industries-grid {
         gap: 10px;
     }

     .industry-card {
         padding: 10px 2px;
     }

     .industry-card i {
         width: 30px;
         height: 30px;
         font-size: 1rem;
     }

     .industry-card span {
         font-size: 0.9rem;
     }
 }

 .web-dev-case-studies {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-case-studies::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-case-studies .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-case-studies h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

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

 .case-study-card {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 40px 30px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .case-study-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .case-study-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .case-study-card:hover::before {
     opacity: 1;
 }

 .case-study-card h3 {
     font-size: 1.5rem;
     color: #1a1a1a;
     margin-bottom: 25px;
     font-weight: 700;
     transition: all 0.3s ease;
     position: relative;
     padding-bottom: 15px;
 }

 .case-study-card h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     transition: all 0.3s ease;
 }

 .case-study-card:hover h3 {
     color: #4f46e5;
 }

 .case-study-card:hover h3::after {
     width: 100px;
 }

 .case-study-stats {
     list-style: none;
     padding: 0;
     margin: 0;
     width: 100%;
 }

 .case-study-stats li {
     display: flex;
     align-items: center;
     margin-bottom: 18px;
     font-size: 1.1rem;
     color: #4b5563;
     transition: all 0.3s ease;
 }

 .case-study-stats li:last-child {
     margin-bottom: 0;
 }

 .case-study-stats li i {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     margin-right: 15px;
     font-size: 1.2rem;
     box-shadow: 0 4px 10px rgba(99, 102, 241, 0.15);
     transition: all 0.3s ease;
 }

 .case-study-card:hover .case-study-stats li {
     transform: translateX(8px);
 }

 .case-study-card:hover .case-study-stats li i {
     transform: scale(1.15) rotate(8deg);
     background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
 }

 @media (max-width: 1200px) {
     .web-dev-case-studies h2 {
         font-size: 3rem;
     }

     .case-study-card {
         padding: 35px 25px;
     }

     .case-study-card h3 {
         font-size: 1.4rem;
     }

     .case-study-stats li i {
         width: 35px;
         height: 35px;
         font-size: 1.1rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-case-studies {
         padding: 80px 0;
     }

     .web-dev-case-studies h2 {
         font-size: 2.5rem;
     }

     .case-studies-grid {
         gap: 20px;
     }

     .case-study-card {
         padding: 30px 20px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-case-studies {
         padding: 60px 0;
     }

     .web-dev-case-studies h2 {
         font-size: 2.2rem;
     }

     .case-study-card {
         padding: 25px 15px;
     }

     .case-study-card h3 {
         font-size: 1.3rem;
     }

     .case-study-stats li {
         font-size: 1rem;
     }

     .case-study-stats li i {
         width: 30px;
         height: 30px;
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-case-studies {
         padding: 40px 0;
     }

     .web-dev-case-studies h2 {
         font-size: 1.5rem;
     }

     .case-studies-grid {
         gap: 15px;
     }

     .case-study-card {
         padding: 20px 10px;
     }

     .case-study-card h3 {
         font-size: 1.2rem;
     }

     .case-study-stats li {
         font-size: 0.95rem;
     }

     .case-study-stats li i {
         width: 25px;
         height: 25px;
         font-size: 0.9rem;
         margin-right: 10px;
     }
 }

 .web-dev-testimonials {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-testimonials::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-testimonials .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-testimonials h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

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

 .testimonial-card {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 40px 30px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .testimonial-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

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

 .testimonial-content {
     position: relative;
     width: 100%;
 }

 .testimonial-content::before {
     content: '"';
     position: absolute;
     top: -20px;
     left: -10px;
     font-size: 5rem;
     color: rgba(99, 102, 241, 0.1);
     font-family: serif;
     line-height: 1;
     z-index: 0;
 }

 .testimonial-content p {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #4b5563;
     margin-bottom: 25px;
     position: relative;
     z-index: 1;
     transition: all 0.3s ease;
 }

 .testimonial-card:hover .testimonial-content p {
     color: #1a1a1a;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     width: 100%;
     margin-top: auto;
 }

 .testimonial-author h4 {
     font-size: 1.2rem;
     color: #1a1a1a;
     margin-bottom: 5px;
     font-weight: 700;
     transition: all 0.3s ease;
 }

 .testimonial-author p {
     font-size: 0.95rem;
     color: #6b7280;
     margin: 0;
     transition: all 0.3s ease;
 }

 .testimonial-card:hover .testimonial-author h4 {
     color: #4f46e5;
 }

 .testimonial-card:hover .testimonial-author p {
     color: #4b5563;
 }

 @media (max-width: 1200px) {
     .web-dev-testimonials h2 {
         font-size: 3rem;
     }

     .testimonial-card {
         padding: 35px 25px;
     }

     .testimonial-content p {
         font-size: 1.05rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-testimonials {
         padding: 80px 0;
     }

     .web-dev-testimonials h2 {
         font-size: 2.5rem;
     }

     .testimonials-grid {
         gap: 20px;
     }

     .testimonial-card {
         padding: 30px 20px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-testimonials {
         padding: 60px 0;
     }

     .web-dev-testimonials h2 {
         font-size: 2.2rem;
     }

     .testimonial-card {
         padding: 25px 15px;
     }

     .testimonial-content p {
         font-size: 1rem;
     }

     .testimonial-author h4 {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-testimonials {
         padding: 40px 0;
     }

     .web-dev-testimonials h2 {
         font-size: 1.5rem;
     }

     .testimonials-grid {
         gap: 15px;
     }

     .testimonial-card {
         padding: 20px 10px;
     }

     .testimonial-content p {
         font-size: 0.95rem;
     }

     .testimonial-author h4 {
         font-size: 1rem;
     }

     .testimonial-author p {
         font-size: 0.9rem;
     }
 }

 .web-dev-stats {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-stats::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-stats .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-stats h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

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

 .stat-card {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 40px 30px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .stat-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

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

 .stat-number {
     font-size: 3.5rem;
     font-weight: 800;
     color: #1a1a1a;
     margin-bottom: 15px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     transition: all 0.3s ease;
     position: relative;
     display: inline-block;
 }

 .stat-number::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 3px;
     background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
     transition: all 0.3s ease;
 }

 .stat-card:hover .stat-number::after {
     width: 50px;
 }

 .stat-label {
     font-size: 1.1rem;
     color: #4b5563;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .stat-card:hover .stat-label {
     color: #1a1a1a;
 }

 @media (max-width: 1200px) {
     .web-dev-stats h2 {
         font-size: 3rem;
     }

     .stat-card {
         padding: 35px 25px;
     }

     .stat-number {
         font-size: 3rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-stats {
         padding: 80px 0;
     }

     .web-dev-stats h2 {
         font-size: 2.5rem;
     }

     .stats-grid {
         gap: 20px;
     }

     .stat-card {
         padding: 30px 20px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-stats {
         padding: 60px 0;
     }

     .web-dev-stats h2 {
         font-size: 2.2rem;
     }

     .stat-card {
         padding: 25px 15px;
     }

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

     .stat-label {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-stats {
         padding: 40px 0;
     }

     .web-dev-stats h2 {
         font-size: 1.5rem;
     }

     .stats-grid {
         gap: 15px;
     }

     .stat-card {
         padding: 20px 10px;
     }

     .stat-number {
         font-size: 2rem;
     }

     .stat-label {
         font-size: 0.95rem;
     }
 }

 .web-dev-faq {
     position: relative;
     padding: 120px 0;
     background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
     overflow: hidden;
 }

 .web-dev-faq::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
         url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%236366f1" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
     animation: patternFloat 20s linear infinite;
 }

 .web-dev-faq .container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .web-dev-faq h2 {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #1a1a1a 0%, #4f46e5 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 800;
     letter-spacing: -1px;
     animation: fadeInUp 1s ease-out;
 }

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

 .faq-item {
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     padding: 40px 30px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .faq-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .faq-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .faq-item:hover::before {
     opacity: 1;
 }

 .faq-item h3 {
     font-size: 1.3rem;
     color: #1a1a1a;
     margin-bottom: 20px;
     font-weight: 700;
     transition: all 0.3s ease;
     position: relative;
     padding-left: 35px;
 }

 .faq-item h3::before {
     content: 'Q:';
     position: absolute;
     left: 0;
     top: 0;
     font-size: 1.1rem;
     color: #4f46e5;
     font-weight: 800;
     transition: all 0.3s ease;
 }

 .faq-item:hover h3 {
     color: #4f46e5;
 }

 .faq-item:hover h3::before {
     transform: scale(1.2);
 }

 .faq-item p {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #4b5563;
     margin: 0;
     transition: all 0.3s ease;
     position: relative;
     padding-left: 35px;
 }

 .faq-item p::before {
     content: 'A:';
     position: absolute;
     left: 0;
     top: 0;
     font-size: 1.1rem;
     color: #6366f1;
     font-weight: 800;
     transition: all 0.3s ease;
 }

 .faq-item:hover p {
     color: #1a1a1a;
 }

 .faq-item:hover p::before {
     transform: scale(1.2);
 }

 @media (max-width: 1200px) {
     .web-dev-faq h2 {
         font-size: 3rem;
     }

     .faq-item {
         padding: 35px 25px;
     }

     .faq-item h3 {
         font-size: 1.2rem;
     }

     .faq-item p {
         font-size: 1.05rem;
     }
 }

 @media (max-width: 992px) {
     .web-dev-faq {
         padding: 80px 0;
     }

     .web-dev-faq h2 {
         font-size: 2.5rem;
     }

     .faq-grid {
         gap: 20px;
     }

     .faq-item {
         padding: 30px 20px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-faq {
         padding: 60px 0;
     }

     .web-dev-faq h2 {
         font-size: 2.2rem;
     }

     .faq-item {
         padding: 25px 15px;
     }

     .faq-item h3 {
         font-size: 1.1rem;
     }

     .faq-item p {
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {
     .web-dev-faq {
         padding: 40px 0;
     }

     .web-dev-faq h2 {
         font-size: 1.5rem;
     }

     .faq-grid {
         gap: 15px;
     }

     .faq-item {
         padding: 20px 10px;
     }

     .faq-item h3 {
         font-size: 1rem;
     }

     .faq-item p {
         font-size: 0.95rem;
     }
 }

 .web-dev-cta {
     position: relative;
     padding: 100px 0;
     background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
     color: var(--light);
     overflow: hidden;
 }

 .web-dev-cta::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%23ffffff" fill-opacity="0.1"/></svg>');
     opacity: 0.5;
 }

 .cta-wrapper {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .cta-content {
     text-align: center;
 }

 .cta-header {
     margin-bottom: 40px;
 }

 .cta-badge {
     display: inline-block;
     padding: 8px 20px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 30px;
     font-size: 0.9rem;
     font-weight: 500;
     margin-bottom: 20px;
     backdrop-filter: blur(10px);
 }

 .cta-header h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     line-height: 1.3;
     color: var(--light);
 }

 .cta-subtitle {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.9);
     max-width: 600px;
     margin: 0 auto;
 }

 .cta-features {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .cta-feature {
     display: flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 255, 255, 0.1);
     padding: 12px 20px;
     border-radius: 30px;
     backdrop-filter: blur(10px);
 }

 .cta-feature i {
     color: var(--secondary);
     font-size: 1.2rem;
 }

 .cta-feature span {
     font-size: 1rem;
     font-weight: 500;
 }

 .consultation-form {
     max-width: 600px;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0.1);
     padding: 30px;
     border-radius: 20px;
     backdrop-filter: blur(10px);
 }

 .form-row {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
 }

 .form-group {
     flex: 1;
     position: relative;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 16px;
     transition: all 0.3s ease;
     background-color: #fff;
     color: #333;
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
     padding-top: 16px;
 }

 .form-group i {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: rgba(255, 255, 255, 0.5);
     font-size: 1.2rem;
 }

 .form-group textarea+i {
     top: 25px;
     transform: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: #007bff;
     outline: none;
     box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
 }

 .form-group input::placeholder,
 .form-group select::placeholder,
 .form-group textarea::placeholder {
     color: transparent;
 }

 .form-group label {
     position: absolute;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: #666;
     transition: all 0.3s ease;
     pointer-events: none;
     background-color: #fff;
     padding: 0 5px;
     font-size: 16px;
 }

 .form-group textarea+label {
     top: 25px;
     transform: none;
 }

 .form-group input:focus+label,
 .form-group select:focus+label,
 .form-group textarea:focus+label,
 .form-group input:not(:placeholder-shown)+label,
 .form-group select:not(:placeholder-shown)+label,
 .form-group textarea:not(:placeholder-shown)+label {
     top: 0;
     font-size: 14px;
     color: #007bff;
     background-color: #fff;
 }

 /* Style for select dropdown */
 .form-group select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 12px center;
     background-size: 16px;
     padding-right: 40px;
 }

 /* Style for textarea */
 .form-group textarea {
     min-height: 120px;
     resize: vertical;
     padding-top: 16px;
 }

 /* Style for the first option in select */
 .form-group select option:first-child {
     color: #666;
 }

 /* Style for other options in select */
 .form-group select option {
     color: #333;
 }

 .btn-large {
     width: 100%;
     padding: 15px 30px;
     font-size: 1.1rem;
     border-radius: 10px;
     background: var(--secondary);
     color: var(--dark);
     border: none;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .btn-large:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 @media (max-width: 992px) {
     .web-dev-cta {
         padding: 80px 0;
     }

     .cta-header h2 {
         font-size: 2.4rem;
     }

     .cta-subtitle {
         font-size: 1.1rem;
     }

     .cta-features {
         gap: 20px;
     }
 }

 @media (max-width: 768px) {
     .web-dev-cta {
         padding: 60px 0;
     }

     .cta-header h2 {
         font-size: 2rem;
     }

     .cta-subtitle {
         font-size: 1rem;
     }

     .cta-features {
         flex-direction: column;
         align-items: center;
         gap: 15px;
     }

     .cta-feature {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }

     .form-row {
         flex-direction: column;
         gap: 15px;
     }

     .consultation-form {
         padding: 20px;
     }
 }

 @media (max-width: 576px) {
     .web-dev-cta {
         padding: 50px 0;
     }

     .cta-header h2 {
         font-size: 1.8rem;
     }

     .cta-badge {
         font-size: 0.8rem;
         padding: 6px 15px;
     }

     .cta-feature {
         padding: 10px 15px;
     }

     .cta-feature i {
         font-size: 1.1rem;
     }

     .cta-feature span {
         font-size: 0.95rem;
     }

     .consultation-form {
         padding: 15px;
     }

     .form-group input,
     .form-group select,
     .form-group textarea {
         padding: 10px 15px;
         padding-left: 40px;
         font-size: 0.95rem;
     }

     .form-group i {
         font-size: 1.1rem;
         left: 12px;
     }

     .btn-large {
         padding: 12px 25px;
         font-size: 1rem;
     }
 }

 @media (max-width: 480px) {
     .web-dev-cta {
         padding: 40px 0 !important;
     }

     .cta-header h2,
     .web-dev-cta h2 {
         font-size: 1.3rem !important;
         line-height: 1.25 !important;
         word-break: break-word;
         padding: 0 8px;
     }

     .cta-subtitle {
         font-size: 0.98rem !important;
         padding: 0 8px;
     }

     .cta-badge {
         font-size: 0.75rem;
         padding: 5px 10px;
     }
 }

 @media (max-width: 375px) {

     .cta-header h2,
     .web-dev-cta h2 {
         font-size: 1.1rem !important;
         padding: 0 4px;
     }

     .cta-subtitle {
         font-size: 0.92rem !important;
         padding: 0 4px;
     }
 }

 /* Contact Page Styles */
 .contact-hero {
     background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
     padding: 120px 0 80px;
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .contact-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('path/to/pattern.png');
     opacity: 0.1;
 }

 .contact-hero-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .contact-hero h1 {
     font-size: 3.5rem;
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 .contact-hero p {
     font-size: 1.2rem;
     margin-bottom: 3rem;
     opacity: 0.9;
 }

 .contact-stats {
     display: flex;
     justify-content: center;
     gap: 3rem;
     margin-top: 3rem;
 }

 .stat-item {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .stat-item i {
     font-size: 2rem;
     color: #4cc9f0;
 }

 .stat-item span {
     font-size: 1.1rem;
     font-weight: 500;
 }

 /* Contact Form Section */
 .contact-form-section {
     padding: 40px 0;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 30px;
     align-items: start;
 }

 .contact-info {
     background: #fff;
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }

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

 .contact-info h2 {
     font-size: 2.2rem;
     color: #2c3e50;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .contact-intro {
     color: #666;
     font-size: 1.1rem;
     line-height: 1.6;
 }

 .contact-methods {
     margin: 40px 0;
 }

 .contact-method {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 30px;
     padding: 20px;
     background: #f8f9fa;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .contact-method:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .contact-icon i {
     font-size: 1.5rem;
     color: #3498db;
 }

 .contact-details h3 {
     font-size: 1.2rem;
     color: #2c3e50;
     margin-bottom: 5px;
     font-weight: 600;
 }

 .contact-details p {
     color: #666;
     font-size: 1rem;
     line-height: 1.4;
 }

 .social-links {
     margin-top: 40px;
     text-align: center;
 }

 .social-links h3 {
     font-size: 1.3rem;
     color: #2c3e50;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .social-icons {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .social-icon {
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f8f9fa;
     border-radius: 12px;
     color: #3498db;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-icon:hover {
     background: #3498db;
     color: #fff;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .contact-info {
         padding: 30px;
     }

     .contact-info h2 {
         font-size: 1.8rem;
     }

     .contact-method {
         padding: 15px;
     }

     .contact-icon {
         width: 45px;
         height: 45px;
     }
 }

 @media (max-width: 480px) {
     .contact-info {
         padding: 20px;
     }

     .contact-info h2 {
         font-size: 1.6rem;
     }

     .contact-method {
         flex-direction: column;
         text-align: center;
         padding: 20px 15px;
     }

     .contact-icon {
         margin: 0 auto;
     }

     .social-icons {
         flex-wrap: wrap;
     }
 }

 .contact-form {
     height: 100%;
 }

 .form-container {
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     height: 100%;
     min-height: 500px;
 }

 @media (max-width: 768px) {
     .form-container {
         min-height: 600px;
     }
 }

 @media (max-width: 480px) {
     .form-container {
         min-height: 500px;
     }
 }

 /* Process Section Styles */
 .process {
     padding: 100px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
 }

 .process .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .process .section-badge {
     display: inline-block;
     padding: 8px 20px;
     background: rgba(0, 123, 255, 0.1);
     color: #007bff;
     border-radius: 30px;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .process .section-title h2 {
     font-size: 36px;
     color: #2d3436;
     margin-bottom: 15px;
 }

 .process .section-title p {
     color: #636e72;
     font-size: 18px;
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     padding: 20px;
 }

 .process-step {
     background: #ffffff;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .process-step:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .process-step::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 100%;
     background: linear-gradient(to bottom, #007bff, #00bfff);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .process-step:hover::before {
     opacity: 1;
 }

 .step-icon {
     width: 60px;
     height: 60px;
     background: rgba(0, 123, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 .step-icon i {
     font-size: 24px;
     color: #007bff;
 }

 .step-content {
     position: relative;
 }

 .step-number {
     position: absolute;
     top: -30px;
     right: -15px;
     font-size: 52px;
     /* Reduced from 72px */
     font-weight: 800;
     color: #2d3436;
     /* Changed to a dark gray color */
     opacity: 0.15;
     /* Adjusted opacity for better contrast */
     line-height: 1;
     z-index: 1;
     font-family: 'Jost', sans-serif;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .process-step:hover .step-number {
     opacity: 0.25;
     /* Slightly increased opacity on hover */
     transform: scale(1.05);
 }

 .process-step h3 {
     font-size: 20px;
     color: #2d3436;
     margin-bottom: 15px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .process-step p {
     color: #636e72;
     font-size: 16px;
     line-height: 1.6;
 }

 @media (max-width: 768px) {
     .process {
         padding: 60px 0;
     }

     .process .section-title h2 {
         font-size: 28px;
     }

     .process-steps {
         grid-template-columns: 1fr;
     }

     .process-step {
         padding: 25px;
     }
 }

 /* Legal Content Styles */
 .legal-content {
     padding: 80px 0;
     background-color: #f8f9fa;
 }

 .legal-content h1 {
     font-size: 2.5rem;
     color: #1a365d;
     margin-bottom: 1rem;
     text-align: center;
 }

 .legal-content .last-updated {
     text-align: center;
     color: #666;
     margin-bottom: 3rem;
 }

 .legal-section {
     background: #fff;
     padding: 2rem;
     margin-bottom: 2rem;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .legal-section h2 {
     color: #1a365d;
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
 }

 .legal-section h3 {
     color: #2c5282;
     font-size: 1.4rem;
     margin: 1.5rem 0 1rem;
 }

 .legal-section p {
     color: #4a5568;
     line-height: 1.6;
     margin-bottom: 1rem;
 }

 .legal-section ul {
     list-style-type: disc;
     margin-left: 1.5rem;
     margin-bottom: 1.5rem;
 }

 .legal-section ul li {
     color: #4a5568;
     margin-bottom: 0.5rem;
     line-height: 1.6;
 }

 .legal-section .contact-info {
     list-style: none;
     margin-left: 0;
 }

 .legal-section .contact-info li {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
 }

 .legal-section .contact-info li i {
     margin-right: 1rem;
     color: #2c5282;
 }

 @media (max-width: 768px) {
     .legal-content {
         padding: 60px 0;
     }

     .legal-content h1 {
         font-size: 2rem;
     }

     .legal-section {
         padding: 1.5rem;
     }

     .legal-section h2 {
         font-size: 1.5rem;
     }

     .legal-section h3 {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 480px) {
     .legal-content {
         padding: 40px 0;
     }

     .legal-content h1 {
         font-size: 1.8rem;
     }

     .legal-section {
         padding: 1rem;
     }

     .legal-section h2 {
         font-size: 1.3rem;
     }

     .legal-section h3 {
         font-size: 1.1rem;
     }
 }

 /* Importance Section */
 .web-dev-importance {
     padding: 80px 0;
     background-color: #f8f9fa;
     position: relative;
     overflow: hidden;
 }

 .web-dev-importance::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
 }

 .web-dev-importance h2 {
     text-align: center;
     margin-bottom: 3rem;
     color: #1a365d;
     font-size: 2.2rem;
     position: relative;
     padding-bottom: 1rem;
 }

 .web-dev-importance h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: linear-gradient(90deg, #2c5282, #4299e1);
     border-radius: 2px;
 }

 .importance-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2.5rem;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .importance-card {
     background: #fff;
     padding: 2.5rem;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(44, 82, 130, 0.1);
 }

 .importance-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #2c5282, #4299e1);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .importance-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 }

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

 .importance-card h3 {
     color: #2c5282;
     margin-bottom: 1.8rem;
     font-size: 1.6rem;
     font-weight: 600;
     position: relative;
     padding-bottom: 1rem;
 }

 .importance-card h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: #4299e1;
     border-radius: 2px;
 }

 .stats-list,
 .influence-list {
     list-style: none;
     padding: 0;
 }

 .stats-list li,
 .influence-list li {
     display: flex;
     align-items: center;
     margin-bottom: 1.2rem;
     color: #4a5568;
     font-size: 1.05rem;
     transition: transform 0.2s ease;
 }

 .stats-list li:hover,
 .influence-list li:hover {
     transform: translateX(5px);
 }

 .stats-list li i,
 .influence-list li i {
     margin-right: 1.2rem;
     color: #4299e1;
     font-size: 1.3rem;
     background: rgba(66, 153, 225, 0.1);
     padding: 0.8rem;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .stats-list li:hover i,
 .influence-list li:hover i {
     background: #4299e1;
     color: white;
     transform: scale(1.1);
 }

 @media (max-width: 768px) {
     .importance-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .importance-card {
         width: 100%;
         margin: 0 auto;
         max-width: 500px;
         padding: 2rem;
     }

     .web-dev-importance h2 {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 480px) {
     .importance-card {
         padding: 1.8rem;
         width: 100%;
         margin: 0;
         max-width: none;
     }

     .importance-card h3 {
         font-size: 1.4rem;
     }

     .stats-list li,
     .influence-list li {
         font-size: 0.95rem;
     }

     .stats-list li i,
     .influence-list li i {
         padding: 0.6rem;
         font-size: 1.1rem;
     }
 }

 /* Form Section Styles */
 .web-dev-form {
     padding: 60px 0;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     position: relative;
     overflow: hidden;
     min-height: auto;
     display: flex;
     align-items: center;
 }

 .web-dev-form::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
 }

 .form-wrapper {
     max-width: 1000px;
     width: 100%;
     margin: 0 auto;
     background: #fff;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .form-header {
     text-align: center;
     padding: 2rem;
     background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
     color: #fff;
     position: relative;
 }

 .form-badge {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     padding: 0.5rem 1.2rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     margin-bottom: 0.8rem;
     backdrop-filter: blur(5px);
 }

 .form-header h2 {
     font-size: 2rem;
     margin-bottom: 0.8rem;
     color: #fff;
 }

 .form-header p {
     font-size: 1.1rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
 }

 .form-container {
     padding: 1.5rem;
     background: #fff;
     position: relative;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .lead-form-iframe {
     width: 100%;
     height: 70vh;
     min-height: 600px;
     max-height: 800px;
     border: none;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     background: #fff;
     flex: 1;
 }

 @media (max-width: 768px) {
     .web-dev-form {
         padding: 40px 0;
     }

     .form-wrapper {
         margin: 0 1rem;
     }

     .form-header {
         padding: 1.5rem;
     }

     .form-header h2 {
         font-size: 1.6rem;
     }

     .form-container {
         padding: 1rem;
     }

     .lead-form-iframe {
         height: 65vh;
         min-height: 500px;
         max-height: 700px;
     }
 }

 @media (max-width: 480px) {
     .web-dev-form {
         padding: 30px 0;
     }

     .form-wrapper {
         margin: 0 0.5rem;
         border-radius: 15px;
     }

     .form-header {
         padding: 1.2rem 1rem;
     }

     .form-header h2 {
         font-size: 1.4rem;
     }

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

     .form-container {
         padding: 0.8rem;
     }

     .lead-form-iframe {
         height: 60vh;
         min-height: 450px;
         max-height: 600px;
     }
 }

 /* Floating WhatsApp Button */
 .floating-whatsapp {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: #25d366;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .floating-whatsapp i {
     font-size: 30px;
 }

 .floating-whatsapp:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
 }

 .floating-whatsapp .tooltip {
     position: absolute;
     right: 70px;
     background-color: #333;
     color: white;
     padding: 8px 15px;
     border-radius: 5px;
     font-size: 14px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .floating-whatsapp .tooltip::after {
     content: '';
     position: absolute;
     right: -5px;
     top: 50%;
     transform: translateY(-50%);
     border-width: 5px;
     border-style: solid;
     border-color: transparent transparent transparent #333;
 }

 .floating-whatsapp:hover .tooltip {
     opacity: 1;
     visibility: visible;
     right: 75px;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .modal.show {
     display: flex;
     opacity: 1;
     overflow-y: scroll;
 }

 .modal-content {
     position: relative;
     background-color: #fff;
     margin: auto;
     width: 90%;
     max-width: 600px;
     border-radius: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     transform: translateY(-20px);
     transition: transform 0.3s ease;
 }

 .modal.show .modal-content {
     transform: translateY(0);
 }

 .modal-header {
     padding: 20px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-logo {
     height: 40px;
     width: auto;
 }

 .close-modal {
     font-size: 28px;
     font-weight: bold;
     color: #666;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-modal:hover {
     color: #333;
 }

 .modal-body {
     padding: 30px;
 }

 .modal-body h2 {
     color: #333;
     margin-bottom: 10px;
     font-size: 24px;
 }

 .modal-subtitle {
     color: #666;
     margin-bottom: 30px;
     font-size: 16px;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-group {
     position: relative;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .form-group label {
     position: absolute;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: #666;
     transition: all 0.3s ease;
     pointer-events: none;
     background-color: #fff;
     padding: 0 5px;
 }

 .form-group textarea+label {
     top: 25px;
     transform: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: #007bff;
     outline: none;
     box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
 }

 .form-group input:focus+label,
 .form-group select:focus+label,
 .form-group textarea:focus+label,
 .form-group input:not(:placeholder-shown)+label,
 .form-group select:not(:placeholder-shown)+label,
 .form-group textarea:not(:placeholder-shown)+label {
     top: 0;
     font-size: 14px;
     color: #007bff;
 }

 .submit-btn {
     margin-top: 10px;
     padding: 12px 30px;
     font-size: 16px;
     font-weight: 600;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 /* Animation for form elements */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 .form-group {
     animation: fadeInUp 0.5s ease forwards;
     opacity: 0;
 }

 .form-group:nth-child(1) {
     animation-delay: 0.1s;
 }

 .form-group:nth-child(2) {
     animation-delay: 0.2s;
 }

 .form-group:nth-child(3) {
     animation-delay: 0.3s;
 }

 .form-group:nth-child(4) {
     animation-delay: 0.4s;
 }

 .form-group:nth-child(5) {
     animation-delay: 0.5s;
 }

 .form-group:nth-child(6) {
     animation-delay: 0.6s;
 }

 #contactModalBtn {
     position: relative;
     overflow: hidden;
     background: linear-gradient(45deg, #007bff, #00bfff);
     border: none;
     color: white;
     transition: all 0.3s ease;
     z-index: 1;
     animation: pulse 2s infinite;
 }

 #contactModalBtn:hover {
     transform: translateY(-3px);
     box-shadow: 0 7px 14px rgba(0, 123, 255, 0.2);
     text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
 }

 #contactModalBtn:active {
     transform: scale(0.98);
     animation: none;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
     }
 }

 /* Floating WhatsApp Button */
 .floating-whatsapp {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: #25d366;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .floating-whatsapp i {
     font-size: 30px;
 }

 .floating-whatsapp:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
 }

 .floating-whatsapp .tooltip {
     position: absolute;
     right: 70px;
     background-color: #333;
     color: white;
     padding: 8px 15px;
     border-radius: 5px;
     font-size: 14px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .floating-whatsapp .tooltip::after {
     content: '';
     position: absolute;
     right: -5px;
     top: 50%;
     transform: translateY(-50%);
     border-width: 5px;
     border-style: solid;
     border-color: transparent transparent transparent #333;
 }

 .floating-whatsapp:hover .tooltip {
     opacity: 1;
     visibility: visible;
     right: 75px;
 }