/* Reset and Base Styles */
:root {
  --primary-color: #002147;
  --secondary-color: #f0c419;
  --accent-color: #0056b3;
  --text-color: #333;
  --light-text: #777;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --dark-bg: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 80px 0;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

.logo {
  height: 90px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--white);
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--secondary-color);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  padding: 120px 5% 80px;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* About Section */
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 2;
}

.about-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  background-color: var(--light-bg);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--secondary-color);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--light-text);
}

/* Services Section */
.services-section {
  background-color: var(--light-bg);
}

.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--secondary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(240, 196, 25, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-color);
  color: var(--white);
}

.testimonials-section h2 {
  color: var(--white);
}

.testimonials-section h2::after {
  background-color: var(--white);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f8d347 100%);
  color: var(--primary-color);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(240, 196, 25, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo img {
  margin-bottom: 20px;
  height: 40px;
}

.footer-logo p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: inherit;
}

.footer-newsletter button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    /* padding-top: 100px; */
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1px 20px;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav a {
    margin: 10px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}


/* Updated Footer Styles */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 5% 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-info-item i {
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.contact-info-item p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding: 20px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Service Card Links */
.service-card {
  position: relative;
}

.service-card > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
}

/* Advanace styling for footer */

/* Add consistent section padding */
.section {
  padding: 80px 5%;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 5%;
  }
}

/* Ensure footer has proper spacing */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding-top: 0;
}



/* FAQ Section Styles */
/* FAQ Section Styles */
.faq-section {
  background-color: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--white);
  border-left: 4px solid var(--secondary-color);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f8f8;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  background-color: var(--white);
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  margin: 0;
}

.faq-toggle:checked + .faq-question i {
  transform: rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* END and also for home page css ending*/

/* ====================
   ABOUT PAGE STYLES
   ==================== */

   .about-hero {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 86, 179, 0.8)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') center/cover;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .about-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
  }
  
  .about-section .about-content {
    display: flex;
    gap: 60px;
  }
  
  .about-section .about-text {
    flex: 2;
  }
  
  .about-section .about-text h2 {
    margin: 30px 0 20px;
    color: var(--primary-color);
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .value-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .value-item:hover {
    transform: translateY(-5px);
  }
  
  .value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }
  
  .value-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .team-section {
    background-color: var(--light-bg);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 30px;
  }
  
  .member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.05);
  }
  
  .team-member h3 {
    margin: 20px 0 5px;
    color: var(--primary-color);
  }
  
  .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .bio {
    padding: 0 20px;
    color: var(--light-text);
  }
  
  /* ====================
     CONTACT PAGE STYLES
     ==================== */
  
  .contact-hero {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 86, 179, 0.8)), 
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d') center/cover;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .contact-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
  }
  
  .contact-section .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .contact-section .contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
  }
  
  .contact-section .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .contact-section .info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
  }
  
  .contact-section .info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .contact-section .contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
  }
  
  .contact-section .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-section .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(240, 196, 25, 0.2);
  }
  
  .map-section {
    padding-top: 0;
  }
  
  .map-section h2 {
    margin-bottom: 30px;
  }
  
  .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* ====================
     RESPONSIVE STYLES
     ==================== */
  
  @media (max-width: 1024px) {
    .about-section .about-content,
    .contact-section .contact-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .about-section .about-stats {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .about-hero,
    .contact-hero {
      padding: 150px 0 80px;
    }
    
    .about-hero h1,
    .contact-hero h1 {
      font-size: 2.5rem;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .about-hero,
    .contact-hero {
      padding: 120px 0 60px;
    }
    
    .about-hero h1,
    .contact-hero h1 {
      font-size: 2rem;
    }
    
    .about-hero p,
    .contact-hero p {
      font-size: 1.2rem;
    }
  }


/* ====================
   DATA SOLUTIONS PAGE STYLES
   ==================== */

   .solutions-hero {
    background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 86, 179, 0.85)), 
                url('images/data-hero-bg.jpg') center/cover;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
  }
  
  .solutions-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .solutions-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .data-intro {
    padding: 100px 0;
  }
  
  .intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .intro-text {
    flex: 1;
  }
  
  .intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .intro-image:hover img {
    transform: scale(1.03);
  }
  
  .data-types-section {
    background-color: var(--light-bg);
    padding: 100px 0;
  }
  
  .data-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .data-type-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .data-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .data-icon {
    width: 70px;
    height: 70px;
    background: rgba(240, 196, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.8rem;
  }
  
  .data-type-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .data-features {
    margin-top: 25px;
    list-style: none;
  }
  
  .data-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
  }
  
  .data-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 3px;
  }
  
  .cleansing-process {
    padding: 100px 0;
  }
  
  .process-steps {
    margin-top: 60px;
  }
  
  .process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(240, 196, 25, 0.3);
  }
  
  .step-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .step-image:hover img {
    transform: scale(1.05);
  }
  
  .benefits-section {
    background-color: var(--light-bg);
    padding: 100px 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .intro-content {
      flex-direction: column;
    }
    
    .process-step {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .step-image {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .solutions-hero {
      padding: 150px 0 80px;
    }
    
    .solutions-hero h1 {
      font-size: 2.5rem;
    }
    
    .data-types-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .solutions-hero {
      padding: 120px 0 60px;
    }
    
    .solutions-hero h1 {
      font-size: 2rem;
    }
    
    .solutions-hero p {
      font-size: 1.2rem;
    }
    
    .process-step {
      margin-bottom: 40px;
    }
  }