  
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #f8f9fa;
            --transition: all 0.3s ease;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
         .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1555099962-4199c345e5dd?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
        }

        .container {
            max-width: 800px; /* Smaller container */
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 600px; /* Reduced width for content */
            padding: 15px;
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #f97316, #db2777, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.7s ease forwards 0.2s;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #e0e7ff;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.7s ease forwards 0.5s;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 14px 35px;
            background: linear-gradient(45deg, #f97316, #ef4444);
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
            opacity: 0;
            transform: scale(0.9);
            animation: popIn 0.7s ease forwards 0.8s;
            position: relative;
            overflow: hidden;
        }

        .cta-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #ea580c, #dc2626);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
        }

        .cta-button:hover i {
            transform: scale(1.2);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.4s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Animated geometric shapes */
        .geometric-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .geometric-shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(59, 130, 246, 0.3));
            animation: floatSpin 12s ease-in-out infinite;
        }

        .geometric-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 15%;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation-delay: 0s;
        }

        .geometric-shape:nth-child(2) {
            width: 100px;
            height: 100px;
            top: 50%;
            right: 10%;
            border-radius: 50%;
            animation-delay: 2s;
        }

        .geometric-shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 15%;
            left: 25%;
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
            animation-delay: 4s;
        }

        .geometric-shape:nth-child(4) {
            width: 90px;
            height: 90px;
            bottom: 20%;
            right: 20%;
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            animation-delay: 1s;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes popIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes floatSpin {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translate(15px, -20px) rotate(90deg);
                opacity: 0.5;
            }
            50% {
                transform: translate(0, -30px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translate(-15px, -20px) rotate(270deg);
                opacity: 0.5;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .hero-content {
                max-width: 500px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            .hero-content {
                max-width: 400px;
            }

            .geometric-shape {
                display: none;
            }
        }

   /* Modern Services Section */
    .services-modern {
        padding: 5rem 1.5rem;
        background: #f8fafc;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-tag {
        display: inline-block;
        font-size: 0.875rem;
        color: #4f46e5;
        background: #e0e7ff;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    
    .section-title {
        font-size: 2.25rem;
        color: #111827;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .section-description {
        color: #e0e7ff;
        font-size: 1.125rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .service-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .featured {
        border-top: 4px solid #4f46e5;
    }
    
    .feature-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #4f46e5;
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 0;
        display: flex;
        align-items: center;
    }
    
    .card-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: #4f46e5;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        color: #111827;
        margin: 0;
        font-weight: 600;
    }
    
    .card-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .features-list li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .features-list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 1.1rem;
        width: 0.5rem;
        height: 0.5rem;
        background: #4f46e5;
        border-radius: 50%;
    }
    
    .features-list span {
        color: #4b5563;
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .services-container {
            gap: 1.25rem;
        }
    }
    
    @media (max-width: 768px) {
        .services-modern {
            padding: 4rem 1.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .services-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 640px) {
        .services-container {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
    }

        /* About Section */
        .about {
            padding: 5rem 0;
            background-color: #00bcd4;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        .about-features {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        /* Custom Web Development Solutions Section */
        .custom-solutions {
            padding: 5rem 0;
            background-color: white;
            font-family: 'Times New Roman', Times, serif;
        }

        .custom-solutions .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .custom-solutions .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .custom-solutions .section-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .solution-card {
            border: 1px solid #e0e0e0;
            padding: 2rem;
            border-radius: var(--border-radius);
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .solution-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .solution-card p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive Design Section */
      .responsive-design-premium {
    background: #6366f15c;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5e72e4;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
    background: linear-gradient(90deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.responsive-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    transition: all 0.3s ease;
}

.feature-card:hover::after {
    height: 6px;
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    fill: #4361ee;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Device Mockups */
.device-mockups {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    margin-top: 20px;
}

.device {
    background: #f1f5f9;
    border-radius: 4px;
    position: relative;
}

.device::after {
    content: "";
    position: absolute;
    background: #cbd5e1;
    border-radius: 2px;
}

.phone {
    width: 30px;
    height: 50px;
    border-radius: 6px;
}

.phone::after {
    width: 20px;
    height: 2px;
    bottom: 5px;
    left: 5px;
}

.tablet {
    width: 50px;
    height: 65px;
    border-radius: 8px;
}

.tablet::after {
    width: 30px;
    height: 2px;
    bottom: 8px;
    left: 10px;
}

.desktop {
    width: 70px;
    height: 45px;
    border-radius: 4px 4px 0 0;
}

.desktop::after {
    width: 10px;
    height: 10px;
    bottom: -12px;
    left: 30px;
}

.desktop::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 5px;
    background: #e2e8f0;
    bottom: -17px;
    left: -5px;
    border-radius: 0 0 5px 5px;
}

/* Interaction Animation */
.interaction-animation {
    position: relative;
    height: 80px;
    margin-top: 20px;
}

.touch-circle {
    width: 40px;
    height: 40px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 20px;
    animation: pulse 2s infinite;
}

.swipe-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, rgba(67, 97, 238, 0));
    border-radius: 2px;
    position: absolute;
    right: 0;
    top: 40px;
    animation: swipe 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

@keyframes swipe {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translateX(-80px); opacity: 0; }
    100% { transform: translateX(-80px); opacity: 0; }
}



.search-bar {
    width: 100%;
    height: 40px;
    background: #f1f5f9;
    border-radius: 20px;
    position: relative;
    margin-top: 20px;
}

.search-bar::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    left: 15px;
    top: 12px;
}

.search-bar::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: #94a3b8;
    transform: rotate(45deg);
    right: 15px;
    top: 28px;
}

.search-result {
    width: 100%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 8px;
}

.search-result:first-child {
    width: 80%;
}

.search-result:nth-child(2) {
    width: 90%;
}

.highlighted {
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.2), rgba(67, 97, 238, 0.5));
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.3);
}

@media (max-width: 768px) {
    .responsive-design-premium {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .responsive-features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}
        /* SEO Section */
.seo-compact-section {
  background: #f8fafc;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.seo-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
}

.seo-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
  line-height: 1.3;
}

.seo-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.seo-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.seo-card:hover {
  transform: translateY(-3px);
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: #6366f1;
}

.seo-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.seo-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.seo-visual {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ranking-indicator {
  margin-bottom: 20px;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 4px;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  from { width: 0; }
  to { width: 92%; }
}

.ranking-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}

.metric span:first-child {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.metric span:last-child {
  display: block;
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .seo-compact-section {
    padding: 40px 0;
  }
  
  .seo-header h2 {
    font-size: 24px;
  }
  
  .seo-header p {
    font-size: 14px;
  }
  
  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .seo-visual {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
  
  .seo-visual {
    grid-column: span 1;
  }
  
  .metrics {
    grid-template-columns: 1fr;
  }
}

        /* Modern Technologies Section Styles */
    .technologies {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #2d3748;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #718096;
        max-width: 700px;
        margin: 0 auto 25px;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        margin: 0 auto;
        border-radius: 2px;
    }
    
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .tech-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .tech-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f6f7fb;
        border-radius: 50%;
    }
    
    .tech-icon img {
        width: 40px;
        height: 40px;
    }
    
    .tech-card h3 {
        font-size: 1.4rem;
        color: #2d3748;
        margin-bottom: 10px;
    }
    
    .tech-card p {
        color: #718096;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .tech-progress {
        height: 6px;
        background: #edf2f7;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 3px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .tech-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 480px) {
        .technologies {
            padding: 60px 0;
        }
        
        .tech-grid {
            grid-template-columns: 1fr;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
    }

  /* Why Choose Us Section Styles */
    .why-choose-us {
        padding: 100px 0;
        background-color: #6d247773;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    .section-subtitle {
        display: block;
        font-size: 1rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #0f172a;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .section-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        margin: 0 auto 25px;
        border-radius: 2px;
    }
    
    .section-description {
        max-width: 700px;
        margin: 0 auto;
        color: #64748b;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .benefit-card {
        background: white;
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        position: relative;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        color: #6366f1;
    }
    
    .icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #eef2ff;
        border-radius: 50%;
        z-index: 2;
        transform: scale(1);
        transition: all 0.3s ease;
    }
    
    .benefit-card:hover .icon-bg {
        background-color: #6366f1;
        transform: scale(1.1);
    }
    
    .benefit-card:hover .benefit-icon {
        color: white;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
        color: #0f172a;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .benefit-card p {
        color: #64748b;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .why-choose-us {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .benefits-grid {
            gap: 20px;
        }
    }
    
    @media (max-width: 640px) {
        .why-choose-us {
            padding: 60px 0;
        }
        
        .benefits-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }

 /* Industries Section Styles */
    .industries-section {
        padding: 100px 0;
        background-color: #f8fafc;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-subtitle {
        display: block;
        font-size: 1rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #0f172a;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        margin: 0 auto 25px;
        border-radius: 2px;
    }
    
    .section-description {
        max-width: 700px;
        margin: 0 auto;
        color: #64748b;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .industries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .industry-card {
        background: white;
        border-radius: 12px;
        padding: 40px 25px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
    }
    
    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: #e0e7ff;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eef2ff;
        border-radius: 50%;
        color: #6366f1;
    }
    
    .card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .industry-card h3 {
        font-size: 1.25rem;
        color: #0f172a;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .industry-card p {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .industries-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }
    }
    
    @media (max-width: 768px) {
        .industries-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .industries-grid {
            gap: 20px;
        }
        
        .industry-card {
            padding: 30px 20px;
        }
    }
    
    @media (max-width: 640px) {
        .industries-section {
            padding: 60px 0;
        }
        
        .industries-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        
        .section-header {
            margin-bottom: 40px;
        }
    }
    
    @media (max-width: 480px) {
        .industries-grid {
            grid-template-columns: 1fr;
            max-width: 350px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }

            .seo-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .seo-image {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .final-cta h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }

            .solution-grid {
                grid-template-columns: 1fr;
            }
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }.premium-solutions {
    bacground: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="%23e9ecef" stroke-width="0.5"><circle cx="50" cy="50" r="40"/></svg>');
    opacity: 0.3;
}

.premium-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.card-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    transform: rotate(45deg);
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.card-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #3a7bd5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #00d2ff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .premium-solutions {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
}
        
