/* Global Styles */
:root {
  --primary-color: #0066cc;
  --secondary-color: #003366;
  --accent-color: #00aaff;
  --accent-color-rgb: 0, 170, 255;
  
  --gradient-start: #0066cc;
  --gradient-end: #00c6ff;
  --text-color: #333333;
  --light-gray: #f4f4f4;
  --dark-gray: #444444;
  --white: #ffffff;
  --max-width: 1200px;
  --transition: all 0.3s ease;

  --vibrant-blue: #2389da;
  --deep-blue: #0a4d8c;
  --teal: #2db88e;
  --purple: #7952b3;
  --vibrant-orange: #ff7e33;
  --highlight-color: var(--teal);

  --btn-padding: 12px 24px;
  --btn-radius: 4px;
  --btn-font-weight: 600;
  --btn-transition: all 0.3s ease;
  --btn-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --btn-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
  --btn-font-size: 1rem;

  --carousel-bg: #ffffff;
  --carousel-bg-dark: #1a1a1a;
  --carousel-card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --carousel-card-shadow-dark: 0 10px 20px rgba(255, 255, 255, 0.05);
  --carousel-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);

  --icon-primary-color: var(--primary-color);
  --icon-hover-color: var(--teal);
  --icon-transition: all 0.3s ease;
  --icon-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.btn, 
button[type="submit"],
.card-cta,
.btn-link {
  display: inline-block;
  padding: var(--btn-padding);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  cursor: pointer;
  text-align: center;
  transition: var(--btn-transition);
  box-shadow: var(--btn-shadow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, 
button[type="submit"]:hover,
.card-cta:hover,
.btn-link:hover {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-2px);
}

.btn::after,
button[type="submit"]::after,
.card-cta::after,
.btn-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::after,
button[type="submit"]:hover::after,
.card-cta:hover::after,
.btn-link:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}


.btn:hover {
  background: var(--vibrant-blue);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--vibrant-blue);
  border-color: var(--white);
  color: var(--white);
}


.hero .btn {
  background: var(--deep-blue);
  margin-right: 10px;
  margin-top: 1.5rem;
  padding: 15px 30px;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}



.card-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 8px 0;
  color: var(--primary-color);
  box-shadow: none;
}

.card-cta i {
  margin-left: 8px;
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.card-cta:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: none;
  transform: translateY(0);
}

.card-cta:hover i {
  transform: translateX(4px);
}

.card-cta::after {
  display: none;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 8px 0;
  color: var(--primary-color);
  box-shadow: none;
  text-decoration: none;
  position: relative;
}

.btn-link::after {
  display: none;
}

.btn-link:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: none;
  transform: none;
}

.btn-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.btn-link:hover::before {
  width: 100%;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 30px;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

nav a:hover {
  color: var(--primary-color);
}

nav a.active {
  color: var(--primary-color);
}

nav a.active:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--vibrant-blue) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 100 100"><path d="M0,50 Q25,0 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--white) 0%, var(--vibrant-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}



/* Services Section */
.services-grid, 
.products-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item,
.product-item,
.team-member {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-item:hover,
.product-item:hover,
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



.service-icon 
.product-icon,
.goal-icon i,
.carousel-icon i,
.social-links a i,
.stat-icon,
.contact-icon i,
.value-icon i,
.team-info .card-cta i,
.carousel-card .card-cta i,
.why-it-matters h4:before {
  color: var(--icon-primary-color);
  transition: var(--icon-transition);
  filter: drop-shadow(var(--icon-shadow));
}

/* Hover effects for interactive icons */
.service-item:hover .service-icon,
.product-item:hover .product-icon,
.stat-item:hover .stat-icon,
.social-links a:hover i,
.team-info .card-cta:hover i,
.carousel-card .card-cta:hover i {
  color: var(--icon-hover-color);
  transform: scale(1.1);
}

.services-preview {
  background: linear-gradient(to bottom right, var(--white), var(--light-gray));
  position: relative;
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(150px, -150px);
}

.services-grid .service-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-grid .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-grid .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--vibrant-blue), var(--teal));
  transition: height 0.3s ease;
}

.services-grid .service-item:hover::before {
  height: 100%;
}



.service-detail {
  padding: 80px 0;
}

.service-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 102, 204, 0.2);
}

.service-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-text {
  flex: 6;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 24px;
}

.why-it-matters {
  background-color: rgba(0, 102, 204, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}

.why-it-matters h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-text h3 {
  width: 100%;
  display: block;
  border-top: 1px solid rgba(0, 102, 204, 0.2);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.35rem;
  color: var(--secondary-color);
}

.service-text h3 + ul {
  margin-top: -10px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark-gray);
}

.divider {
  display: none !important;
}

.team-values .section-header,
.join-team .section-header,
.values-grid,
.platform-grid {
  margin-top: 0;
}

.text-placeholder {
  background-color: var(--light-gray);
  border: 1px solid var(--accent-color);
  color: var(--primary-color);
  padding: 80px 40px;
  text-align: center;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  font-size: 1.2rem;
}

.text-thumbnail {
  background-color: var(--light-gray);
  border: 1px solid var(--accent-color);
  color: var(--dark-gray);
  padding: 15px;
  text-align: center;
  font-weight: 500;
  border-radius: 8px;
  margin: 10px 5px;
  width: 30%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.product-image .text-placeholder {
  min-height: 180px;
  padding: 40px 20px;
  font-size: 1rem;
}

/* Product Description styling */
.product-description {
  flex: 1;
  padding: 25px 35px;
  background-color: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-text {
  flex: 1;
}

.product-content {
  display: flex;
  gap: 30px;
  flex-direction: row;
  align-items: flex-start; 
  margin-bottom: 30px;
}


.goal-list {
  margin-bottom: 20px;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.goal-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.goal-icon {
  color: var(--icon-primary-color);
  margin-right: 12px;
  font-size: 1.1rem;
  padding-top: 2px;
  flex-shrink: 0;
}

.goal-icon i {
  filter: drop-shadow(var(--icon-shadow));
}

@media (max-width: 768px) {
  .goal-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .goal-icon {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--vibrant-blue) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}


/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 50px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--light-gray);
}

.footer-column a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: inherit;
  font-size: 1.5rem;
}

.social-links a i {
  transition: var(--icon-transition);
}

.copyright {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-image-slice: 1;
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  z-index: -1;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-image:hover img {
  transform: scale(1.05);
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.contact-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact-card:nth-child(1) {
  border-top-color: var(--primary-color);
}

.contact-card:nth-child(2) {
  border-top-color: var(--accent-color);
}

.contact-card:nth-child(3) {
  border-top-color: var(--teal);
}

.contact-card:nth-child(4) {
  border-top-color: var(--purple);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--icon-primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-icon {
  color: var(--icon-hover-color);
  transform: scale(1.1) rotate(5deg);
}

.contact-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-icon::after {
  opacity: 1;
  transform: scale(1.2);
}

.contact-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-card a {
  color: var(--primary-color);
  transition: var(--transition);
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 25px;
  }
}

/* Carousel Component */
.carousel-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.2s ease-out;
  position: relative;
  padding: 10px;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 40px);
  margin: 0 20px;
  min-width: 280px;
  opacity: 0.7;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: relative;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-card {
  background-color: var(--carousel-bg);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--carousel-card-shadow);
  position: relative;
  transition: var(--carousel-transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.carousel-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--carousel-transition);
}

.carousel-card:hover:before {
  transform: scaleX(1);
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.carousel-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 50%;
}

.carousel-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.carousel-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.carousel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.carousel-card p {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
  opacity: 0.8;
}

.carousel-card .card-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 8px 0;
  color: var(--primary-color);
  box-shadow: none;
}

.carousel-card .card-cta i {
  margin-left: 8px;
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.carousel-card .card-cta:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: none;
  transform: translateY(0);
}

.carousel-card .card-cta:hover i {
  transform: translateX(4px);
}

.carousel-card .card-cta::after {
  display: none;
}

.carousel-nav {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
}

.carousel-button {
  background-color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--carousel-transition);
  color: var(--primary-color);
}

.carousel-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: var(--carousel-transition);
}

.carousel-dot.active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

/* Dark Mode Styles */
.dark-mode .carousel-card {
  background-color: var(--carousel-bg-dark);
  box-shadow: var(--carousel-card-shadow-dark);
}

.dark-mode .carousel-icon {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .carousel-card p {
  color: rgba(255, 255, 255, 0.8);
}

.dark-mode .carousel-button {
  background-color: var(--dark-gray);
  color: var(--white);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animation-complete {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(100% - 40px);
  }
  
  .carousel-nav {
    top: auto;
    bottom: -10px;
    transform: none;
  }
  
  .carousel-dots {
    margin-top: 50px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    height: 0;
    overflow: hidden;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    height: auto;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav li {
    margin: 15px 0;
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .service-content, 
  .service-content.reverse {
    flex-direction: column;
  }
  
  .service-image,
  .service-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .services-grid, 
  .products-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 40px 0;
  }
}

.stats-section {
  background: linear-gradient(135deg, var(--deep-blue), var(--vibrant-blue));
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="8"/></svg>');
  background-size: 150px 150px;
  opacity: 0.2;
}

.stats-section .section-header h2, 
.stats-section .section-header .divider {
  color: var(--white);
  border-color: var(--white);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3rem;
}

/* Stats Section - Updated styling */
.stat-item {
  flex: 0 0 220px;
  text-align: center;
  padding: 2rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent-color);
}

.stat-item:nth-child(1) {
  border-bottom-color: var(--accent-color);
}

.stat-item:nth-child(2) {
  border-bottom-color: var(--teal);
}

.stat-item:nth-child(3) {
  border-bottom-color: var(--teal);
}

.stat-item:nth-child(4) {
  border-bottom-color: var(--purple);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.2);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0; 
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--light-gray);
}


.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--white), var(--teal));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.divider {
  height: 4px;
  width: 60px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
  border-radius: 2px;
}

.why-it-matters {
    background-color: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.why-it-matters h4 {
    color: var(--icon-primary-color);
    margin-top: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.why-it-matters h4:before {
    content: "★";
    margin-right: 8px;
    font-size: 1rem;
    color: var(--icon-primary-color);
}

.why-it-matters p {
    margin-bottom: 0;
    font-weight: 500;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.platform-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.platform-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--neutral-color);
  height: 120px;
  overflow: hidden;
  position: relative;
}

.platform-logo img {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.platform-card:hover .platform-logo img {
  transform: scale(1.1);
}

.platform-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.platform-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.platform-info p {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}




.team-row {
  display: contents;
}

.team-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: var(--light-gray);
  height: 160px;
  overflow: hidden;
}

.team-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-info .position {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.team-info p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.team-info .card-cta {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: auto;
}

.team-info .card-cta i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.team-info .card-cta:hover i {
  transform: translateX(3px);
}




.team-values {
  background-color: var(--light-gray);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.team-values .section-header p {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--deep-blue);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.values-grid.three-columns {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .values-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid.three-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid.three-columns {
    grid-template-columns: 1fr;
  }
}

.value-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid var(--primary-color);
}

.value-item:nth-child(2) {
  border-top-color: var(--accent-color);
}

.value-item:nth-child(3) {
  border-top-color: var(--teal);
}

.value-item:nth-child(4) {
  border-top-color: var(--teal);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
  color: var(--deep-blue);
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.value-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 1px;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--icon-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.value-item h3 {
  color: var(--deep-blue);
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.value-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-icon {
  font-size: 2rem;  
  margin-bottom: 15px;
  color: var(--icon-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 1.5rem; 
  filter: drop-shadow(var(--icon-shadow));
  transition: var(--icon-transition);
}

.contact-icon i {
  font-size: 1.5rem; 
  filter: drop-shadow(var(--icon-shadow));
  transition: var(--icon-transition);
}

.value-item:hover .value-icon i {
  transform: scale(1.1);
  color: var(--icon-hover-color);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-item {
    padding: 20px;
  }
}

.page-banner {
  padding: 100px 0 50px;

}

.page-banner.team-intro {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--vibrant-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-banner.team-intro::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner.team-intro h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3rem;
  text-align: center;
}

.page-banner.team-intro .hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.page-banner.team-intro .section-header {
  margin-bottom: 1.5rem;
}

.page-banner.team-intro .section-header h2 {
  color: var(--white);
  font-size: 2rem;
  text-align: center;
}

.page-banner.team-intro .divider {
  background: linear-gradient(90deg, var(--white), var(--accent-color));
}

.page-banner.team-intro .intro-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  margin-top: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-banner.team-intro .intro-content p {
  color: var(--white);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .page-banner.team-intro {
    padding: 100px 0 50px;
  }
  
  .page-banner.team-intro h1 {
    font-size: 2.5rem;
  }
  
  .page-banner.team-intro .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .page-banner.team-intro .intro-content {
    padding: 25px;
  }
}

.testimonial {
  margin: 40px 0;
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.testimonial blockquote {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  padding: 25px 30px 20px 50px;
  font-style: italic;
  color: var(--deep-blue);
  background-color: rgba(var(--accent-color-rgb, 0, 170, 255), 0.1); 
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-color);
}

.testimonial blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 60px;
  color: var(--icon-primary-color);
  font-family: Georgia, serif;
  opacity: 0.5;
  line-height: 1;
}


.testimonial cite {
  display: block;
  margin-top: 15px;
  padding-top: 10px;
  text-align: right;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  position: relative;
}

.testimonial cite::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-color));
  border-radius: 2px;
}

@media (max-width: 768px) {
  .testimonial {
    max-width: 100%;
  }
  
  .testimonial blockquote {
    padding: 20px 20px 15px 40px;
    font-size: 1rem;
  }
  
  .testimonial blockquote::before {
    font-size: 50px;
    left: 10px;
  }
}

.work-process {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.work-process::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  border-radius: 4px;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  position: relative;
  min-width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--icon-primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--icon-hover-color);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.step-content {
  background: var(--white);
  border-radius: 10px;
  padding: 25px 30px;
  margin-left: 20px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: var(--transition);
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--text-color);
}

.step-content::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .work-process::before {
    left: 30px;
  }
  
  .step-icon {
    min-width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    top: -5px;
    right: -5px;
  }
  
  .step-content {
    padding: 20px;
    margin-left: 15px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-icon {
    margin-bottom: 15px;
  }
  
  .step-content {
    margin-left: 0;
    width: 100%;
  }
  
  .step-content::before {
    display: none;
  }
  
  .work-process::before {
    left: 30px;
    height: calc(100% - 60px);
    top: 45px;
  }
}

.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  border-left: 4px solid var(--primary-color);
}

.faq-item:nth-child(2) {
  border-left-color: var(--accent-color);
}

.faq-item:nth-child(3) {
  border-left-color: var(--teal);
}

.faq-item:nth-child(4) {
  border-left-color: var(--purple);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: rgba(var(--accent-color-rgb), 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  padding-right: 40px;
}

.faq-toggle {
  position: absolute;
  right: 25px;
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background-color: var(--accent-color);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 30px;
  }
  
  .faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
}



.form-success-message {
  padding: 30px;
  background-color: rgba(32, 201, 151, 0.1);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.form-success-message i {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 15px;
}

.form-success-message h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 10px 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb), 0.15);
}

.form-control:focus + label {
  color: var(--accent-color);
  transform: translateY(-2px);
  transition: transform 0.3s ease, color 0.3s ease;
}

