@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Only header container uses flex */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

header .logo span {
  color: #4caf50;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4caf50;
}

#menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  display: none;
}

.main {
  background: url('Images/background.jpg') center/cover no-repeat;
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.main h2 {
  font-size: 36px;
  margin-bottom: 15px;
  animation: fadeIn 1s ease-in;
}

.main p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: #fff;
  color: #4caf50;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition:
    background 0.3s,
    color 0.3s;
}

.btn:hover {
  background: #333;
  color: #fff;
}

.section {
  padding: 80px 0;
  text-align: center;
}

/* ===== OVERLAPPING STICKY SOLUTIONS SECTIONS ===== */
.solutions-section {
  display: flex;
  position: relative;
  background: #fff;
  min-height: 100vh;
}

.solutions-sticky-title {
  width: 40%;
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
}

.sticky-title {
  font-size: 48px;
  color: #0066cc;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
  opacity: 1;
  transition:
    color 0.4s ease-in-out,
    opacity 0.3s ease-in-out;
}

.solutions-stacking {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.solution-stack {
  position: sticky;
  top: 100px;

  display: flex;
  flex-direction: column;
  width: calc(100% - 80px);

  background: #fff;
  border: 3px solid #0066cc;
  border-radius: 25px;
  box-sizing: border-box;
  flex-shrink: 0;

  margin: 0 40px 60px 40px;
  padding: 30px 30px 30px 30px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.solution-stack:nth-child(1) {
  z-index: 1;
}
.solution-stack:nth-child(2) {
  z-index: 2;
}
.solution-stack:nth-child(3) {
  z-index: 3;
}
.solution-stack:nth-child(4) {
  z-index: 4;
}
.solution-stack:nth-child(5) {
  z-index: 5;
}

.solutions-stacking {
  padding-bottom: 0vh;
}

.solution-stack {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Border colors based on data-color attribute */
.solution-stack[data-color='#0066cc'] {
  border-color: #0066cc;
}

.solution-stack[data-color='#4caf50'] {
  border-color: #4caf50;
}

.solution-stack[data-color='#d9534f'] {
  border-color: #d9534f;
}

.solution-stack[data-color='#f0ad4e'] {
  border-color: #f0ad4e;
}

.solution-stack[data-color='#9b59b6'] {
  border-color: #9b59b6;
}

.stack-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-stack:hover .stack-image img {
  transform: scale(1.03);
}

.stack-description {
  width: 100%;
  height: 200px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.stack-description h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
}

.stack-description p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.partners-section h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 600;
}

.partners-slider-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
}

.partners-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
  border-radius: 8px;
  flex: 1;
}

.partners-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 0 40px;
}

.partner-slide {
  flex: 0 0 calc(25% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
  min-height: 150px;
  border-radius: 4px;
}

.partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.partner-slide:hover img {
  opacity: 0.8;
}

/* Slider Controls */
.slider-btn {
  position: relative;
  background: #4caf50;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: #45a049;
  transform: scale(1.1);
}

.prev-btn {
  order: -1;
}

.next-btn {
  order: 3;
}

/* Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #4caf50;
  width: 30px;
  border-radius: 6px;
}

/* ===== RESPONSIVE: PARTNERS ON MOBILE ===== */
@media (max-width: 1024px) {
  .partner-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .partners-slider-container {
    gap: 15px;
  }

  .partner-slide {
    flex: 0 0 calc(50% - 10px);
    min-height: 100px;
    padding: 15px;
  }

  .partners-slider {
    padding: 0 30px;
    gap: 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ===== RESPONSIVE: MOBILE LAYOUT ===== */
@media (max-width: 768px) {
  .solutions-section {
    flex-direction: column;
    min-height: auto;
  }

  .solutions-sticky-title {
    position: static;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 30px 20px;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .sticky-title {
    font-size: 32px;
  }

  .solutions-stacking {
    width: 100%;
    flex-direction: column;
  }

  .solution-stack {
    min-height: auto;
    flex-direction: column;
    margin-top: 0;
  }

  .stack-image {
    width: 100%;
    height: 300px;
  }

  .stack-description {
    width: 100%;
    height: auto;
    padding: 40px 30px;
  }

  .stack-description h3 {
    font-size: 22px;
  }

  .stack-description p {
    font-size: 14px;
  }
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.solution-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  border-top: 4px solid #4caf50;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(76, 175, 80, 0.2);
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
}

.solution-card .card-icon {
  font-size: 48px;
  color: #4caf50;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.solution-card:hover .card-icon {
  background: #4caf50;
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.solution-card h3 {
  margin: 20px 0 15px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.solution-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Capabilities Grid */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.capability-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 25px;
  width: 270px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #4caf50;
}

.capability-card .card-icon-square {
  font-size: 40px;
  color: #fff;
  background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.capability-card:hover .card-icon-square {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  transform: scale(1.1);
}

.capability-card h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.capability-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Case Study Section */
.case-study-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-study-image {
  flex: 0 0 40%;
  min-width: 300px;
}

.case-study-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.case-study-content {
  flex: 1;
  text-align: left;
}

.case-study-content h3 {
  color: #0066cc;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.case-study-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.case-study-btn {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0066cc;
}

.case-study-btn:hover {
  background: transparent;
  color: #0066cc;
}

/* Products Grid */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #4caf50;
}

.product-card h3 {
  color: #0066cc;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.datasheet-btn {
  display: inline-block;
  background: transparent;
  color: #0066cc;
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid #0066cc;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.datasheet-btn:hover {
  background: #0066cc;
  color: #fff;
}

.contact-grid {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 350px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.contact-card img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 0;
  margin-right: 15px;
  border: 2px solid #4caf50;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.contact-details i {
  color: #4caf50;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

footer {
  background: #111;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

/* Footer Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4caf50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  font-size: 14px;
}

.footer-links li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: #4caf50;
}

.footer-links li i {
  color: #4caf50;
  width: 16px;
  text-align: center;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  border: 1px solid #4caf50;
}

.social-links a:hover {
  background: #4caf50;
  color: #fff;
  transform: translateY(-3px);
}

.footer-cta-btn {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
  text-align: center;
}

.footer-cta-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: #333;
  margin-bottom: 30px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 30px;
}

.footer-legal li a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal li a:hover {
  color: #4caf50;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #222;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    text-align: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  #menu-toggle {
    display: block;
  }
}

/* Contact Form Styles */
.contact-form-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.contact-content {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.address-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4caf50;
  transition: all 0.3s ease;
}

.address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.address-card h3 {
  color: #4caf50;
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-card i {
  font-size: 24px;
}

.address-card p {
  color: #666;
  margin: 8px 0;
  font-size: 14px;
}

.address-card a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: url('Images/bg1.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
}

.products-section .container {
  max-width: 90%;
  position: relative;
  z-index: 1;
}

.products-section h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-grid-alternating {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.product-tile {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 200px;
}

/* .product-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
} */

.product-content {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.product-content h3 {
  font-size: 24px;
  color: #0066cc;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.product-image {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-tile:hover .product-image img {
  transform: scale(1.05);
}

/* Responsive: Tablets */
@media (max-width: 1024px) {
  .products-grid-alternating {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-tile {
    min-height: 250px;
  }

  .product-content {
    padding: 30px 25px;
  }

  .product-content h3 {
    font-size: 20px;
  }

  .product-content p {
    font-size: 14px;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .products-grid-alternating {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-tile {
    flex-direction: column;
    min-height: auto;
  }

  .product-content {
    padding: 25px 20px;
  }

  .product-image {
    min-height: 200px;
  }

  .products-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .product-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .product-content p {
    font-size: 13px;
  }
}

.address-card a:hover {
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  background: #4caf50;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-submit-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-message {
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
  display: none;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Responsive - Contact Form */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .contact-form-wrapper {
    min-width: 100%;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* ===== PRODUCTS PAGE SOLUTIONS CARDS ===== */
.solutions-grid-scroll {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeIn 0.6s ease-in;
}

.solution-card-wide {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.solution-card-wide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #4caf50, #f0ad4e);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.solution-card-wide:hover {
  transform: translateX(15px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
  background: linear-gradient(135deg, #e8f1ff 0%, #f1f8f6 100%);
}

.solution-card-wide .card-icon {
  font-size: 70px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
  flex-shrink: 0;
}

.solution-card-wide:hover .card-icon {
  background: linear-gradient(135deg, #4caf50 0%, #3d8b40 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 24px rgba(76, 175, 80, 0.3);
}

.solution-card-wide > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-card-wide h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.solution-card-wide:hover h3 {
  color: #0066cc;
}

.solution-card-wide p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  transition: color 0.3s ease;
}

.solution-card-wide p:last-of-type {
  color: #4caf50;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-top: 15px;
}

.solution-card-wide:hover p:first-of-type {
  color: #666;
}

/* Responsive - Products Grid */
@media (max-width: 1024px) {
  .solution-card-wide {
    padding: 30px 35px;
    gap: 35px;
  }

  .solution-card-wide .card-icon {
    width: 110px;
    height: 110px;
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .solutions-grid-scroll {
    gap: 20px;
  }

  .solution-card-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 25px;
    gap: 20px;
  }

  .solution-card-wide .card-icon {
    width: 90px;
    height: 90px;
    font-size: 50px;
    flex-shrink: 1;
  }

  .solution-card-wide h3 {
    font-size: 20px;
  }

  .solution-card-wide p {
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 200% 0;
  }
  50% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
