
       /* ================ BREADCRUMB ================ */
.breadcrumb {
  padding: 0.75rem 0;
  background-color: #f5f5f5; /* Light gray background */
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-bottom: 1px solid #e0e0e0; /* Subtle border */
}

.breadcrumb .container {
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.25rem 0;
}

/* Separator between breadcrumb items */
.breadcrumb li:not(:last-child)::after {
  content: '›'; /* More modern chevron separator */
  margin: 0 0.5rem;
  color: #757575; /* Medium gray */
  font-size: 0.9em;
}

/* Current page item */
.breadcrumb [aria-current="page"] {
  color: #212121; /* Dark gray */
  font-weight: 500;
  pointer-events: none;
}

/* Link styles */
.breadcrumb a {
  color: #616161; /* Dark gray */
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: #1565c0; /* Blue color for hover */
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.5rem 0;
  }
  
  .breadcrumb .container {
    padding: 0 1rem;
  }
  
  .breadcrumb li {
    font-size: 0.8125rem;
  }
  
  .breadcrumb li:not(:last-child)::after {
    margin: 0 0.375rem;
  }
}
  
 .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white !important; /* Ensures white text */
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-decoration: none;
}

.phone-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button,
  .phone-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
} 
/* Card-style List Items */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.55rem;
  margin: 0.55rem 0;
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: white;
  border-radius: 10px;
  padding: 0.55rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #2563eb;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-left-width: 6px;
}

.feature-list i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-top: 0rem;
  flex-shrink: 0;
}

.feature-list li span {
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .feature-list li {
    padding: 1.5rem;
  }
} 

/* Statistics Grid Container */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 1rem 0;
}

/* Individual Stat Item */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #2563eb;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Stat Number Style */
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  position: relative;
}

/* Percentage sign (optional) */
.stat-number::after {
  content: '%';
  font-size: 1.5rem;
  position: absolute;
  top: 0.25rem;
  right: -1rem;
}

/* Stat Label Style */
.stat-label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Animation for counting up */
@keyframes countUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animated {
  animation: countUp 0.6s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}


/* Technologies Section */
.tech-section {
  padding: 5rem 0;
}

.bg-light {
  background-color: #f8fafc;
}

/* Section Title Styles */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #2563eb;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Technologies Grid Layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.tech-category {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tech-category h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.tech-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2563eb;
}

/* Technology Items Grid */
.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background-color: #e0e7ff;
  transform: scale(1.05);
}

.tech-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.tech-item:hover img {
  transform: scale(1.1);
}

.tech-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .tech-grid {
    gap: 1.5rem;
  }
  
  .tech-category {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tech-section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.875rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .tech-item {
    padding: 1rem 0.5rem;
  }
  
  .tech-item img {
    width: 50px;
    height: 50px;
  }
}

/* ================ CASE STUDIES SECTION ================ */
.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.case-study {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  border: 1px solid #e2e8f0;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study:hover::before {
  opacity: 1;
}

.case-study img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study:hover img {
  transform: scale(1.03);
}

.case-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.case-content h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.industry {
  display: inline-block;
  background-color: #e0e7ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.case-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.case-link:hover::after {
  width: 100%;
}

.case-link i {
  transition: transform 0.3s ease;
}

.case-link:hover i {
  transform: translateX(4px);
}

/* Center the "View All Projects" button */
.text-center {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6b95f1;
  color: #2563eb;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #2563eb;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  min-width: 200px; /* Ensures consistent width */
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Responsive adjustment */
@media (max-width: 480px) {
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .case-studies {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .case-studies {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .case-study img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .case-content {
    padding: 1.5rem;
  }
  
  .case-content h3 {
    font-size: 1.3rem;
  }
  
  .btn-secondary {
    width: 100%;
    padding: 0.75rem;
  }
}


/* ================ TESTIMONIALS ================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--gray-light);
  font-size: 3rem;
  opacity: 0.3;
  z-index: 0;
}

.testimonial p {
  position: relative;
  z-index: 1;
  font-style: italic;
  color:black;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-author p {
  color:black;
  font-size: 0.9rem;
  margin-bottom: 0;
}



  /* CTA Section Styles */
  .cta-section {
    padding: 5rem 0;
    color: white;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .divider {
    width: 80px;
    height: 4px;
    margin: 1.5rem auto;
  }
  
  .cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
  }
  
  .cta-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .cta-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .cta-card h3 {
    margin: 1rem 0 0.5rem;
  }
  
  .cta-card p {
    margin: 0.25rem 0;
  }
  
  .cta-card a {
    transition: color 0.2s ease;
  }
  
  .cta-card a:hover {
    text-decoration: underline;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem; /* Add padding for small screens */
  box-sizing: border-box; /* Include padding in width/height */
}

.modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh; /* Limit height and enable scrolling */
  overflow-y: auto; /* Enable scrolling for tall content */
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
  margin: auto; /* Center horizontally */
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    max-height: 85vh; /* Slightly smaller on very small screens */
  }
  
  .close-modal {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
  }
}

/* Add smooth transitions for modal */
.modal.modal-fade-in {
  animation: modalBgFadeIn 0.3s ease-out;
}

@keyframes modalBgFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Add this for touch devices */
@media (hover: none) {
  .cta-button:hover {
    background-color: #2563eb; /* Remove hover effect on touch devices */
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}


  
  /* Remove gap between CTA section and footer */
.cta-section {
  margin-bottom: 0 !important;
  padding-bottom: 5rem; /* Maintain bottom padding */
}

.smart-footer {
  margin-top: 0 !important;
}

/* Alternative solution if the gap persists */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.smart-footer {
  margin-top: auto;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-item {
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem; /* Slightly larger question text */
  color: #1e293b; /* Dark gray for better readability */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8fafc; /* Light hover state */
}

.faq-question i {
  margin-left: 1rem;
  font-size: 0.9rem; /* Proper chevron size */
  color: #64748b; /* Medium gray for icon */
  transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] {
  color: #2563eb; /* Blue color for active question */
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: #2563eb; /* Blue color for active icon */
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother animation */
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
}

.faq-answer p {
  font-size: 1rem; /* Comfortable reading size */
  line-height: 1.6; /* Better readability */
  color: #475569; /* Slightly darker than question for hierarchy */
  margin: 0;
}

/* Active state */
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px; /* Adjust based on your longest content */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem; /* Slightly smaller on mobile */
    padding: 1rem 1.25rem;
  }
  
  .faq-answer p {
    font-size: 0.9375rem; /* 15px for mobile */
  }
}

  
        :root {
            --primary: #0066cc;
            --primary-dark: #004080;
            --secondary: #3b82f6;
            --accent: #3DC6C3;
            --dark: #1e293b;
            --light: #f8fafc;
            --white: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --star-count: 40;
            --shooting-star-count: 3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom, #3D85C6, #3D85C6);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: clamp(2rem, 2vw, 3rem);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* Stars Animation */
        .stars, .shooting-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            will-change: transform;
        }

        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle var(--duration, 5s) infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .shooting-star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: white;
            border-radius: 50%;
            filter: drop-shadow(0 0 4px white);
            animation: 
                shoot var(--shoot-duration, 3s) infinite ease-in,
                fade var(--shoot-duration, 3s) infinite ease-in;
            opacity: 0;
        }

        @keyframes shoot {
            0% { transform: translate(0, 0); }
            100% { transform: translate(var(--shoot-x, 100vw), var(--shoot-y, 50vh)); }
        }

        @keyframes fade {
            0% { opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Buttons */
        .cta-button, .btn {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover, .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            background-color: var(--white);
        }

        /* Section Styles */
        .section {
            padding: 40px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1rem;
              text-align: center;
        }

        .divider {
            width: 100px;
            height: 4px;
            background: var(--primary);
            margin: 5px auto;
            border-radius: 2px;
        }

        .accent-divider {
            background: var(--accent);
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            text-align: justify;
          align-items: center;
        }

        .two-column img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            height: auto;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
              text-align: center;
        }

        .card {
            background: var(--white);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
             text-align: center;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

       .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(61, 198, 195, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.card {
    display: grid;
    place-items: center;
    text-align: center;
}




        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

  .card p {
    color: var(--gray);
    font-size: 1rem;
    text-align: center;
}


       .card ul {
    padding-left: 20px;
    color: #4a4a4a;
}

.card li {
    margin-bottom: 8px;
    line-height: 1.5;
}
        /* Why Choose Us */
        .why-us {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        }

        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-item {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-left: 4px solid var(--accent);
        }

        .feature-item h3 {
            margin-bottom: 15px;
            color: var(--dark);
            font-size: 1.3rem;
        }

        .feature-item p {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Pricing Section */
        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .pricing-card h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .pricing-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }

        .features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: var(--dark);
        }

        .features li svg {
            position: absolute;
            left: 0;
            top: 3px;
            width: 18px;
            height: 18px;
            fill: var(--success);
        }

        /* CTA Section */
        .cta-section {
                     background: linear-gradient(270deg, #3DC6C3, #3D85C6);
            color: var(--white);
            padding: 80px 0;
            border-radius: 12px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .benefits-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto 40px;
            text-align: left;
        }

        .benefits-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            width: 100%;
            max-width: 600px;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            background: none;
            border: none;
        }

        .contact-form {
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .submit-btn {
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
        }

        /* Process Steps */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
            flex-wrap: wrap;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--secondary);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 20%;
            min-width: 150px;
            margin-bottom: 30px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step h4 {
            margin-bottom: 10px;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .step p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .two-column {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                width: 50%;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
                min-height: 400px;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .card {
                padding: 30px 20px;
            }
            
            .pricing-plans {
                grid-template-columns: 1fr;
            }
            
            .step {
                width: 100%;
            }
            
            :root {
                --star-count: 30;
                --shooting-star-count: 2;
            }
        }

        @media (max-width: 480px) {
            :root {
                --star-count: 25;
                --shooting-star-count: 1;
            }

            .star {
                animation-duration: 7s;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta-button, .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* Reduced motion preference */
        @media (prefers-reduced-motion) {
            .star, .shooting-star {
                animation: none !important;
                opacity: 0.7 !important;
            }
        }
            .logo-type {
    background: linear-gradient(to right, #2ecc71, #3498db);
    -webkit-background-clip: text; /* For Safari */
    background-clip: text;
    color: transparent;
    font-weight: 750;
    font-size: 1.7rem;
    display: inline-block; /* Ensures gradient applies properly */
  }
  .header-button {
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .header-button:hover {
    background: linear-gradient(to right, #2ecc71, #3498db);
  }
  

/* Base animation styles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Element base styles */
.section,
.card,
.tech-item,
.step,
.testimonial,
.case-study,
.faq-item {
  opacity: 0;
  will-change: transform, opacity;
}

/* Animation trigger class */
.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Header scroll effects */
.smart-header {
  transition: background-color 0.3s ease;
}

.smart-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Accessibility considerations */
.no-js .section,
.no-js .card,
.no-js .tech-item,
.no-js .step,
.no-js .testimonial,
.no-js .case-study,
.no-js .faq-item {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion) {
  .section,
  .card,
  .tech-item,
  .step,
  .testimonial,
  .case-study,
  .faq-item {
    animation: none !important;
    transition: opacity 0.3s ease !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .smart-header,
  .header-inner {
    transition: none !important;
  }
}
      