/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
} 

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
     background-image: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1400&q=80');
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: #3b82f6;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #3b82f6;
    border-left-color: #3b82f6;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown-submenu:hover .submenu-arrow {
    transform: rotate(90deg);
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.submenu-item:hover {
    background: #f8fafc;
    color: #3b82f6;
    border-left-color: #3b82f6;
}

/* Mobile Navigation Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid #e5e7eb;
    margin-left: 0.75rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 0.25rem;
}

.mobile-dropdown-item:hover {
    color: #3b82f6;
    background: #f3f4f6;
}

/* Mobile Submenu Styles */
.mobile-submenu {
    position: relative;
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-submenu-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.mobile-submenu.active .mobile-submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-items {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid #e5e7eb;
    margin-left: 0.75rem;
    margin-top: 0.5rem;
}

.mobile-submenu.active .mobile-submenu-items {
    display: block;
}

.mobile-submenu-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.mobile-submenu-item:hover {
    color: #3b82f6;
    background: #f3f4f6;
}

.cta-desktop {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    text-decoration: none;
    color: #4b5563;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: #3b82f6;
    background: #f3f4f6;
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 0;
    min-height: 80vh;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: black;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

.btn-hero-secondary {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: white;
    color: #1e40af;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.hero-image img:hover {
    transform: rotate(0deg);
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-badge i {
    font-size: 2rem;
    color: #fbbf24;
}

.badge-title {
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.badge-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Stats Section */
.stats {
    background: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Services Section */
.services {
    background: #f9fafb;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    group: hover;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 3rem;
    color: #3b82f6;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Solutions Section */
.solutions {
    background: white;
    padding: 5rem 0;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.solutions-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-item i {
    color: #3b82f6;
}

.solution-item span {
    color: #4b5563;
    font-weight: 500;
}

.solutions-image {
    position: relative;
}

.solutions-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solutions-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.solutions-badge i {
    font-size: 2rem;
    color: white;
}

/* Testimonials Section */
.testimonials {
    background: #1f2937;
    padding: 5rem 0;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: #d1d5db;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
}

.testimonial-card p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: white;
    font-weight: 600;
    margin: 0;
}

.author-role {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    background: white;
    color: #3b82f6;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: white;
    color: #3b82f6;
}

/* Gigs Page Styles */
.gigs-hero {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.gigs-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gigs-hero-content p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.gigs-hero-image {
    width: 100%;
    max-width: 64rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.gigs-filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 24rem;
}

.search-wrapper i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-wrapper input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-selects {
    display: flex;
    gap: 1rem;
}

.filter-selects select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-selects select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.jobs-section {
    background: #f9fafb;
    padding: 3rem 0;
}

.jobs-count {
    margin-bottom: 2rem;
}

.jobs-count p {
    color: #6b7280;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.job-card-content {
    padding: 1.5rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.job-card:hover .job-info h3 {
    color: #3b82f6;
}

.job-department {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.job-image {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.job-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.job-detail i {
    width: 1rem;
}

.job-requirements {
    margin-bottom: 1.5rem;
}

.job-requirements h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.requirements-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.requirement-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-posted {
    font-size: 0.875rem;
    color: #6b7280;
}

.btn-apply {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.why-join {
    background: white;
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #3b82f6;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #6b7280;
}

/* contact us */
      
      .contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
        background-image: url(img/c1.png);
      }
      
      .contact-container {
        background: #fff;
        padding: 40px;
        max-width: 600px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        margin-top: -50px;
      }
      
      .contact-container h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 28px;
        color: #333;
      }
      
      form .form-group {
        margin-bottom: 20px;
      }
      
      form label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #444;
      }
      
      form input,
      form textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        transition: border 0.3s ease;
      }
      
      form input:focus,
      form textarea:focus {
        border-color: #007bff;
        outline: none;
      }
      
      form button {
        width: 100%;
        padding: 14px;
        background-color: #007bff;
        color: white;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
      
      form button:hover {
        background-color: #0056b3;
      }
      
      @media (max-width: 480px) {
        .contact-container {
          padding: 30px 20px;
        }
      
        form input,
        form textarea {
          font-size: 14px;
        }
      }
      

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
}
/* map */
  .map-container {
  width: 100%;
  height: 200px; /* Adjust as needed */
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-item i {
    color: #3b82f6;
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 28rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup-overlay.active .popup-form {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    text-align: center;
    color: white;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #d1d5db;
}

.popup-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
}

.popup-icon i {
    font-size: 2rem;
}

.popup-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #bfdbfe;
}

.popup-form-content {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #9ca3af;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-wrapper textarea {
    resize: none;
    padding-top: 0.75rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.privacy-note {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .job-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .search-wrapper {
        flex: 1;
        max-width: 24rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop,
    .cta-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content,
    .solutions-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .container {
        max-width: 1280px;
    }
}

/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */


/* About Page */

/* About Page Styles */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0f766e, #0891b2);
  color: white;
  padding: 120px 0 80px;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #a7f3d0;
}

.about-hero-description {
  color: #a7f3d0;
  line-height: 1.8;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Statistics Section */
.about-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #0891b2;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Core Values Section */
.about-values {
  padding: 5rem 0;
  background: #ecfdf5;
}

.about-section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
  color: #1f2937;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-value-item {
  text-align: center;
}

.about-value-icon {
  width: 64px;
  height: 64px;
  background: #0891b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.about-value-item h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.about-value-item p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Mission Section */
.about-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  position: relative;
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
}

.about-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.8);
}

.about-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #1f2937;
}

.btn-white {
  background: white;
  color: #1f2937;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-primary {
  background: #0891b2;
  color: white;
  width: 100%;
}

.btn-primary:hover {
  background: #0e7490;
}

.btn-outline-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
}

.btn-outline-small:hover {
  background: #f3f4f6;
}

/* Recognition Section */
.about-recognition {
  padding: 5rem 0;
  background: white;
}

.about-recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-recognition-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.about-badge-green {
  background: #dcfce7;
  color: #166534;
}

.about-badge-purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.about-recognition-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-recognition-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Leadership Section */
.about-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fb923c, #ec4899);
  color: white;
  position: relative;
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
}

.about-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 146, 60, 0.8);
}

.about-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.about-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: white;
  position: relative;
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
}

.about-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 145, 178, 0.8);
}

.about-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Contact Section */
.about-contact {
  padding: 5rem 0;
  background: #111827;
  color: white;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-contact h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-contact-item i {
  color: #14b8a6;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.about-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.about-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-contact-form input,
.about-contact-form textarea {
  background: #1f2937;
  border: 1px solid #374151;
  color: white;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: #9ca3af;
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
  outline: none;
  border-color: #14b8a6;
}

.about-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-checkbox-group input[type="checkbox"] {
  width: auto;
}

.about-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}



.about-social-links {
  display: flex;
  gap: 1.5rem;
}

.about-social-links a {
  color: #6b7280;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.about-social-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {

  .about-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f766e;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .about-nav-menu.active {
    display: flex;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-recognition-grid {
    grid-template-columns: 1fr;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-form-row {
    grid-template-columns: 1fr;
  }

  .about-footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .about-mission h2,
  .about-leadership h2,
  .about-careers h2 {
    font-size: 1.5rem;
  }

  .about-mission p,
  .about-leadership p,
  .about-careers p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }

  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .about-values,
  .about-recognition,
  .about-mission,
  .about-leadership,
  .about-careers,
  .about-contact {
    padding: 3rem 0;
  }
}


/* WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW */

/* Hero Section */

.web-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.web-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #607af1 0%, #884ec2 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(113, 111, 228, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(131, 129, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(54, 54, 92, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.web-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.web-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.web-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #8f5ea7;
}

.web-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #ee9b9b, #8da1e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.web-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #007bff;
}

/* Digital Section */
.web-digital-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.web-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.web-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.web-text-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.web-cta-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.web-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.web-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.web-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.web-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.web-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.web-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.web-feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Statistics Section */
.web-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.web-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.web-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #0891b2;
  margin-bottom: 0.5rem;
}

.web-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Services Section */
.web-services-section {
  padding: 6rem 0;
  background: #0f172a;
  color: white;
}

.web-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.web-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.web-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.web-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.web-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.web-service-card:hover::before {
  transform: scaleX(1);
}

.web-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.web-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.web-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.web-service-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* Mission Section */
.web-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.web-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.8);
}

.web-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.web-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.web-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.web-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fb923c, #ec4899);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.web-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 146, 60, 0.8);
}

.web-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.web-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.web-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.web-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.web-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 145, 178, 0.8);
}

.web-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.web-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.web-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Frameworks Section */
.web-frameworks-section {
  padding: 6rem 0;
  background: white;
}

.web-frameworks-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.web-frameworks-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.web-frameworks-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.web-frameworks-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.web-logo-item {
  transition: transform 0.3s ease;
}

.web-logo-item:hover {
  transform: scale(1.1);
}

.web-framework-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Partnerships Section */
.web-partnerships-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.web-partnerships-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.web-partnerships-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.web-partnerships-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.web-learn-more-btn {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.web-learn-more-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.web-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.web-partner-logo {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-partner-logo:hover {
  transform: scale(1.05);
}

.web-partner-logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

/* Case Studies Section */
.web-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.web-case-studies-section .web-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.web-case-studies-section .web-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.web-case-studies-section .web-section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.web-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.web-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.web-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.web-case-study-image {
  height: 200px;
  overflow: hidden;
}

.web-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.web-case-study-card:hover .web-case-study-image img {
  transform: scale(1.05);
}

.web-case-study-content {
  padding: 2rem;
}

.web-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.web-case-study-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Blog Section */
.web-blog-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.web-blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.web-blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.web-blog-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.web-view-all-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.web-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.web-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.web-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.web-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.web-blog-image {
  height: 200px;
  overflow: hidden;
}

.web-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.web-blog-card:hover .web-blog-image img {
  transform: scale(1.05);
}

.web-blog-content {
  padding: 2rem;
}

.web-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.web-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.web-blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.web-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Contact Section */
.web-contact-section {
  padding: 6rem 0;
  background: #111827;
  color: white;
}

.web-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.web-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.web-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.web-contact-item i {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.web-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.web-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.web-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.web-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.web-contact-form input,
.web-contact-form textarea,
.web-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(119, 118, 118);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.web-contact-form input:focus,
.web-contact-form textarea:focus,
.web-contact-form select:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
}

.web-contact-form input::placeholder,
.web-contact-form textarea::placeholder {
  color: #9ca3af;
}

.web-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.web-checkbox-group input[type="checkbox"] {
  width: auto;
}

.web-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.web-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.web-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 100%;
}

.web-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.web-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.web-btn-outline:hover {
  background: white;
  color: #1f2937;
}

.web-btn-white {
  background: white;
  color: #1f2937;
}

.web-btn-white:hover {
  background: #f3f4f6;
}


.web-social-links {
  display: flex;
  gap: 1.5rem;
}

.web-social-links a {
  color: #6b7280;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.web-social-links a:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.web-footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .web-section-content,
  .web-frameworks-content,
  .web-partnerships-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .web-features-grid {
    grid-template-columns: 1fr;
  }

  .web-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .web-frameworks-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .web-mobile-menu-toggle {
    display: block;
  }

  .web-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 118, 110, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .web-nav-menu.active {
    display: flex;
  }

  .web-hero-title {
    font-size: 2.5rem;
  }

  .web-section-header h2,
  .web-text-content h2,
  .web-frameworks-text h2,
  .web-partnerships-text h2 {
    font-size: 2rem;
  }

  .web-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .web-form-row {
    grid-template-columns: 1fr;
  }

  .web-footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .web-frameworks-logos {
    flex-direction: column;
    align-items: center;
  }

  .web-logo-grid {
    grid-template-columns: 1fr;
  }

  .web-case-studies-grid,
  .web-blog-grid {
    grid-template-columns: 1fr;
  }

  .web-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .web-container {
    padding: 0 15px;
  }

  .web-hero-title {
    font-size: 2rem;
  }

  .web-hero-subtitle {
    font-size: 1rem;
  }

  .web-section-header h2,
  .web-text-content h2 {
    font-size: 1.75rem;
  }

  .web-service-card,
  .web-feature-card,
  .web-case-study-card,
  .web-blog-card {
    margin: 0 10px;
  }

  .web-services-grid,
  .web-case-studies-grid,
  .web-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .web-framework-logo {
    width: 60px;
    height: 60px;
  }

  .web-partner-logo-img {
    width: 100px;
    height: 50px;
  }
}



/* DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD */


/* Dev Ops */

/* Hero Section */
.dev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: rgb(226, 94, 94);
  overflow: hidden;
}

.dev-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(239, 68, 68, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.dev-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.dev-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dev-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.dev-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(50deg, #fd0808, #6e6464,#f8a6a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dev-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Digital Section */
.dev-digital-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.dev-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dev-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.dev-text-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dev-cta-button {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  text-decoration: none;
}

.dev-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.dev-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dev-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.dev-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dev-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.dev-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.dev-feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Statistics Section */
.dev-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.dev-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.dev-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.dev-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Services Section */
.dev-services-section {
  padding: 6rem 0;
  background: #1f2937;
  color: white;
}

.dev-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dev-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dev-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.dev-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dev-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dev-service-card:hover::before {
  transform: scaleX(1);
}

.dev-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.dev-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.dev-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.dev-service-card p {
  color: #d1d5db;
  line-height: 1.7;
}

/* Mission Section */
.dev-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #374151, #4b5563);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1667372393119-3d4c48d07fc9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.dev-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(55, 65, 81, 0.8);
}

.dev-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.dev-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.dev-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.dev-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.dev-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 158, 11, 0.8);
}

.dev-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.dev-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.dev-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.dev-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.dev-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(124, 58, 237, 0.8);
}

.dev-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.dev-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.dev-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Frameworks Section */
.dev-frameworks-section {
  padding: 6rem 0;
  background: white;
}

.dev-frameworks-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dev-frameworks-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.dev-frameworks-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.dev-frameworks-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.dev-logo-item {
  transition: transform 0.3s ease;
}

.dev-logo-item:hover {
  transform: scale(1.1);
}

.dev-framework-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Partnerships Section */
.dev-partnerships-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.dev-partnerships-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.dev-partnerships-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.dev-partnerships-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dev-learn-more-btn {
  background: transparent;
  border: 2px solid #ef4444;
  color: #ef4444;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dev-learn-more-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-2px);
}

.dev-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dev-partner-logo {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dev-partner-logo:hover {
  transform: scale(1.05);
}

.dev-partner-logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

/* Case Studies Section */
.dev-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.dev-case-studies-section .dev-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dev-case-studies-section .dev-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #334c75;
  margin-bottom: 1rem;
}

.dev-case-studies-section .dev-section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.dev-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.dev-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.dev-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.dev-case-study-image {
  height: 200px;
  overflow: hidden;
}

.dev-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dev-case-study-card:hover .dev-case-study-image img {
  transform: scale(1.05);
}

.dev-case-study-content {
  padding: 2rem;
}

.dev-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.dev-case-study-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Blog Section */
.dev-blog-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.dev-blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dev-blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.dev-blog-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.dev-view-all-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dev-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.dev-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.dev-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.dev-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dev-blog-image {
  height: 200px;
  overflow: hidden;
}

.dev-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dev-blog-card:hover .dev-blog-image img {
  transform: scale(1.05);
}

.dev-blog-content {
  padding: 2rem;
}

.dev-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dev-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.dev-blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dev-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Contact Section */
.dev-contact-section {
  padding: 6rem 0;
  background: #111827;
  color: white;
}

.dev-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dev-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.dev-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dev-contact-item i {
  color: #ef4444;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.dev-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dev-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.dev-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dev-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dev-contact-form input,
.dev-contact-form textarea,
.dev-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(70, 66, 66);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.dev-contact-form input:focus,
.dev-contact-form textarea:focus,
.dev-contact-form select:focus {
  outline: none;
  border-color: #ef4444;
  background: rgba(255, 255, 255, 0.08);
}

.dev-contact-form input::placeholder,
.dev-contact-form textarea::placeholder {
  color: #9ca3af;
}

.dev-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-checkbox-group input[type="checkbox"] {
  width: auto;
}

.dev-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.dev-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.dev-btn-primary {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  width: 100%;
}

.dev-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.dev-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.dev-btn-outline:hover {
  background: white;
  color: #374151;
}

.dev-btn-white {
  background: white;
  color: #1f2937;
}

.dev-btn-white:hover {
  background: #f3f4f6;
}

/* Footer */
.dev-footer {
  background: #000;
  color: white;
  padding: 3rem 0;
}

.dev-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dev-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-footer .dev-logo {
  background: #ef4444;
  color: white;
}

.dev-social-links {
  display: flex;
  gap: 1.5rem;
}

.dev-social-links a {
  color: #6b7280;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.dev-social-links a:hover {
  color: #ef4444;
  transform: translateY(-2px);
}

.dev-footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dev-section-content,
  .dev-frameworks-content,
  .dev-partnerships-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dev-features-grid {
    grid-template-columns: 1fr;
  }

  .dev-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .dev-frameworks-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .dev-mobile-menu-toggle {
    display: block;
  }

  .dev-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .dev-nav-menu.active {
    display: flex;
  }

  .dev-hero-title {
    font-size: 2.5rem;
  }

  .dev-section-header h2,
  .dev-text-content h2,
  .dev-frameworks-text h2,
  .dev-partnerships-text h2 {
    font-size: 2rem;
  }

  .dev-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dev-form-row {
    grid-template-columns: 1fr;
  }

  .dev-footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .dev-frameworks-logos {
    flex-direction: column;
    align-items: center;
  }

  .dev-logo-grid {
    grid-template-columns: 1fr;
  }

  .dev-case-studies-grid,
  .dev-blog-grid {
    grid-template-columns: 1fr;
  }

  .dev-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .dev-container {
    padding: 0 15px;
  }

  .dev-hero-title {
    font-size: 2rem;
  }

  .dev-hero-subtitle {
    font-size: 1rem;
  }

  .dev-section-header h2,
  .dev-text-content h2 {
    font-size: 1.75rem;
  }

  .dev-service-card,
  .dev-feature-card,
  .dev-case-study-card,
  .dev-blog-card {
    margin: 0 10px;
  }

  .dev-services-grid,
  .dev-case-studies-grid,
  .dev-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dev-framework-logo {
    width: 60px;
    height: 60px;
  }

  .dev-partner-logo-img {
    width: 100px;
    height: 50px;
  }
}


/* PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP */


.project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.project-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.project-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.project-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #8e07f5;
}

.project-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #0465b5, #6eb3eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #047857;
}

/* Digital Section */
.project-digital-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.project-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.project-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.project-text-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.project-cta-button {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  text-decoration: none;
}

.project-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.project-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.project-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.project-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.project-feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Statistics Section */
.project-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.project-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}

.project-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Services Section */
.project-services-section {
  padding: 6rem 0;
  background: #1e1b4b;
  color: white;
}

.project-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.project-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
   background: linear-gradient(45deg, #0465b5, #6eb3eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-service-card:hover::before {
  transform: scaleX(1);
}

.project-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.project-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.project-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.project-service-card p {
  color: #d1d5db;
  line-height: 1.7;
}

/* Mission Section */
.project-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4338ca, #3730a3);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.project-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(67, 56, 202, 0.8);
}

.project-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.project-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.project-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.project-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.project-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 150, 105, 0.8);
}

.project-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.project-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.project-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.project-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.project-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(220, 38, 38, 0.8);
}

.project-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.project-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.project-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Frameworks Section */
.project-frameworks-section {
  padding: 6rem 0;
  background: white;
}

.project-frameworks-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.project-frameworks-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.project-frameworks-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.project-frameworks-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.project-logo-item {
  transition: transform 0.3s ease;
}

.project-logo-item:hover {
  transform: scale(1.1);
}

.project-framework-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Partnerships Section */
.project-partnerships-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.project-partnerships-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.project-partnerships-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.project-partnerships-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.project-learn-more-btn {
  background: transparent;
  border: 2px solid #8b5cf6;
  color: #8b5cf6;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-learn-more-btn:hover {
  background: #8b5cf6;
  color: white;
  transform: translateY(-2px);
}

.project-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.project-partner-logo {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-partner-logo:hover {
  transform: scale(1.05);
}

.project-partner-logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

/* Case Studies Section */
.project-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.project-case-studies-section .project-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.project-case-studies-section .project-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.project-case-studies-section .project-section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.project-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.project-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-case-study-image {
  height: 200px;
  overflow: hidden;
}

.project-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-case-study-card:hover .project-case-study-image img {
  transform: scale(1.05);
}

.project-case-study-content {
  padding: 2rem;
}

.project-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.project-case-study-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Blog Section */
.project-blog-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.project-blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.project-blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.project-blog-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.project-view-all-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.project-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.project-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-blog-image {
  height: 200px;
  overflow: hidden;
}

.project-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-blog-card:hover .project-blog-image img {
  transform: scale(1.05);
}

.project-blog-content {
  padding: 2rem;
}

.project-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.project-blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Contact Section */
.project-contact-section {
  padding: 6rem 0;
  background: #111827;
  color: white;
}

.project-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.project-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.project-contact-item i {
  color: #8b5cf6;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.project-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.project-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-contact-form input,
.project-contact-form textarea,
.project-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.project-contact-form input:focus,
.project-contact-form textarea:focus,
.project-contact-form select:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(255, 255, 255, 0.08);
}

.project-contact-form input::placeholder,
.project-contact-form textarea::placeholder {
  color: #9ca3af;
}

.project-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-checkbox-group input[type="checkbox"] {
  width: auto;
}

.project-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.project-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.project-btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  width: 100%;
}

.project-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.project-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.project-btn-outline:hover {
  background: white;
  color: #4338ca;
}

.project-btn-white {
  background: white;
  color: #1f2937;
}

.project-btn-white:hover {
  background: #f3f4f6;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-section-content,
  .project-frameworks-content,
  .project-partnerships-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-features-grid {
    grid-template-columns: 1fr;
  }

  .project-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .project-frameworks-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .project-hero-title {
    font-size: 2.5rem;
  }

  .project-section-header h2,
  .project-text-content h2,
  .project-frameworks-text h2,
  .project-partnerships-text h2 {
    font-size: 2rem;
  }

  .project-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-form-row {
    grid-template-columns: 1fr;
  }

  .project-frameworks-logos {
    flex-direction: column;
    align-items: center;
  }

  .project-logo-grid {
    grid-template-columns: 1fr;
  }

  .project-case-studies-grid,
  .project-blog-grid {
    grid-template-columns: 1fr;
  }

  .project-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .project-container {
    padding: 0 15px;
  }

  .project-hero-title {
    font-size: 2rem;
  }

  .project-hero-subtitle {
    font-size: 1rem;
  }

  .project-section-header h2,
  .project-text-content h2 {
    font-size: 1.75rem;
  }

  .project-service-card,
  .project-feature-card,
  .project-case-study-card,
  .project-blog-card {
    margin: 0 10px;
  }

  .project-services-grid,
  .project-case-studies-grid,
  .project-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-framework-logo {
    width: 60px;
    height: 60px;
  }

  .project-partner-logo-img {
    width: 100px;
    height: 50px;
  }
}


/* iosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosiosios */


.ios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.ios-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.ios-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #007aff 0%, #5856d6 50%, #5856d6 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(88, 86, 214, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.ios-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.ios-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ios-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #f72de3;
}

.ios-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(40deg, #13f04e, #aa57f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ios-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #059669;
}

.ios-hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ios-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  color: #c46cf0;
}

.ios-badge i {
  font-size: 1rem;
}

/* Digital Section */
.ios-digital-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.ios-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ios-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.ios-text-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ios-cta-button {
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
  text-decoration: none;
}

.ios-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.ios-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ios-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.ios-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ios-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ios-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.ios-feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Statistics Section */
.ios-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.ios-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.ios-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #007aff;
  margin-bottom: 0.5rem;
}

.ios-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Services Section */
.ios-services-section {
  padding: 6rem 0;
  background: #1a1a2e;
  color: white;
}

.ios-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ios-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #aa57f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ios-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.ios-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ios-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007aff, #5856d6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ios-service-card:hover::before {
  transform: scaleX(1);
}

.ios-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.ios-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.ios-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.ios-service-card p {
  color: #d1d5db;
  line-height: 1.7;
}

/* iOS Technologies Section */
.ios-technologies-section {
  padding: 6rem 0;
  background: white;
}

.ios-technologies-content {
  text-align: center;
}

.ios-technologies-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ios-technologies-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ios-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ios-tech-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.ios-tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ios-tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.ios-tech-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.ios-tech-item p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Device Showcase Section */
.ios-device-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.ios-showcase-content {
  text-align: center;
}

.ios-showcase-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ios-showcase-content p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.ios-devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ios-device-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.ios-device-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.ios-device-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.ios-device-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ios-device-item p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Case Studies Section */
.ios-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.ios-case-studies-section .ios-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ios-case-studies-section .ios-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.ios-case-studies-section .ios-section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.ios-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.ios-case-study-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.ios-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ios-case-study-image {
  height: 200px;
  overflow: hidden;
}

.ios-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ios-case-study-card:hover .ios-case-study-image img {
  transform: scale(1.05);
}

.ios-case-study-content {
  padding: 2rem;
}

.ios-app-category {
  display: inline-block;
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ios-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ios-case-study-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ios-case-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ios-metric {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* App Store Section */
.ios-appstore-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.ios-appstore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ios-appstore-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.ios-appstore-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ios-success-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ios-success-item {
  text-align: center;
}

.ios-success-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007aff;
  margin-bottom: 0.5rem;
}

.ios-success-item p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.ios-appstore-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ios-appstore-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ios-appstore-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ios-appstore-feature i {
  color: #007aff;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.ios-appstore-feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.ios-appstore-feature p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Blog Section */
.ios-blog-section {
  padding: 6rem 0;
  background: white;
}

.ios-blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ios-blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.ios-blog-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.ios-view-all-btn {
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ios-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.ios-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.ios-blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.ios-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ios-blog-image {
  height: 200px;
  overflow: hidden;
}

.ios-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ios-blog-card:hover .ios-blog-image img {
  transform: scale(1.05);
}

.ios-blog-content {
  padding: 2rem;
}

.ios-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ios-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.ios-blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ios-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Mission Section */
.ios-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4338ca, #3730a3);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.ios-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(67, 56, 202, 0.8);
}

.ios-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ios-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.ios-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.ios-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1559526324-4b87b5e36e44?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.ios-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 150, 105, 0.8);
}

.ios-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ios-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.ios-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.ios-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.ios-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(220, 38, 38, 0.8);
}

.ios-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ios-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.ios-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Contact Section */
.ios-contact-section {
  padding: 6rem 0;
  background: #111827;
  color: white;
}

.ios-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ios-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.ios-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ios-contact-item i {
  color: #007aff;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.ios-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ios-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.ios-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ios-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ios-contact-form input,
.ios-contact-form textarea,
.ios-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ios-contact-form input:focus,
.ios-contact-form textarea:focus,
.ios-contact-form select:focus {
  outline: none;
  border-color: #007aff;
  background: rgba(255, 255, 255, 0.08);
}

.ios-contact-form input::placeholder,
.ios-contact-form textarea::placeholder {
  color: #9ca3af;
}

.ios-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ios-checkbox-group input[type="checkbox"] {
  width: auto;
}

.ios-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.ios-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ios-btn-primary {
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  width: 100%;
}

.ios-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.ios-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.ios-btn-outline:hover {
  background: white;
  color: #4338ca;
}

.ios-btn-white {
  background: white;
  color: #1f2937;
}

.ios-btn-white:hover {
  background: #f3f4f6;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ios-section-content,
  .ios-appstore-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ios-features-grid {
    grid-template-columns: 1fr;
  }

  .ios-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .ios-hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ios-hero-title {
    font-size: 2.5rem;
  }

  .ios-section-header h2,
  .ios-text-content h2,
  .ios-technologies-text h2,
  .ios-appstore-text h2 {
    font-size: 2rem;
  }

  .ios-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ios-form-row {
    grid-template-columns: 1fr;
  }

  .ios-case-studies-grid,
  .ios-blog-grid {
    grid-template-columns: 1fr;
  }

  .ios-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ios-tech-grid,
  .ios-devices-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .ios-success-metrics {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ios-container {
    padding: 0 15px;
  }

  .ios-hero-title {
    font-size: 2rem;
  }

  .ios-hero-subtitle {
    font-size: 1rem;
  }

  .ios-section-header h2,
  .ios-text-content h2 {
    font-size: 1.75rem;
  }

  .ios-service-card,
  .ios-feature-card,
  .ios-case-study-card,
  .ios-blog-card {
    margin: 0 10px;
  }

  .ios-services-grid,
  .ios-case-studies-grid,
  .ios-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ios-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .ios-badge {
    justify-content: center;
  }
}



/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */


.android-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.android-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.android-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4caf50 0%, #2196f3 50%, #ff9800 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(33, 150, 243, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.android-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.android-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.android-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #0e7490;
}

.android-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #32a852, #5856d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.android-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #5856d6;
}

.android-hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #32a852;
}

.android-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.android-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.android-badge i {
  font-size: 1rem;
}

/* Digital Section */
.android-digital-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.android-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.android-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.android-text-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.android-cta-button {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.android-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.android-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.android-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.android-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.android-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.android-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.android-feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Statistics Section */
.android-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

.android-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.android-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.android-stat-label {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Services Section */
.android-services-section {
  padding: 6rem 0;
  background: #263238;
  color: white;
}

.android-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.android-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #32a852, #5856d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.android-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.android-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.android-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #2196f3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.android-service-card:hover::before {
  transform: scaleX(1);
}

.android-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.android-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.android-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.android-service-card p {
  color: #d1d5db;
  line-height: 1.7;
}

/* Android Technologies Section */
.android-technologies-section {
  padding: 6rem 0;
  background: white;
}

.android-technologies-content {
  text-align: center;
}

.android-technologies-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.android-technologies-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.android-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.android-tech-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.android-tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.android-tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.android-tech-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.android-tech-item p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Device Showcase Section */
.android-device-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
}

.android-showcase-content {
  text-align: center;
}

.android-showcase-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.android-showcase-content p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.android-devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.android-device-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.android-device-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.android-device-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.android-device-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.android-device-item p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Case Studies Section */
.android-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.android-case-studies-section .android-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.android-case-studies-section .android-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.android-case-studies-section .android-section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.android-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.android-case-study-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.android-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.android-case-study-image {
  height: 200px;
  overflow: hidden;
}

.android-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.android-case-study-card:hover .android-case-study-image img {
  transform: scale(1.05);
}

.android-case-study-content {
  padding: 2rem;
}

.android-app-category {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.android-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.android-case-study-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.android-case-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.android-metric {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Play Store Section */
.android-playstore-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.android-playstore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.android-playstore-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.android-playstore-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.android-success-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.android-success-item {
  text-align: center;
}

.android-success-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.android-success-item p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.android-playstore-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.android-playstore-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.android-playstore-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.android-playstore-feature i {
  color: #4caf50;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.android-playstore-feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.android-playstore-feature p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Blog Section */
.android-blog-section {
  padding: 6rem 0;
  background: white;
}

.android-blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.android-blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.android-blog-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.android-view-all-btn {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.android-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.android-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.android-blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #4caf50;
}

.android-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.android-blog-image {
  height: 200px;
  overflow: hidden;
}

.android-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.android-blog-card:hover .android-blog-image img {
  transform: scale(1.05);
}

.android-blog-content {
  padding: 2rem;
}

.android-blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.android-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.android-blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.android-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Mission Section */
.android-mission {
  padding: 5rem 0;
  background: linear-gradient(135deg, #37474f, #263238);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.android-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(55, 71, 79, 0.8);
}

.android-mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.android-mission h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.android-mission p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Leadership Section */
.android-leadership {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2e7d32, #1976d2);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.android-leadership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 125, 50, 0.8);
}

.android-leadership-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.android-leadership h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.android-leadership p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Careers Section */
.android-careers {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ff5722, #e91e63);
  color: white;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.android-careers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 87, 34, 0.8);
}

.android-careers-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.android-careers h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.android-careers p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Contact Section */
.android-contact-section {
  padding: 6rem 0;
  background: #111827;
  color: white;
}

.android-contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.android-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.android-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.android-contact-item i {
  color: #4caf50;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.android-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.android-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.android-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.android-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.android-contact-form input,
.android-contact-form textarea,
.android-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.android-contact-form input:focus,
.android-contact-form textarea:focus,
.android-contact-form select:focus {
  outline: none;
  border-color: #4caf50;
  background: rgba(255, 255, 255, 0.08);
}

.android-contact-form input::placeholder,
.android-contact-form textarea::placeholder {
  color: #9ca3af;
}

.android-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.android-checkbox-group input[type="checkbox"] {
  width: auto;
}

.android-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.android-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.android-btn-primary {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  width: 100%;
}

.android-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.android-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.android-btn-outline:hover {
  background: white;
  color: #37474f;
}

.android-btn-white {
  background: white;
  color: #1f2937;
}

.android-btn-white:hover {
  background: #f3f4f6;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .android-section-content,
  .android-playstore-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .android-features-grid {
    grid-template-columns: 1fr;
  }

  .android-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .android-hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .android-hero-title {
    font-size: 2.5rem;
  }

  .android-section-header h2,
  .android-text-content h2,
  .android-technologies-text h2,
  .android-playstore-text h2 {
    font-size: 2rem;
  }

  .android-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .android-form-row {
    grid-template-columns: 1fr;
  }

  .android-case-studies-grid,
  .android-blog-grid {
    grid-template-columns: 1fr;
  }

  .android-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .android-tech-grid,
  .android-devices-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .android-success-metrics {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .android-container {
    padding: 0 15px;
  }

  .android-hero-title {
    font-size: 2rem;
  }

  .android-hero-subtitle {
    font-size: 1rem;
  }

  .android-section-header h2,
  .android-text-content h2 {
    font-size: 1.75rem;
  }

  .android-service-card,
  .android-feature-card,
  .android-case-study-card,
  .android-blog-card {
    margin: 0 10px;
  }

  .android-services-grid,
  .android-case-studies-grid,
  .android-blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .android-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .android-badge {
    justify-content: center;
  }
}


/* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */


.manual-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.manual-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.manual-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #164e63 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.manual-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: manual-float 20s ease-in-out infinite;
}

@keyframes manual-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.manual-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: manual-fadeInUp 1s ease-out;
}

@keyframes manual-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.manual-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #2302fa;
}

.manual-hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.manual-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  animation: manual-slideInUp 0.6s ease-out forwards;
  opacity: 0;
  color: #de8df2;
}

.manual-badge:nth-child(1) { animation-delay: 0.2s; }
.manual-badge:nth-child(2) { animation-delay: 0.4s; }
.manual-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes manual-slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.manual-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #0aecfc, #c507f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manual-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #fa9302;
}

.manual-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.manual-stat-item {
  text-align: center;
}

.manual-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #67e8f9;
  margin-bottom: 0.5rem;
}

.manual-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2302fa;
}

/* Services Section */
.manual-services-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.manual-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.manual-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.manual-section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.manual-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.manual-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.manual-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.manual-service-card:hover::before {
  transform: scaleX(1);
}

.manual-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.15);
}

.manual-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.manual-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.manual-service-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.manual-service-features {
  list-style: none;
}

.manual-service-features li {
  color: #475569;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.manual-service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0891b2;
  font-weight: bold;
}

/* Process Section */
.manual-process-section {
  padding: 6rem 0;
  background: white;
}

.manual-process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.manual-process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #0891b2, #06b6d4);
  transform: translateX(-50%);
}

.manual-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.manual-process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.manual-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.manual-step-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: calc(50% - 50px);
  border: 1px solid #e2e8f0;
}

.manual-process-step:nth-child(odd) .manual-step-content {
  margin-right: auto;
}

.manual-process-step:nth-child(even) .manual-step-content {
  margin-left: auto;
}

.manual-step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.manual-step-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Tools Section */
.manual-tools-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.manual-tools-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manual-tools-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.manual-tools-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.manual-methodology-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manual-methodology-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
}

.manual-methodology-item i {
  color: #0891b2;
  font-size: 1.125rem;
}

.manual-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.manual-tool-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.manual-tool-item:hover {
  transform: scale(1.05);
}

.manual-tool-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.manual-tool-item span {
  font-weight: 500;
  color: #1e293b;
}

/* Case Studies Section */
.manual-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.manual-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.manual-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.manual-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.manual-case-study-image {
  height: 200px;
  overflow: hidden;
}

.manual-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.manual-case-study-card:hover .manual-case-study-image img {
  transform: scale(1.05);
}

.manual-case-study-content {
  padding: 2rem;
}

.manual-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.manual-case-study-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.manual-case-study-metrics {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.manual-metric {
  text-align: center;
}

.manual-metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 0.25rem;
}

.manual-metric-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Section */
.manual-contact-section {
  padding: 6rem 0;
  background: #0f172a;
  color: white;
}

.manual-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.manual-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manual-contact-info p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.manual-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manual-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.manual-contact-item i {
  color: #0891b2;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.manual-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.manual-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.manual-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manual-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.manual-contact-form input,
.manual-contact-form textarea,
.manual-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.manual-contact-form input:focus,
.manual-contact-form textarea:focus,
.manual-contact-form select:focus {
  outline: none;
  border-color: #0891b2;
  background: rgba(255, 255, 255, 0.08);
}

.manual-contact-form input::placeholder,
.manual-contact-form textarea::placeholder {
  color: #9ca3af;
}

.manual-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.manual-checkbox-group input[type="checkbox"] {
  width: auto;
}

.manual-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.manual-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.manual-btn-primary {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  width: 100%;
}

.manual-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .manual-tools-content,
  .manual-contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manual-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manual-process-timeline::before {
    left: 30px;
  }

  .manual-step-number {
    left: 30px;
    transform: translateX(-50%);
  }

  .manual-process-step {
    flex-direction: row !important;
  }

  .manual-step-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .manual-hero-title {
    font-size: 2.5rem;
  }

  .manual-hero-stats {
    gap: 2rem;
  }

  .manual-section-header h2,
  .manual-tools-text h2,
  .manual-contact-info h2 {
    font-size: 2rem;
  }

  .manual-services-grid,
  .manual-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .manual-form-row {
    grid-template-columns: 1fr;
  }

  .manual-tools-grid {
    grid-template-columns: 1fr;
  }

  .manual-case-study-metrics {
    gap: 1rem;
  }

  .manual-hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .manual-container {
    padding: 0 15px;
  }

  .manual-hero-title {
    font-size: 2rem;
  }

  .manual-hero-subtitle {
    font-size: 1rem;
  }

  .manual-section-header h2 {
    font-size: 1.75rem;
  }

  .manual-service-card,
  .manual-case-study-card {
    margin: 0 10px;
  }

  .manual-case-study-metrics {
    flex-direction: column;
    gap: 1rem;
  }
}


/* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */


.automation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.automation-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.automation-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.automation-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: automation-float 20s ease-in-out infinite;
}

@keyframes automation-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.automation-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: automation-fadeInUp 1s ease-out;
}

@keyframes automation-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.automation-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #1b02fa;
}

.automation-hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  color: #fa02ee;
}

.automation-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  animation: automation-slideInUp 0.6s ease-out forwards;
  opacity: 0;
}

.automation-badge:nth-child(1) { animation-delay: 0.2s; }
.automation-badge:nth-child(2) { animation-delay: 0.4s; }
.automation-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes automation-slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.automation-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #79cc21, #fa9302);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #02d9fa;
}

.automation-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.automation-stat-item {
  text-align: center;
}

.automation-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 0.5rem;
}

.automation-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fa9302;
}

/* Services Section */
.automation-services-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.automation-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.automation-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.automation-section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.automation-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.automation-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.automation-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.automation-service-card:hover::before {
  transform: scaleX(1);
}

.automation-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.automation-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.automation-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.automation-service-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.automation-service-features {
  list-style: none;
}

.automation-service-features li {
  color: #475569;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.automation-service-features li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: bold;
}

/* Framework Section */
.automation-framework-section {
  padding: 6rem 0;
  background: white;
}

.automation-framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.automation-framework-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.automation-framework-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.automation-framework-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.automation-framework-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.automation-framework-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Tools Section */
.automation-tools-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.automation-tools-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.automation-tools-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.automation-tools-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.automation-tech-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.automation-tech-category {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #7c3aed;
}

.automation-tech-category h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.automation-tech-category span {
  color: #64748b;
  font-size: 0.875rem;
}

.automation-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.automation-tool-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.automation-tool-item:hover {
  transform: scale(1.05);
}

.automation-tool-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.automation-tool-item span {
  font-weight: 500;
  color: #1e293b;
}

/* Case Studies Section */
.automation-case-studies-section {
  padding: 6rem 0;
  background: white;
}

.automation-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.automation-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.automation-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.automation-case-study-image {
  height: 200px;
  overflow: hidden;
}

.automation-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.automation-case-study-card:hover .automation-case-study-image img {
  transform: scale(1.05);
}

.automation-case-study-content {
  padding: 2rem;
}

.automation-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.automation-case-study-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.automation-case-study-metrics {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.automation-metric {
  text-align: center;
}

.automation-metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 0.25rem;
}

.automation-metric-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Section */
.automation-contact-section {
  padding: 6rem 0;
  background: #0f172a;
  color: white;
}

.automation-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.automation-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-contact-info p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.automation-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automation-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.automation-contact-item i {
  color: #7c3aed;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.automation-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.automation-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.automation-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.automation-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.automation-contact-form input,
.automation-contact-form textarea,
.automation-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.automation-contact-form input:focus,
.automation-contact-form textarea:focus,
.automation-contact-form select:focus {
  outline: none;
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.08);
}

.automation-contact-form input::placeholder,
.automation-contact-form textarea::placeholder {
  color: #9ca3af;
}

.automation-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.automation-checkbox-group input[type="checkbox"] {
  width: auto;
}

.automation-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.automation-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.automation-btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  width: 100%;
}

.automation-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .automation-tools-content,
  .automation-contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .automation-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .automation-hero-title {
    font-size: 2.5rem;
  }

  .automation-hero-stats {
    gap: 2rem;
  }

  .automation-section-header h2,
  .automation-tools-text h2,
  .automation-contact-info h2 {
    font-size: 2rem;
  }

  .automation-services-grid,
  .automation-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .automation-form-row {
    grid-template-columns: 1fr;
  }

  .automation-tools-grid {
    grid-template-columns: 1fr;
  }

  .automation-case-study-metrics {
    gap: 1rem;
  }

  .automation-hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .automation-framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .automation-container {
    padding: 0 15px;
  }

  .automation-hero-title {
    font-size: 2rem;
  }

  .automation-hero-subtitle {
    font-size: 1rem;
  }

  .automation-section-header h2 {
    font-size: 1.75rem;
  }

  .automation-service-card,
  .automation-case-study-card {
    margin: 0 10px;
  }

  .automation-case-study-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .automation-framework-grid {
    grid-template-columns: 1fr;
  }
}


/* Performance Testing Performance TestingPerformance TestingPerformance TestingPerformance TestingPerformance TestingPerformance Testing*/


.performance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.performance-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.performance-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(234, 88, 12, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.performance-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: performance-float 20s ease-in-out infinite;
}

@keyframes performance-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.performance-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: performance-fadeInUp 1s ease-out;
}

@keyframes performance-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.performance-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #fa9b02;
}

.performance-hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.performance-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  animation: performance-slideInUp 0.6s ease-out forwards;
  color: #0bfa02;
  opacity: 0;
}

.performance-badge:nth-child(1) {
  animation-delay: 0.2s;
}
.performance-badge:nth-child(2) {
  animation-delay: 0.4s;
}
.performance-badge:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes performance-slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.performance-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #fa6eaf, #fa9b02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.performance-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #f2a035;
}

.performance-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.performance-stat-item {
  text-align: center;
}

.performance-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 0.5rem;
}

.performance-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ab36bf;
}

/* Services Section */
.performance-services-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.performance-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.performance-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.performance-section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.performance-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.performance-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.performance-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c, #f97316);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.performance-service-card:hover::before {
  transform: scaleX(1);
}

.performance-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.15);
}

.performance-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.performance-service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.performance-service-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.performance-service-features {
  list-style: none;
}

.performance-service-features li {
  color: #475569;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.performance-service-features li::before {
  content: "🚀";
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: bold;
}

/* Methodology Section */
.performance-methodology-section {
  padding: 6rem 0;
  background: white;
}

.performance-methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.performance-methodology-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border-left: 4px solid #ea580c;
  transition: all 0.3s ease;
}

.performance-methodology-step:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.1);
}

.performance-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.performance-step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.performance-step-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Metrics Section */
.performance-metrics-section {
  padding: 6rem 0;
  background: #f1f5f9;
}

.performance-metrics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.performance-metrics-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.performance-metrics-text p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.performance-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.performance-metric-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.performance-metric-item i {
  color: #ea580c;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.performance-metric-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.performance-metric-item span {
  color: #64748b;
  font-size: 0.875rem;
}

.performance-metrics-visual {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.performance-chart-container {
  text-align: center;
}

.performance-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.performance-chart-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.performance-chart-status {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.performance-chart-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.performance-chart-metric {
  text-align: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.performance-metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 0.25rem;
}

.performance-metric-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tools Section */
.performance-tools-section {
  padding: 6rem 0;
  background: white;
}

.performance-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.performance-tool-category {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.performance-tool-category h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
  text-align: center;
}

.performance-tool-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.performance-tool-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.performance-tool-item:hover {
  transform: scale(1.05);
}

.performance-tool-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.performance-tool-item span {
  font-weight: 500;
  color: #1e293b;
  font-size: 0.875rem;
}

/* Case Studies Section */
.performance-case-studies-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.performance-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.performance-case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.performance-case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.performance-case-study-image {
  height: 200px;
  overflow: hidden;
}

.performance-case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.performance-case-study-card:hover .performance-case-study-image img {
  transform: scale(1.05);
}

.performance-case-study-content {
  padding: 2rem;
}

.performance-case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.performance-case-study-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.performance-case-study-metrics {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.performance-metric {
  text-align: center;
}

.performance-metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 0.25rem;
}

.performance-metric-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Section */
.performance-contact-section {
  padding: 6rem 0;
  background: #0f172a;
  color: white;
}

.performance-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.performance-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.performance-contact-info p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.performance-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.performance-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.performance-contact-item i {
  color: #ea580c;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.performance-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.performance-contact-detail {
  color: #d1d5db;
}

/* Form Styles */
.performance-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.performance-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.performance-contact-form input,
.performance-contact-form textarea,
.performance-contact-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.performance-contact-form input:focus,
.performance-contact-form textarea:focus,
.performance-contact-form select:focus {
  outline: none;
  border-color: #ea580c;
  background: rgba(255, 255, 255, 0.08);
}

.performance-contact-form input::placeholder,
.performance-contact-form textarea::placeholder {
  color: #9ca3af;
}

.performance-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.performance-checkbox-group input[type="checkbox"] {
  width: auto;
}

.performance-checkbox-group label {
  font-size: 0.875rem;
  color: #d1d5db;
}

.performance-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.performance-btn-primary {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  width: 100%;
}

.performance-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .performance-metrics-content,
  .performance-contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .performance-tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .performance-hero-title {
    font-size: 2.5rem;
  }

  .performance-hero-stats {
    gap: 2rem;
  }

  .performance-section-header h2,
  .performance-metrics-text h2,
  .performance-contact-info h2 {
    font-size: 2rem;
  }

  .performance-services-grid,
  .performance-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .performance-form-row {
    grid-template-columns: 1fr;
  }

  .performance-case-study-metrics {
    gap: 1rem;
  }

  .performance-hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .performance-chart-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .performance-container {
    padding: 0 15px;
  }

  .performance-hero-title {
    font-size: 2rem;
  }

  .performance-hero-subtitle {
    font-size: 1rem;
  }

  .performance-section-header h2 {
    font-size: 1.75rem;
  }

  .performance-service-card,
  .performance-case-study-card {
    margin: 0 10px;
  }

  .performance-case-study-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .performance-methodology-step {
    flex-direction: column;
    text-align: center;
  }
}



/* HealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealthHealth */



.health-main {
  overflow-x: hidden;
}

.health-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.health-hero {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  padding: 80px 0;
  color: white;
}

.health-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.health-hero-text {
  flex: 1;
}

.health-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.health-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.health-hero-buttons {
  display: flex;
  gap: 20px;
}

.health-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.health-btn-primary {
  background: white;
  color: #00b894;
}

.health-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.health-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.health-btn-secondary:hover {
  background: white;
  color: #00b894;
}

.health-hero-image {
  flex: 1;
}

.health-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.health-services {
  padding: 100px 0;
  background: #f8f9fa;
}

.health-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2d3436;
}

.health-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.health-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.health-service-card:hover {
  transform: translateY(-10px);
}

.health-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.health-service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00b894;
}

.health-service-description {
  color: #636e72;
  line-height: 1.6;
}

/* Features Section */
.health-features {
  padding: 100px 0;
}

.health-features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.health-features-text {
  flex: 1;
}

.health-features-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.health-features-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #636e72;
}

.health-features-list {
  list-style: none;
}

.health-feature-item {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #00b894;
  position: relative;
  padding-left: 30px;
}

.health-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00b894;
  font-weight: bold;
}

.health-features-image {
  flex: 1;
}

.health-features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Case Studies Section */
.health-case-studies {
  padding: 100px 0;
  background: #f8f9fa;
}

.health-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.health-case-study {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.health-case-study:hover {
  transform: translateY(-5px);
}

.health-case-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.health-case-content {
  padding: 30px;
}

.health-case-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.health-case-description {
  color: #636e72;
  margin-bottom: 20px;
}

.health-case-metrics {
  display: flex;
  gap: 20px;
}

.health-metric {
  background: #00b894;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.health-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
}

.health-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.health-contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.health-contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.health-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.health-form-group {
  text-align: left;
}

.health-form-input,
.health-form-select,
.health-form-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.health-form-input:focus,
.health-form-select:focus,
.health-form-textarea:focus {
  outline: none;
  background: white;
}

.health-form-submit {
  background: white;
  color: #00b894;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.health-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .health-hero-content,
  .health-features-content {
    flex-direction: column;
    text-align: center;
  }

  .health-hero-title {
    font-size: 2.5rem;
  }

  .health-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .health-hero-buttons {
    justify-content: center;
  }
}


/* EcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerceEcommerce */

.ecommerce-main {
  overflow-x: hidden;
}

.ecommerce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.ecommerce-hero {
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
  padding: 80px 0;
  color: white;
}

.ecommerce-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ecommerce-hero-text {
  flex: 1;
}

.ecommerce-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecommerce-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.ecommerce-hero-buttons {
  display: flex;
  gap: 20px;
}

.ecommerce-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ecommerce-btn-primary {
  background: white;
  color: #fd79a8;
}

.ecommerce-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ecommerce-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ecommerce-btn-secondary:hover {
  background: white;
  color: #fd79a8;
}

.ecommerce-hero-image {
  flex: 1;
}

.ecommerce-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.ecommerce-services {
  padding: 100px 0;
  background: #f8f9fa;
}

.ecommerce-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2d3436;
}

.ecommerce-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.ecommerce-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ecommerce-service-card:hover {
  transform: translateY(-10px);
}

.ecommerce-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.ecommerce-service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fd79a8;
}

.ecommerce-service-description {
  color: #636e72;
  line-height: 1.6;
}

/* Features Section */
.ecommerce-features {
  padding: 100px 0;
}

.ecommerce-features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ecommerce-features-text {
  flex: 1;
}

.ecommerce-features-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.ecommerce-features-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #636e72;
}

.ecommerce-features-list {
  list-style: none;
}

.ecommerce-feature-item {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #fd79a8;
  position: relative;
  padding-left: 30px;
}

.ecommerce-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fd79a8;
  font-weight: bold;
}

.ecommerce-features-image {
  flex: 1;
}

.ecommerce-features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Case Studies Section */
.ecommerce-case-studies {
  padding: 100px 0;
  background: #f8f9fa;
}

.ecommerce-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.ecommerce-case-study {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ecommerce-case-study:hover {
  transform: translateY(-5px);
}

.ecommerce-case-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ecommerce-case-content {
  padding: 30px;
}

.ecommerce-case-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.ecommerce-case-description {
  color: #636e72;
  margin-bottom: 20px;
}

.ecommerce-case-metrics {
  display: flex;
  gap: 20px;
}

.ecommerce-metric {
  background: #fd79a8;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.ecommerce-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
  color: white;
}

.ecommerce-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.ecommerce-contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ecommerce-contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.ecommerce-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecommerce-form-group {
  text-align: left;
}

.ecommerce-form-input,
.ecommerce-form-select,
.ecommerce-form-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.ecommerce-form-input:focus,
.ecommerce-form-select:focus,
.ecommerce-form-textarea:focus {
  outline: none;
  background: white;
}

.ecommerce-form-submit {
  background: white;
  color: #fd79a8;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ecommerce-hero-content,
  .ecommerce-features-content {
    flex-direction: column;
    text-align: center;
  }

  .ecommerce-hero-title {
    font-size: 2.5rem;
  }

  .ecommerce-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .ecommerce-hero-buttons {
    justify-content: center;
  }
}


/* StartupStartupStartupStartupStartupStartupStartupStartupStartupStartupStartupStartupStartupStartupStartup */


.startup-main {
  overflow-x: hidden;
}

.startup-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.startup-hero {
  background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
  padding: 80px 0;
  color: white;
}

.startup-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.startup-hero-text {
  flex: 1;
}

.startup-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.startup-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.startup-hero-buttons {
  display: flex;
  gap: 20px;
}

.startup-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.startup-btn-primary {
  background: white;
  color: #0984e3;
}

.startup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.startup-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.startup-btn-secondary:hover {
  background: white;
  color: #0984e3;
}

.startup-hero-image {
  flex: 1;
}

.startup-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.startup-services {
  padding: 100px 0;
  background: #f8f9fa;
}

.startup-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2d3436;
}

.startup-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.startup-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.startup-service-card:hover {
  transform: translateY(-10px);
}

.startup-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.startup-service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0984e3;
}

.startup-service-description {
  color: #636e72;
  line-height: 1.6;
}

/* Features Section */
.startup-features {
  padding: 100px 0;
}

.startup-features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.startup-features-text {
  flex: 1;
}

.startup-features-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.startup-features-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #636e72;
}

.startup-features-list {
  list-style: none;
}

.startup-feature-item {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #0984e3;
  position: relative;
  padding-left: 30px;
}

.startup-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0984e3;
  font-weight: bold;
}

.startup-features-image {
  flex: 1;
}

.startup-features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Case Studies Section */
.startup-case-studies {
  padding: 100px 0;
  background: #f8f9fa;
}

.startup-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.startup-case-study {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.startup-case-study:hover {
  transform: translateY(-5px);
}

.startup-case-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.startup-case-content {
  padding: 30px;
}

.startup-case-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.startup-case-description {
  color: #636e72;
  margin-bottom: 20px;
}

.startup-case-metrics {
  display: flex;
  gap: 20px;
}

.startup-metric {
  background: #0984e3;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.startup-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
  color: white;
}

.startup-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.startup-contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.startup-contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.startup-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.startup-form-group {
  text-align: left;
}

.startup-form-input,
.startup-form-select,
.startup-form-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.startup-form-input:focus,
.startup-form-select:focus,
.startup-form-textarea:focus {
  outline: none;
  background: white;
}

.startup-form-submit {
  background: white;
  color: #0984e3;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.startup-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .startup-hero-content,
  .startup-features-content {
    flex-direction: column;
    text-align: center;
  }

  .startup-hero-title {
    font-size: 2.5rem;
  }

  .startup-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .startup-hero-buttons {
    justify-content: center;
  }
}


/* FinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinanceFinance */

.finance-main {
  overflow-x: hidden;
}

.finance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.finance-hero {
  background: linear-gradient(135deg, #0984e3 0%, #fdcb6e 100%);
  padding: 80px 0;
  color: white;
}

.finance-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.finance-hero-text {
  flex: 1;
}

.finance-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.finance-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.finance-hero-buttons {
  display: flex;
  gap: 20px;
}

.finance-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.finance-btn-primary {
  background: white;
  color: #0984e3;
}

.finance-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.finance-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.finance-btn-secondary:hover {
  background: white;
  color: #0984e3;
}

.finance-hero-image {
  flex: 1;
}

.finance-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.finance-services {
  padding: 100px 0;
  background: #f8f9fa;
}

.finance-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2d3436;
}

.finance-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.finance-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.finance-service-card:hover {
  transform: translateY(-10px);
}

.finance-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.finance-service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0984e3;
}

.finance-service-description {
  color: #636e72;
  line-height: 1.6;
}

/* Features Section */
.finance-features {
  padding: 100px 0;
}

.finance-features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.finance-features-text {
  flex: 1;
}

.finance-features-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.finance-features-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #636e72;
}

.finance-features-list {
  list-style: none;
}

.finance-feature-item {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #0984e3;
  position: relative;
  padding-left: 30px;
}

.finance-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0984e3;
  font-weight: bold;
}

.finance-features-image {
  flex: 1;
}

.finance-features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Case Studies Section */
.finance-case-studies {
  padding: 100px 0;
  background: #f8f9fa;
}

.finance-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.finance-case-study {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.finance-case-study:hover {
  transform: translateY(-5px);
}

.finance-case-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.finance-case-content {
  padding: 30px;
}

.finance-case-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.finance-case-description {
  color: #636e72;
  margin-bottom: 20px;
}

.finance-case-metrics {
  display: flex;
  gap: 20px;
}

.finance-metric {
  background: #0984e3;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.finance-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0984e3 0%, #fdcb6e 100%);
  color: white;
}

.finance-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.finance-contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.finance-contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.finance-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.finance-form-group {
  text-align: left;
}

.finance-form-input,
.finance-form-select,
.finance-form-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.finance-form-input:focus,
.finance-form-select:focus,
.finance-form-textarea:focus {
  outline: none;
  background: white;
}

.finance-form-submit {
  background: white;
  color: #0984e3;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.finance-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .finance-hero-content,
  .finance-features-content {
    flex-direction: column;
    text-align: center;
  }

  .finance-hero-title {
    font-size: 2.5rem;
  }

  .finance-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .finance-hero-buttons {
    justify-content: center;
  }
}



/* MEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdiaMEdia */


.media-main {
  overflow-x: hidden;
}

.media-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.media-hero {
  background: linear-gradient(135deg, #e17055 0%, #a29bfe 100%);
  padding: 80px 0;
  color: white;
}

.media-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-hero-text {
  flex: 1;
}

.media-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.media-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.media-hero-buttons {
  display: flex;
  gap: 20px;
}

.media-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.media-btn-primary {
  background: white;
  color: #e17055;
}

.media-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.media-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.media-btn-secondary:hover {
  background: white;
  color: #e17055;
}

.media-hero-image {
  flex: 1;
}

.media-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.media-services {
  padding: 100px 0;
  background: #f8f9fa;
}

.media-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2d3436;
}

.media-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.media-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.media-service-card:hover {
  transform: translateY(-10px);
}

.media-service-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.media-service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #e17055;
}

.media-service-description {
  color: #636e72;
  line-height: 1.6;
}

/* Features Section */
.media-features {
  padding: 100px 0;
}

.media-features-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.media-features-text {
  flex: 1;
}

.media-features-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.media-features-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #636e72;
}

.media-features-list {
  list-style: none;
}

.media-feature-item {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #e17055;
  position: relative;
  padding-left: 30px;
}

.media-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e17055;
  font-weight: bold;
}

.media-features-image {
  flex: 1;
}

.media-features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Case Studies Section */
.media-case-studies {
  padding: 100px 0;
  background: #f8f9fa;
}

.media-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.media-case-study {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.media-case-study:hover {
  transform: translateY(-5px);
}

.media-case-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.media-case-content {
  padding: 30px;
}

.media-case-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2d3436;
}

.media-case-description {
  color: #636e72;
  margin-bottom: 20px;
}

.media-case-metrics {
  display: flex;
  gap: 20px;
}

.media-metric {
  background: #e17055;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.media-contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #e17055 0%, #a29bfe 100%);
  color: white;
}

.media-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.media-contact-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.media-contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.media-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-form-group {
  text-align: left;
}

.media-form-input,
.media-form-select,
.media-form-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.media-form-input:focus,
.media-form-select:focus,
.media-form-textarea:focus {
  outline: none;
  background: white;
}

.media-form-submit {
  background: white;
  color: #e17055;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-hero-content,
  .media-features-content {
    flex-direction: column;
    text-align: center;
  }

  .media-hero-title {
    font-size: 2.5rem;
  }

  .media-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .media-hero-buttons {
    justify-content: center;
  }
}
