

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;

    background: linear-gradient(to bottom,  #ffffff); /* Adjust colors as needed */
    margin: 10; /* Reset default margin for body element */
    height: 100vh; /* Set the height to fill the viewport */
  
  
}

.country-flag {
  width: 80px;
  height: 55px;
  border-radius: 10px;
  margin: 0 auto 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.country-status {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 15px;
  display: inline-block;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ee3263;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#27253f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ee3263;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background:#27253f;
}

#header .logo {
  
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Custom CSS for adjusting image size */
.logo img {
  max-height: 200px;
  width: 100px; /* Set your desired width */
  height: 100; /* Maintain aspect ratio */
}


#header .logo a {
  color:#fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ee3263;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ee3263;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ee3263;
}

/* Dropdown styles removed - no longer used */

/* All dropdown styles removed - no longer used */

/* Dropdown media queries removed - no longer used */

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  
  .navbar .logo {
    max-width: 200px;
  }
  
  .navbar .logo img {
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .navbar .logo {
    max-width: 180px;
  }
  
  .navbar .logo img {
    max-height: 35px;
  }
  
  .getstarted {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .navbar .logo {
    max-width: 160px;
  }
  
  .navbar .logo img {
    max-height: 30px;
  }
  
  .getstarted {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(39,37,63);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color:#ee3263;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ee3263;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ee3263;
}

/* Mobile dropdown styles removed - no longer used */

/*--------------------------------------------------------------
# Enhanced Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 30px 0;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(238, 50, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

#hero .container {
  padding-top: 0;
  position: relative;
  z-index: 2;
}


.hero-title {
  margin: 20px 0 20px 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  color: #ee3263;
  position: relative;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-top: 5px;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ee3263, #ff6b9d);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(238, 50, 99, 0.3);
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 520px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  color: #4ade80;
  font-size: 16px;
  font-weight: bold;
}

/* Right side hero features */
.hero-features-right {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.feature-item-right:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item-right i {
  color: #4ade80;
  font-size: 12px;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(238, 50, 99, 0.3);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(238, 50, 99, 0.4);
  color: #fff;
}

.btn-watch-video {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-watch-video:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-watch-video i {
  font-size: 20px;
}

.hero-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ee3263;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Visual Section */
.hero-visual {
  position: relative;
}

.hero-product-showcase {
  position: relative;
  height: 380px;
}

.product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-slide.active {
  opacity: 1;
}

.product-slide img {
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.product-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.product-info h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.product-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.product-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ee3263;
  transform: scale(1.2);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: #ee3263;
  font-size: 18px;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  left: -10%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    min-height: 100vh;
    text-align: center;
    padding: 60px 0 40px 0;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-features {
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .feature-item {
    font-size: 15px;
    padding: 10px 16px;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-stats {
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
  }

  .hero-product-showcase {
    height: 350px;
    margin-top: 30px;
  }

  .product-slide img {
    max-height: 220px;
  }

  .floating-card {
    display: none;
  }

  .product-indicators {
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 50px 0 30px 0;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .feature-item {
    font-size: 14px;
    padding: 8px 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  .btn-get-started,
  .btn-watch-video {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    gap: 15px;
    margin-top: 10px;
  }

  .hero-stats .stat-number {
    font-size: 22px;
  }

  .hero-stats .stat-label {
    font-size: 11px;
  }

  .hero-product-showcase {
    height: 280px;
    margin-top: 25px;
  }

  .product-slide img {
    max-height: 180px;
  }

  .product-info {
    padding: 8px 12px;
  }

  .product-info h4 {
    font-size: 14px;
  }

  .product-info p {
    font-size: 11px;
  }

  .product-image-carousel {
    height: 280px;
  }

  .product-image img {
    max-height: 180px;
  }

  .product-overlay {
    padding: 15px 12px 12px;
  }

  .product-overlay h5 {
    font-size: 14px;
  }

  .product-overlay p {
    font-size: 11px;
  }

  .nav-btn {
    width: 32px;
    height: 32px;
  }

  .nav-btn i {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  #hero {
    padding: 40px 0 25px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 15px;
  }


  .hero-features {
    gap: 10px;
    margin-bottom: 20px;
  }

  .feature-item {
    font-size: 13px;
    padding: 6px 12px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 20px;
  }

  .btn-get-started,
  .btn-watch-video {
    font-size: 13px;
    padding: 10px 20px;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 8px;
  }

  .hero-stats .stat-number {
    font-size: 18px;
  }

  .hero-stats .stat-label {
    font-size: 10px;
  }

  .hero-product-showcase {
    height: 220px;
    margin-top: 20px;
  }

  .product-slide img {
    max-height: 130px;
  }

  .product-image-carousel {
    height: 220px;
  }

  .product-image img {
    max-height: 130px;
  }

  .product-overlay {
    padding: 12px 8px 8px;
  }

  .product-overlay h5 {
    font-size: 12px;
  }

  .product-overlay p {
    font-size: 10px;
  }

  .nav-btn {
    width: 28px;
    height: 28px;
  }

  .nav-btn i {
    font-size: 12px;
  }

  .product-badge .badge {
    font-size: 9px;
    padding: 4px 8px;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider > div {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.hero-slider > div:first-child {
  display: block;
}
/* Home*/


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #27253f;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 50px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  background:#ee3263;
  bottom: 0;
  left: calc(50% - 17.5px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Certifications
--------------------------------------------------------------*/
.certifications {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certifications-carousel-container {
  margin-bottom: 60px;
  position: relative;
}

.certifications-carousel {
  padding: 20px 0 60px 0;
  overflow: hidden;
}

.certifications-carousel .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.certification-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ee3263, #00aaff);
}

.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certification-image {
  margin-bottom: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-background {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(238, 50, 99, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.logo-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 15px;
  pointer-events: none;
}

.certification-card:hover .logo-background {
  border-color: rgba(238, 50, 99, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certification-image img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  filter: contrast(1.3) brightness(0.8) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.certification-card:hover .certification-image img {
  transform: scale(1.05);
}

.certification-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certification-info h4 {
  color: #27253f;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.certification-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.certification-badge {
  margin-top: auto;
}

.certification-badge .badge-text {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certifications-footer {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.certifications-footer h3 {
  color: #27253f;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.certifications-footer p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.trust-indicator {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 20px;
  padding: 30px 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(238, 50, 99, 0.3);
}

.trust-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.trust-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Swiper Navigation Styles */
.certifications-carousel .swiper-button-next,
.certifications-carousel .swiper-button-prev {
  color: #ee3263;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.certifications-carousel .swiper-button-next:hover,
.certifications-carousel .swiper-button-prev:hover {
  background: #ee3263;
  color: #fff;
  transform: scale(1.1);
}

.certifications-carousel .swiper-button-next:after,
.certifications-carousel .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.certifications-carousel .swiper-pagination {
  bottom: 0;
}

.certifications-carousel .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.certifications-carousel .swiper-pagination-bullet-active {
  background: #ee3263;
  transform: scale(1.2);
}

/* Responsive Design for Certifications */
@media (max-width: 991px) {
  .certifications {
    padding: 60px 0;
  }
  
  .certifications-carousel {
    padding: 20px 0 50px 0;
  }
  
  .certification-card {
    padding: 25px 20px;
  }
  
  .certifications-footer {
    padding: 30px;
    text-align: center;
  }
  
  .certifications-footer h3 {
    font-size: 24px;
  }
  
  .trust-indicator {
    margin-top: 30px;
  }
  
  .certifications-carousel .swiper-button-next,
  .certifications-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .certifications-carousel .swiper-button-next:after,
  .certifications-carousel .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .certifications-carousel {
    padding: 20px 0 40px 0;
  }
  
  .certification-card {
    padding: 20px 15px;
  }
  
  .certification-image {
    height: 80px;
    margin-bottom: 15px;
  }
  
  .logo-background {
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .certification-image img {
    max-height: 55px;
    filter: contrast(1.4) brightness(0.7) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  }
  
  .certification-info h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .certification-info p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .certifications-footer {
    padding: 25px 20px;
  }
  
  .certifications-footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .certifications-footer p {
    font-size: 15px;
  }
  
  .trust-number {
    font-size: 36px;
  }
  
  .trust-label {
    font-size: 14px;
  }
  
  .certifications-carousel .swiper-button-next,
  .certifications-carousel .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .certifications-carousel .swiper-button-next:after,
  .certifications-carousel .swiper-button-prev:after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .certifications {
    padding: 40px 0;
  }
  
  .certifications-carousel {
    padding: 15px 0 35px 0;
  }
  
  .certification-card {
    padding: 15px 12px;
  }
  
  .certification-image {
    height: 70px;
    margin-bottom: 12px;
  }
  
  .logo-background {
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .certification-image img {
    max-height: 50px;
    filter: contrast(1.5) brightness(0.6) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  }
  
  .certification-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .certification-info p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .certification-badge .badge-text {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .certifications-footer {
    padding: 20px 15px;
  }
  
  .certifications-footer h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .certifications-footer p {
    font-size: 14px;
  }
  
  .trust-indicator {
    padding: 20px 15px;
  }
  
  .trust-number {
    font-size: 32px;
  }
  
  .trust-label {
    font-size: 13px;
  }
  
  .certifications-carousel .swiper-button-next,
  .certifications-carousel .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  
  .certifications-carousel .swiper-button-next:after,
  .certifications-carousel .swiper-button-prev:after {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Products Overview
--------------------------------------------------------------*/
.products-overview {
  padding: 80px 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
  visibility: visible;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(238, 50, 99, 0.9) 0%, rgba(0, 170, 255, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.product-badges .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.product-content {
  padding: 30px;
  position: relative;
  z-index: 5;
  background: #fff;
  flex: 1;
}

.product-content h3 {
  color: #27253f;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.product-features .feature {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-view-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(238, 50, 99, 0.3);
  position: relative;
  z-index: 10;
  pointer-events: auto;
  border: none;
  outline: none;
}

.btn-view-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 50, 99, 0.4);
  color: white !important;
  text-decoration: none;
}

.btn-view-detail::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-view-detail:hover::after {
  transform: translateX(3px);
}

.products-stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.products-stats .stat-item {
  text-align: center;
  padding: 20px;
}

.products-stats .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 24px;
}

.products-stats .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ee3263;
  margin-bottom: 5px;
}

.products-stats .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Products */
@media (max-width: 991px) {
  .products-overview {
    padding: 60px 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .product-image {
    height: 250px;
  }
  
  .product-content {
    padding: 25px;
  }
  
  .product-content h3 {
    font-size: 22px;
  }
  
  .products-stats {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .product-image {
    height: 220px;
  }
  
  .product-content {
    padding: 20px;
  }
  
  .product-content h3 {
    font-size: 20px;
  }
  
  .product-content p {
    font-size: 14px;
  }
  
  .product-features .feature {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .btn-view-detail {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .products-stats {
    padding: 25px 20px;
  }
  
  .products-stats .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .products-stats .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .products-overview {
    padding: 40px 0;
  }
  
  .products-grid {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-content {
    padding: 15px;
  }
  
  .product-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .product-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .product-features {
    gap: 6px;
    margin-bottom: 20px;
  }
  
  .product-features .feature {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .btn-view-detail {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .products-stats {
    padding: 20px 15px;
  }
  
  .products-stats .stat-item {
    padding: 15px;
  }
  
  .products-stats .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .products-stats .stat-number {
    font-size: 24px;
  }
  
  .products-stats .stat-label {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Enhanced Features Section
--------------------------------------------------------------*/
.features-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-content {
  margin-top: 30px;
}

.features-visual {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healthcare-illustration {
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.illustration-header {
  text-align: center;
  margin-bottom: 25px;
}

.illustration-header h3 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.illustration-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.ecosystem-flow {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.flow-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(238, 50, 99, 0.3);
}

.step-content h5 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-align: center;
  margin: 5px 0;
}

.key-benefits {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.benefit-item i {
  color: #ee3263;
  font-size: 24px;
  margin-bottom: 8px;
}

.benefit-item span {
  color: white;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(238, 50, 99, 0.3);
}

.feature-content h4 {
  color: #27253f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for Features */
@media (max-width: 991px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-visual {
    margin-bottom: 40px;
  }
  
  .healthcare-illustration {
    padding: 25px;
  }
  
  .illustration-header h3 {
    font-size: 20px;
  }
  
  .illustration-header p {
    font-size: 15px;
  }
  
  .flow-step {
    padding: 12px;
    gap: 12px;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .step-content h5 {
    font-size: 15px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  .benefit-item i {
    font-size: 20px;
  }
  
  .benefit-item span {
    font-size: 11px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .feature-content h4 {
    font-size: 16px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .healthcare-illustration {
    padding: 20px;
  }
  
  .illustration-header h3 {
    font-size: 18px;
  }
  
  .illustration-header p {
    font-size: 14px;
  }
  
  .ecosystem-flow {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .flow-step {
    padding: 12px;
    gap: 12px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .step-content h5 {
    font-size: 14px;
  }
  
  .step-content p {
    font-size: 12px;
  }
  
  .benefit-item i {
    font-size: 18px;
  }
  
  .benefit-item span {
    font-size: 10px;
  }
  
  .feature-card {
    padding: 18px 15px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .feature-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .features-section {
    padding: 40px 0;
  }
  
  .features-visual {
    margin-bottom: 30px;
  }
  
  .healthcare-illustration {
    padding: 18px;
  }
  
  .illustration-header h3 {
    font-size: 16px;
  }
  
  .illustration-header p {
    font-size: 13px;
  }
  
  .ecosystem-flow {
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .flow-step {
    padding: 10px;
    gap: 10px;
  }
  
  .step-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .step-content h5 {
    font-size: 13px;
  }
  
  .step-content p {
    font-size: 11px;
  }
  
  .benefit-item i {
    font-size: 16px;
  }
  
  .benefit-item span {
    font-size: 9px;
  }
  
  .feature-card {
    padding: 15px 12px;
    gap: 10px;
  }
  
  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .feature-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .feature-content p {
    font-size: 11px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .section-title p {
    font-size: 16px;
  }
  
  /* Product Variants Responsive */
  .variants-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .variant-card {
    padding: 25px 20px;
  }
  
  .variant-card.featured {
    transform: none;
  }
  
  .variant-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .variant-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .variant-header h3 {
    font-size: 22px;
  }
  
  .variant-subtitle {
    font-size: 13px;
  }
  
  
  .feature-category h4 {
    font-size: 15px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .feature-item {
    font-size: 12px;
  }
  
  .feature-highlight {
    padding: 10px;
  }
  
  .feature-highlight span {
    font-size: 13px;
  }
  
  .parameter-count .count {
    font-size: 24px;
  }
  
  .variants-comparison h3 {
    font-size: 24px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-item {
    padding: 25px 15px;
  }
  
  /* Use Cases Responsive */
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .use-case-card {
    padding: 25px 20px;
  }
  
  .use-case-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .use-case-card h3 {
    font-size: 18px;
    min-height: 45px;
  }
  
  .use-case-card p {
    font-size: 13px;
  }
  
  .feature-tag {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .use-cases-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 14px;
  }
  
  /* Use Cases Page Responsive */
  .use-case-section {
    padding: 60px 0;
  }
  
  .use-case-section h2 {
    font-size: 24px;
  }
  
  .use-case-section p {
    font-size: 14px;
  }
  
  .benefit-item {
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .benefit-item i {
    font-size: 16px;
  }
  
  .benefit-item span {
    font-size: 13px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h3 {
    font-size: 22px;
  }
  
  .cta-section p {
    font-size: 14px;
  }
  
  /* Detailed Use Cases Responsive */
  .detailed-use-case {
    margin-bottom: 50px;
    padding: 30px 0;
  }
  
  .detailed-use-case:nth-child(even) {
    margin: 0 0 50px 0;
    padding: 30px 20px;
  }
  
  .use-case-content h3 {
    font-size: 28px;
  }
  
  .use-case-content .lead {
    font-size: 18px;
  }
  
  .use-case-content p {
    font-size: 14px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
  
  .benefit-item {
    padding: 18px;
    margin-bottom: 15px;
    min-height: 70px;
  }
  
  .benefit-item h5 {
    font-size: 14px;
  }
  
  .benefit-item p {
    font-size: 13px;
  }
  
  .overlay-content h4 {
    font-size: 36px;
  }
  
  .overlay-content p {
    font-size: 14px;
  }
  
  .detailed-use-cases-cta {
    padding: 40px 20px;
  }
  
  .detailed-use-cases-cta h3 {
    font-size: 24px;
  }
  
  .detailed-use-cases-cta p {
    font-size: 16px;
  }
  
  /* News & Media Responsive */
  .media-coverage-item {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }
  
  .media-logo {
    width: 60px;
    height: 60px;
    align-self: center;
  }
  
  .media-content h5 {
    font-size: 18px;
    text-align: center;
  }
  
  .media-source {
    text-align: center;
  }
  
  .media-excerpt {
    font-size: 14px;
    text-align: center;
  }
  
  .btn-read-article {
    width: 100%;
    justify-content: center;
  }
}

/* Right side hero features responsive */
@media (max-width: 768px) {
  .hero-features-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
    justify-content: center;
  }
  
  .feature-item-right {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .feature-item-right i {
    font-size: 11px;
  }
}

/* Enhanced responsive design for all screen sizes */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-product-showcase {
    height: 350px;
  }
  
  .floating-card {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 992px) {
  .hero-visual {
    margin-top: 40px;
  }
  
  .hero-product-showcase {
    height: 320px;
  }
  
  .floating-elements {
    display: none;
  }
  
  .hero-features-right {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-product-showcase {
    height: 280px;
  }
  
  .product-carousel {
    height: 200px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-info h4 {
    font-size: 16px;
  }
  
  .product-info p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-product-showcase {
    height: 250px;
  }
  
  .product-carousel {
    height: 180px;
  }
  
  .hero-features-right {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .feature-item-right {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* Smooth scrolling for product section links */
html {
  scroll-behavior: smooth;
}

/* Product section anchor offset for fixed header */
.product-section {
  scroll-margin-top: 80px;
}

/* Enhanced responsive design for products section */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .product-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-overlay {
    opacity: 0.9;
  }
  
  .product-badges {
    flex-direction: column;
    gap: 5px;
  }
  
  .badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    gap: 15px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-content {
    padding: 12px;
  }
  
  .product-content h3 {
    font-size: 16px;
  }
  
  .product-content p {
    font-size: 13px;
  }
  
  .product-features {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .feature {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* General responsive improvements */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .section-header p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .col-lg-6,
  .col-lg-4,
  .col-lg-3 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-header p {
    font-size: 13px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .section-header p {
    font-size: 12px;
  }
}

/* Enhanced footer responsiveness */
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-links li {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Responsive utilities and fixes */
@media (max-width: 991px) {
  .d-lg-none {
    display: none !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  .text-lg-center {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  
  .d-md-block {
    display: block !important;
  }
  
  .text-md-center {
    text-align: center !important;
  }
  
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  
  .mt-md-3 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  
  .d-sm-block {
    display: block !important;
  }
  
  .text-sm-center {
    text-align: center !important;
  }
  
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .btn,
  .btn-view-detail,
  .getstarted,
  .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-item,
  .feature-item-right {
    min-height: 44px;
  }
}

/* Additional responsive improvements */
@media (max-width: 1400px) {
  .hero-product-showcase {
    height: 400px;
  }
}

@media (max-width: 1200px) {
  .hero-product-showcase {
    height: 380px;
  }
  
  .floating-card {
    font-size: 11px;
    padding: 6px 10px;
  }
}

@media (max-width: 992px) {
  .hero-product-showcase {
    height: 350px;
  }
  
  .product-carousel {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .hero-product-showcase {
    height: 300px;
  }
  
  .product-carousel {
    height: 200px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-info h4 {
    font-size: 14px;
  }
  
  .product-info p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .hero-product-showcase {
    height: 250px;
  }
  
  .product-carousel {
    height: 180px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-info h4 {
    font-size: 13px;
  }
  
  .product-info p {
    font-size: 10px;
  }
}

/* Ensure proper spacing on all devices */
@media (max-width: 480px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .section-header {
    padding: 0 10px;
  }
  
  
  .hero-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #27253f;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #27253f;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #27253f;
}

.about .content .btn-learn-more:hover {
  background: #27253f;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# feature -grid
--------------------------------------------------------------*/
/* Define the number of columns and rows for the grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns of equal width */
  grid-template-rows: repeat(2, 1fr); /* 2 rows of equal height */
  gap: 10px; /* 10px gap between grid items */
}

/* Style each feature item */
.feature {
  display: flex; /* Use flexbox to align items */
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  background-color: #f0f0f0; /* Light gray background */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Some padding */
}

/* Style the image and paragraph elements */
.feature img {
  width: 80px; /* Set image width */
  margin-bottom: 10px; /* Add some space below the image */
}

.feature p {
  font-family: Arial, sans-serif; /* Set font family */
  font-size: 14px; /* Set font size */
  color: #333; /* Set text color */
  text-align: center; /* Center text */
}


  /* Add hover effect */
.feature-grid:hover .feature {
  opacity: 0.5; /* Make the boxes semi-transparent */
}

.feature-grid:hover .feature:hover {
  opacity: 1; /* Make the hovered box fully opaque */
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Product Variants
--------------------------------------------------------------*/
.product-variants {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.variants-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.variant-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.variant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.variant-card.featured {
  border: 3px solid #ee3263;
  transform: scale(1.05);
}

.variant-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.variant-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 15px rgba(238, 50, 99, 0.3);
}

.variant-card.standard .variant-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

.variant-card.advanced-plus .variant-icon {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  box-shadow: 0 6px 15px rgba(111, 66, 193, 0.3);
}

.variant-header h3 {
  color: #27253f;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.variant-subtitle {
  color: #666;
  font-size: 14px;
  margin: 0 0 15px 0;
}


.variant-features {
  margin-bottom: 30px;
}

.feature-category {
  margin-bottom: 20px;
}

.feature-category h4 {
  color: #27253f;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-category h4 i {
  color: #ee3263;
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #555;
  font-size: 13px;
  line-height: 1.3;
}

.feature-item i {
  color: #28a745;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-highlight {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #ee3263;
}

.feature-highlight i {
  color: #28a745;
  font-size: 16px;
  font-weight: bold;
}

.feature-highlight span {
  color: #27253f;
  font-weight: 600;
  font-size: 14px;
}

.variant-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.parameter-count {
  text-align: center;
}

.parameter-count .count {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ee3263;
  line-height: 1;
}

.parameter-count .label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-variant {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-variant:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 50, 99, 0.3);
  color: white;
  text-decoration: none;
}

.variants-comparison {
  margin-top: 60px;
  text-align: center;
}

.variants-comparison h3 {
  color: #27253f;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.comparison-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.comparison-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.comparison-item h4 {
  color: #27253f;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.comparison-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.parameter-badge {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Use Cases
--------------------------------------------------------------*/
.use-cases {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.use-case-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(238, 50, 99, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.use-case-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(238, 50, 99, 0.3);
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(238, 50, 99, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.use-case-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 50, 99, 0.2), rgba(255, 107, 157, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.use-case-card:hover .use-case-icon {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(238, 50, 99, 0.4);
}

.use-case-card:hover .use-case-icon::after {
  opacity: 1;
}

.use-case-card h3 {
  color: #27253f;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.use-case-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
  min-height: 60px;
  align-items: flex-start;
}

.feature-tag {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #555;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.use-case-card:hover .feature-tag {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 50, 99, 0.3);
}

.btn-use-case {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-width: 140px;
  box-shadow: 0 6px 20px rgba(238, 50, 99, 0.3);
}

.btn-use-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-use-case:hover::before {
  left: 100%;
}

.btn-use-case:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(238, 50, 99, 0.4);
  color: white;
  text-decoration: none;
}

.use-cases-cta {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(135deg, #27253f, #00aaff);
  border-radius: 20px;
  padding: 50px 30px;
  color: white;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-cta {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 50, 99, 0.4);
  color: white;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Detailed Use Cases
--------------------------------------------------------------*/
.detailed-use-cases {
  padding: 80px 0;
  background: #fff;
}

.detailed-use-case {
  margin-bottom: 80px;
  padding: 50px 0;
}

.detailed-use-case:nth-child(even) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  margin: 0 0 80px 0;
  padding: 50px 30px;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.use-case-badge i {
  font-size: 14px;
}

.use-case-content h3 {
  color: #27253f;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.use-case-content .lead {
  color: #ee3263;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.use-case-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.use-case-content .lead {
  color: #27253f;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  min-height: 80px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  color: #28a745;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h5 {
  color: #27253f;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.use-case-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.use-case-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.use-case-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(238, 50, 99, 0.8), rgba(255, 107, 157, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.use-case-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content h4 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.detailed-use-cases-cta {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(135deg, #27253f, #00aaff);
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
}

.detailed-use-cases-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.detailed-use-cases-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Use Cases Page
--------------------------------------------------------------*/
.use-case-section {
  padding: 80px 0;
}

.use-case-section:nth-child(even) {
  background: #f8f9fa;
}

.use-case-section h2 {
  color: #27253f;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.use-case-section p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefits-list {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 10px 0;
}

.benefit-item i {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item span {
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  color: white;
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
}

.cta-btn {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 50, 99, 0.4);
  color: white;
  text-decoration: none;
}

/* Portfolio styles removed - no longer used */

/* Portfolio details styles removed - no longer used */

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #27253f;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #27253f;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #ee3263;
  border-bottom: 3px solid #ee3263;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #ee3263;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #ee3263;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #27253f;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #ee3263;
  border-bottom: 3px solid #ee3263;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #27253f;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #27253f;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #27253f;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ee3263;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #27253f;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Enhanced Product Styles
--------------------------------------------------------------*/
.product-highlights {
  margin: 20px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px 0;
}

.highlight-item i {
  color: #ee3263;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-item span {
  line-height: 1.6;
}

.product-actions {
  margin-top: 30px;
}

.product-actions .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.product-showcase {
  position: relative;
  text-align: center;
}

.product-image-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image.active {
  opacity: 1;
}

.product-image img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
  text-align: center;
}

.product-overlay h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.product-overlay p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.product-badge .badge {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.product-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: #ee3263;
  color: white;
  transform: scale(1.1);
}

.nav-btn i {
  font-size: 18px;
}

.stats-row {
  margin-top: 50px;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 48px;
  color: #ee3263;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #27253f;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/*--------------------------------------------------------------
# News & Media Styles
--------------------------------------------------------------*/
.news-media {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Media Coverage Section */
.media-coverage-section {
  margin-bottom: 60px;
}

.media-coverage-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  height: 100%;
}

.media-coverage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.media-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-content h5 {
  color: #27253f;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.media-content h5 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-content h5 a:hover {
  color: #ee3263;
}

.media-source {
  color: #ee3263;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.media-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.btn-read-article {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-read-article:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 50, 99, 0.3);
  color: white;
  text-decoration: none;
}

/* Media Contact Section */
.media-contact-section {
  margin-top: 40px;
}

.media-contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #ee3263;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(238, 50, 99, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.media-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ee3263, #ff6b9d, #00aaff, #ee3263);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.media-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(238, 50, 99, 0.25);
  border-color: #ff6b9d;
}

.contact-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 40px;
  box-shadow: 0 10px 25px rgba(238, 50, 99, 0.3);
  transition: all 0.3s ease;
}

.media-contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(238, 50, 99, 0.4);
}

.media-contact-card h4 {
  color: #27253f;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info p {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 500;
}

.contact-info i {
  color: #ee3263;
  font-size: 18px;
  background: rgba(238, 50, 99, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-contact-us {
  background: linear-gradient(135deg, #27253f, #00aaff);
  color: white;
  padding: 18px 35px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  box-shadow: 0 8px 20px rgba(42, 42, 63, 0.3);
  border: 2px solid transparent;
}

.btn-contact-us:hover {
  background: linear-gradient(135deg, #1a1a2e, #0088cc);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42, 42, 63, 0.4);
  color: white;
  text-decoration: none;
  border-color: #00aaff;
}


/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.modern-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
  opacity: 0.6;
}

.footer-main {
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(238, 50, 99, 0.3);
}

.logo-text h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.logo-text p {
  color: #ee3263;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ee3263, #ff6b9d);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ee3263;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ee3263;
  padding-left: 15px;
}

.footer-links a:hover::before {
  width: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  opacity: 0;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.social-link.instagram::before {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-link.facebook::before {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.email::before {
  background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.social-link.phone::before {
  background: linear-gradient(135deg, #34a853, #00aaff);
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item i {
  font-size: 20px;
  color: #ee3263;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ee3263;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.copyright strong {
  color: #ee3263;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ee3263;
}

.designer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.designer a {
  color: #ee3263;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.designer a:hover {
  color: #ff6b9d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px 0;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo .logo-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .logo-text h3 {
    font-size: 20px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .contact-item {
    padding: 12px;
  }
  
  .contact-item i {
    font-size: 18px;
    margin-right: 12px;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 50px 0 25px 0;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero {
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  padding: 120px 0 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-info-cards {
  background: #f8f9fa;
  padding: 80px 0;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ee3263;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(238, 50, 99, 0.3);
}

.contact-card h4 {
  color: #27253f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-card a {
  color: #ee3263;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: #d62a5a;
  text-decoration: none;
}

.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-form-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  color: #27253f;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  border-color: #ee3263;
  box-shadow: 0 0 0 0.2rem rgba(238, 50, 99, 0.25);
  outline: none;
}

.btn-submit {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(238, 50, 99, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(238, 50, 99, 0.4);
  color: white;
}

.map-section {
  background: #27253f;
  padding: 60px 0;
  color: white;
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  font-weight: 500;
}

.office-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
}

.office-info h4 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.office-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.office-info i {
  color: #ee3263;
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 36px;
  }
  
  .contact-hero p {
    font-size: 18px;
  }
  
  .contact-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .contact-form-card {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Enhanced Gallery Styles
--------------------------------------------------------------*/

/* Gallery Layout Improvements */
/* Portfolio container and item styles removed */

/* Portfolio image styles removed */

/* Portfolio/Gallery Styles */
.portfolio {
  padding: 60px 0;
}

.portfolio .section-title {
  text-align: center;
  padding-bottom: 30px;
}

.portfolio .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c3e50;
}

.portfolio .section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.portfolio .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ee3263;
  bottom: 0;
  left: calc(50% - 20px);
}

.portfolio .section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: #6c757d;
}

/* Portfolio Filters */
#portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

#portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  color: #fff;
  background: #ee3263;
}

/* 3-Column Grid Portfolio Container */
.portfolio-container {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  width: 100%;
  background: #fff;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  height: 280px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(238, 50, 99, 0.9), rgba(255, 87, 51, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 12px 12px 0 0;
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.portfolio-info p {
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 20px;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio-info a {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
  transition: all 0.3s ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-info a:hover {
  background: #fff;
  color: #ee3263;
  transform: scale(1.1);
  border-color: #fff;
}

/* Portfolio Lightbox */
.portfolio-lightbox {
  position: relative;
  display: block;
}

/* Responsive 3-Column Grid Portfolio */
@media (max-width: 1200px) {
  .portfolio-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .portfolio-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .portfolio .section-title h2 {
    font-size: 28px;
  }
  
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .portfolio-item {
    border-radius: 10px;
  }
  
  .portfolio-img {
    height: 220px;
    border-radius: 10px 10px 0 0;
  }
  
  .portfolio-img img {
    border-radius: 10px 10px 0 0;
  }
  
  .portfolio-info {
    border-radius: 10px 10px 0 0;
  }
  
  .portfolio-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .portfolio-info p {
    font-size: 12px;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  
  .portfolio-info a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .portfolio {
    padding: 40px 0;
  }
  
  .portfolio .section-title h2 {
    font-size: 24px;
  }
  
  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .portfolio-item {
    border-radius: 8px;
  }
  
  .portfolio-img {
    height: 200px;
    border-radius: 8px 8px 0 0;
  }
  
  .portfolio-img img {
    border-radius: 8px 8px 0 0;
  }
  
  .portfolio-info {
    border-radius: 8px 8px 0 0;
  }
  
  #portfolio-flters li {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.gallery-stats {
  background: #f8f9fa;
  padding: 40px 0;
  border-radius: 10px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #ee3263;
  margin-bottom: 10px;
  display: block;
}

.stat-item .stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Testimonials Styles
--------------------------------------------------------------*/
/* Testimonials styles removed - no longer used */

.swiper-pagination {
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: #ee3263;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.case-studies {
  margin-top: 60px;
}

.case-studies h3 {
  color: #27253f;
  font-weight: 600;
  margin-bottom: 40px;
}

.case-study-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
}

.case-study-icon {
  font-size: 48px;
  color: #ee3263;
  margin-bottom: 20px;
}

.case-study-card h5 {
  color: #27253f;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.case-study-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-study-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.case-study-stats .stat {
  background: #ee3263;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Old footer styles removed to prevent conflicts with modern footer */

/* All old footer styles removed to prevent conflicts */

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  padding: 120px 0 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grain)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.stats-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ee3263;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-section {
  padding: 80px 0;
  background: white;
}

.mission-card {
  background: linear-gradient(135deg, #27253f 0%, #1a1a2e 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ee3263, #00aaff);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  color: white;
}

.leadership-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leader-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #ee3263;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-name {
  font-size: 24px;
  font-weight: 700;
  color: #27253f;
  margin-bottom: 5px;
}

.leader-title {
  font-size: 16px;
  color: #ee3263;
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.partners-section {
  padding: 80px 0;
  background: white;
}

.partner-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.partner-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-name {
  font-size: 18px;
  font-weight: 600;
  color: #27253f;
  margin-bottom: 10px;
}

.partner-type {
  font-size: 14px;
  color: #666;
}

.countries-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #27253f 0%, #1a1a2e 100%);
  color: white;
}

.country-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Make all country cards equal size and vertically centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.country-flag {
  width: 80px;
  height: 55px;
  border-radius: 10px;
  margin: 0 auto 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.country-status {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 15px;
  display: inline-block;
}

.status-active {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
}

.status-expanding {
  background: linear-gradient(135deg, #00aaff, #66ccff);
  color: white;
}

/* New 'present' status to replace 'expanding' when shown */
.status-present {
  background: linear-gradient(135deg, #00aaff, #66ccff);
  color: white;
}

.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: white;
}

.value-title {
  font-size: 22px;
  font-weight: 700;
  color: #27253f;
  margin-bottom: 15px;
}

.value-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ee3263 0%, #ff6b9d 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-cta {
  background: white;
  color: #ee3263;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 10px;
}

.btn-cta:hover {
  background: #27253f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 36px;
  }
  
  .about-hero p {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .leader-image {
    width: 120px;
    height: 120px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Branches & Partners Section
--------------------------------------------------------------*/
.branches-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.branches-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="branches-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,170,255,0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(238,50,99,0.1)"/><circle cx="40" cy="40" r="0.5" fill="rgba(0,170,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23branches-pattern)"/></svg>');
  opacity: 0.3;
}

.branches-section .section-header h2 {
  color: #27253f;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.branches-section .section-header p {
  color: #666;
  font-size: 18px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.branches-carousel {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.branch-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ee3263, #00aaff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.branch-card:hover::before {
  transform: scaleX(1);
}

.branch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.branch-card.active-branch {
  background: linear-gradient(135deg, #27253f 0%, #1a1a2e 100%);
  color: white;
}

.branch-card.active-branch::before {
  background: linear-gradient(135deg, #ee3263, #00aaff);
  transform: scaleX(1);
}

.flag-container {
  width: 80px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.branch-card:hover .flag-container {
  transform: scale(1.1);
}

.country-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #27253f;
}

.active-branch h3 {
  color: white;
}

.branch-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.active-branch p {
  color: rgba(255, 255, 255, 0.8);
}

.branch-status {
  margin-bottom: 15px;
}

.status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
}

.status-badge.coming-soon {
  background: linear-gradient(135deg, #00aaff, #66ccff);
  color: white;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.branch-link:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 50, 99, 0.3);
  color: white;
  text-decoration: none;
}

.branches-info {
  position: relative;
  z-index: 2;
}

.branches-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.expansion-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  box-shadow: 0 0 0 4px rgba(238, 50, 99, 0.2);
}

/* Swiper Customization for Branches */
.branchesSwiper .swiper-button-next,
.branchesSwiper .swiper-button-prev {
  color: #ee3263;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.branchesSwiper .swiper-button-next:hover,
.branchesSwiper .swiper-button-prev:hover {
  background: #ee3263;
  color: white;
  transform: scale(1.1);
}

.branchesSwiper .swiper-button-next:after,
.branchesSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.branchesSwiper .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.branchesSwiper .swiper-pagination-bullet-active {
  background: #ee3263;
  transform: scale(1.2);
}

/* Responsive Design for Branches */
@media (max-width: 768px) {
  .branches-section {
    padding: 60px 0;
  }
  
  .branches-section .section-header h2 {
    font-size: 32px;
  }
  
  .branch-card {
    height: 250px;
    padding: 25px 15px;
  }
  
  .flag-container {
    width: 60px;
    height: 45px;
  }
  
  .branch-card h3 {
    font-size: 20px;
  }
  
  .expansion-timeline {
    gap: 20px;
  }
  
  .timeline-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .branches-section .section-header h2 {
    font-size: 28px;
  }
  
  .branch-card {
    height: 220px;
    padding: 20px 15px;
  }
  
  .expansion-timeline {
    flex-direction: column;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Responsive Design Improvements
--------------------------------------------------------------*/

/* Mobile and Tablet Responsive Styles */
@media (max-width: 991px) {
  .featured-news {
    flex-direction: column;
  }
  
  .featured-news .news-image {
    flex: none;
  }
  
  .featured-news .news-content {
    padding: 20px;
  }
  
  .news-grid .col-md-6 {
    margin-bottom: 20px;
  }
  
  .media-sidebar {
    margin-top: 40px;
  }
  
  /* Testimonials responsive styles removed */
  
  .case-study-stats {
    justify-content: center;
  }
  
  .stats-row .col-lg-3 {
    margin-bottom: 20px;
  }
  
  .product-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .news-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .media-item {
    flex-direction: column;
    text-align: center;
  }
  
  .media-logo {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .case-study-stats .stat {
    margin-bottom: 10px;
  }
  
  .gallery-stats {
    padding: 30px 0;
  }
  
  .stat-item .stat-number {
    font-size: 36px;
  }
  
  /* More testimonials responsive styles removed */
  
  .case-study-card {
    padding: 25px 20px;
  }
  
  .news-content {
    padding: 20px;
  }
  
  .news-content h4 {
    font-size: 18px;
  }
  
  .news-content h5 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .product-badge {
    position: static;
    margin-top: 15px;
    justify-content: center;
  }
  
  .product-badge .badge {
    margin: 5px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-icon {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .news-item {
    margin-bottom: 20px;
  }
  
  .news-image img {
    height: 200px;
  }
  
  .media-sidebar {
    padding: 20px;
  }
  
  .press-kit,
  .media-contact {
    padding: 15px;
  }
  
  /* Final testimonials responsive styles removed */
  
  .case-study-card {
    padding: 20px 15px;
  }
  
  .case-study-icon {
    font-size: 36px;
  }
  
  .case-study-card h5 {
    font-size: 18px;
  }
  
  .gallery-stats {
    padding: 20px 0;
  }
  
  .stat-item .stat-number {
    font-size: 32px;
  }
  
  .stat-item .stat-label {
    font-size: 14px;
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 991px) {
  .navbar-mobile ul {
    padding: 20px 0;
  }
  
  .navbar-mobile a {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .navbar-mobile .getstarted {
    margin: 20px;
    padding: 12px 24px;
    text-align: center;
  }
}

/* Improved Touch Targets */
@media (max-width: 768px) {
  /* Portfolio responsive styles removed */
  
  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .read-more {
    padding: 8px 0;
    font-size: 16px;
  }
}

/* Better Spacing for Mobile */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .section-title p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .news-main h3,
  .media-sidebar h3,
  .case-studies h3 {
    font-size: 24px;
  }
  
  .highlight-item {
    margin-bottom: 12px;
    padding: 8px 0;
  }
  
  .highlight-item i {
    font-size: 18px;
    margin-right: 12px;
  }
  
  .highlight-item span {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Mobile-First Responsive Design Improvements
--------------------------------------------------------------*/

/* Hide elements on mobile for better aesthetics */
@media (max-width: 768px) {
  /* Hide hero product showcase on mobile */
  .hero-product-showcase {
    display: none !important;
  }
  
  /* Hide hero features on mobile */
  .hero-features-right {
    display: none !important;
  }
  
  /* Hide some decorative elements */
  .hero-badge {
    display: none !important;
  }
  
  /* Simplify hero section */
  #hero {
    padding: 30px 0 20px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 26px !important;
    line-height: 1.2;
    margin: 10px 0;
  }
  
  .hero-description {
    font-size: 14px !important;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin: 15px 0;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 240px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }
  
  .stat-item {
    text-align: center;
    padding: 8px;
  }
  
  .stat-number {
    font-size: 20px !important;
  }
  
  .stat-label {
    font-size: 11px !important;
  }
  
  /* Improve navigation for mobile */
  .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
  }
  
  .nav-link {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  /* Simplify product cards */
  .product-card {
    margin-bottom: 20px;
  }
  
  .product-image {
    height: 200px !important;
  }
  
  .product-content {
    padding: 15px !important;
  }
  
  .product-content h3 {
    font-size: 18px !important;
  }
  
  .product-content p {
    font-size: 13px !important;
  }
  
  /* Hide product badges on mobile */
  .product-badges {
    display: none !important;
  }
  
  /* Simplify features section */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  .feature-card {
    padding: 15px !important;
  }
  
  .feature-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }
  
  .feature-content h4 {
    font-size: 16px !important;
  }
  
  .feature-content p {
    font-size: 12px !important;
  }
  
  /* Simplify certifications */
  .certification-card {
    padding: 15px !important;
  }
  
  .certification-image {
    height: 60px !important;
  }
  
  .certification-info h4 {
    font-size: 16px !important;
  }
  
  .certification-info p {
    font-size: 12px !important;
  }
  
  /* Simplify news section */
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  .news-card {
    padding: 15px !important;
  }
  
  .news-card h4 {
    font-size: 16px !important;
  }
  
  .news-card p {
    font-size: 12px !important;
  }
  
  /* Simplify branches section */
  .branches-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  
  .branch-card {
    height: 120px !important;
    padding: 10px !important;
  }
  
  .branch-flag {
    width: 30px !important;
    height: 30px !important;
  }
  
  .branch-name {
    font-size: 12px !important;
  }
  
  .branch-status {
    font-size: 10px !important;
  }
  
  /* Simplify footer */
  .footer-main {
    padding: 40px 0 20px 0 !important;
  }
  
  .footer-section {
    margin-bottom: 25px !important;
  }
  
  .footer-section h4 {
    font-size: 16px !important;
  }
  
  .footer-links li {
    margin-bottom: 8px !important;
  }
  
  .footer-links a {
    font-size: 13px !important;
  }
  
  /* Ensure modern footer is used on mobile */
  .modern-footer {
    display: block !important;
  }
  
  /* Hide any old footer elements */
  #footer .footer-newsletter,
  #footer .footer-top,
  #footer .footer-bottom {
    display: none !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 576px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .hero-title {
    font-size: 22px !important;
  }
  
  .hero-description {
    font-size: 13px !important;
  }
  
  .section-header h2 {
    font-size: 22px !important;
  }
  
  .section-header p {
    font-size: 12px !important;
  }
  
  .product-image {
    height: 180px !important;
  }
  
  .product-content {
    padding: 12px !important;
  }
  
  .product-content h3 {
    font-size: 16px !important;
  }
  
  .feature-card {
    padding: 12px !important;
  }
  
  .branches-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  
  .branch-card {
    height: 100px !important;
    padding: 8px !important;
  }
  
  .btn {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
}

/* Very small mobile devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 20px !important;
  }
  
  .hero-description {
    font-size: 12px !important;
  }
  
  .hero-actions .btn {
    max-width: 200px;
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .stat-number {
    font-size: 18px !important;
  }
  
  .stat-label {
    font-size: 10px !important;
  }
  
  .section-header h2 {
    font-size: 20px !important;
  }
  
  .product-image {
    height: 160px !important;
  }
  
  .product-content h3 {
    font-size: 15px !important;
  }
  
  .feature-content h4 {
    font-size: 14px !important;
  }
  
  .certification-info h4 {
    font-size: 14px !important;
  }
  
  .news-card h4 {
    font-size: 14px !important;
  }
  
  .footer-section h4 {
    font-size: 14px !important;
  }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
  /* Improve touch targets */
  .btn, .nav-link, .feature-item, .product-card {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Better spacing for touch */
  .hero-actions .btn {
    margin-bottom: 8px;
  }
  
  /* Improve scroll behavior */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Better text selection */
  ::selection {
    background: rgba(238, 50, 99, 0.2);
    color: #333;
  }
  
  /* Hide scrollbars on mobile for cleaner look */
  ::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  
  /* Improve form inputs on mobile */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
    border-radius: 8px;
  }
  
  /* Better focus states for accessibility */
  .btn:focus, .nav-link:focus, input:focus, textarea:focus {
    outline: 2px solid #ee3263;
    outline-offset: 2px;
  }
  
  /* Improve carousel touch interaction */
  .swiper-container {
    touch-action: pan-y;
  }
  
  /* Better image loading on mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve modal and overlay interactions */
  .modal, .overlay {
    touch-action: manipulation;
  }
  
  /* Better spacing for sections */
  section {
    padding: 40px 0;
  }
  
  /* Improve readability */
  p, li {
    line-height: 1.6;
  }
  
  /* Better contrast for mobile */
  .text-muted {
    color: #666 !important;
  }
  
  /* Improve button states */
  .btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  /* Better navigation collapse */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Improve card interactions */
  .card, .product-card, .feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:active, .product-card:active, .feature-card:active {
    transform: scale(0.98);
  }
  
  /* Better list spacing */
  ul, ol {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 8px;
  }
  
  /* Improve table responsiveness */
  table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  
  /* Better video responsiveness */
  video, iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve loading states */
  .loading {
    pointer-events: none;
    opacity: 0.7;
  }
  
  /* Better error states */
  .error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
  }
  
  /* Improve success states */
  .success {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Enhanced Mobile Responsiveness (Added Oct 2025)
--------------------------------------------------------------*/

/* Tablet and Below Improvements */
@media (max-width: 992px) {
  /* Hero section adjustments */
  #hero {
    min-height: auto;
    padding: 100px 0 50px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Product cards */
  .product-card {
    margin-bottom: 30px;
  }

  /* Feature grids */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Section padding */
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }
}

/* Mobile Specific Improvements */
@media (max-width: 768px) {
  /* Typography */
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }

  /* Hero actions */
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-get-started,
  .btn-watch-video {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero stats */
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
    text-align: center;
  }

  /* Product showcase */
  .hero-product-showcase {
    margin-top: 40px;
  }

  /* Floating features */
  .hero-features-right {
    justify-content: center;
    margin-top: 15px;
  }

  .feature-item-right {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* Certifications */
  .certification-card {
    margin-bottom: 20px;
  }

  /* Product grid */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card {
    margin-bottom: 25px;
  }

  /* Features section */
  .features-content .row {
    flex-direction: column-reverse;
  }

  .features-visual {
    margin-bottom: 30px;
  }

  /* Use cases */
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Testimonials */
  .testimonial-item {
    padding: 25px;
  }

  .testimonial-item h3 {
    font-size: 20px;
  }

  .testimonial-item p {
    font-size: 14px;
  }

  /* Case studies */
  .case-study-card {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Branches carousel */
  .branch-card {
    margin: 10px;
  }

  /* Gallery */
  .portfolio-item {
    margin-bottom: 20px;
  }

  #portfolio-flters {
    padding: 0 15px;
  }

  #portfolio-flters li {
    font-size: 13px;
    padding: 6px 12px;
    margin: 5px 3px;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  /* Hero section */
  .hero-title {
    font-size: 24px;
    margin: 15px 0;
  }

  .hero-description {
    font-size: 14px;
  }

  /* Section padding */
  section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  /* Hero stats */
  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Buttons */
  .btn-get-started,
  .btn-watch-video {
    padding: 12px 25px;
    font-size: 13px;
  }

  /* Product cards */
  .product-content h3 {
    font-size: 22px;
  }

  .product-content p {
    font-size: 14px;
  }

  /* Feature cards */
  .feature-card {
    padding: 20px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  /* Variant cards */
  .variant-card {
    margin-bottom: 25px;
  }

  .variant-header h3 {
    font-size: 22px;
  }

  /* Testimonials */
  .testimonial-item {
    padding: 20px;
  }

  .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonial-item h4 {
    font-size: 14px;
  }

  .testimonial-item p {
    font-size: 13px;
  }

  /* Footer */
  .footer-logo img {
    max-width: 60px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-links li {
    font-size: 14px;
  }

  .contact-info {
    font-size: 13px;
  }

  /* Gallery filters */
  #portfolio-flters li {
    font-size: 11px;
    padding: 5px 10px;
    margin: 3px 2px;
  }

  /* Contact page */
  .contact-card {
    padding: 25px 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .hero-title {
    font-size: 22px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .btn-get-started,
  .btn-watch-video {
    padding: 10px 20px;
    font-size: 12px;
  }

  #portfolio-flters li {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets */
  a, button, .btn, .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Remove hover effects on touch devices */
  .card:hover,
  .product-card:hover,
  .feature-card:hover {
    transform: none;
  }

  /* Add active states instead */
  .card:active,
  .product-card:active,
  .feature-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* Improve button feedback */
  .btn:active,
  .btn-get-started:active,
  .btn-watch-video:active {
    opacity: 0.8;
    transform: scale(0.97);
  }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    min-height: auto;
    padding: 80px 0 40px 0;
  }

  .hero-stats {
    display: none;
  }

  .hero-product-showcase {
    max-height: 300px;
  }
}

/*--------------------------------------------------------------
# Enhanced Card Styles (Added Oct 2025)
--------------------------------------------------------------*/

/* Universal Card Improvements */
.card,
.feature-card,
.use-case-card,
.certification-card,
.news-card,
.case-study-card {
  border: none !important;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  background: white;
  height: 100%;
}

.card:hover,
.feature-card:hover,
.use-case-card:hover,
.certification-card:hover,
.news-card:hover,
.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Headers */
.card-header,
.feature-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
}

/* Card Body */
.card-body {
  padding: 30px;
}

/* Card Titles */
.card-title,
.feature-card h3,
.use-case-card h3 {
  color: #27253f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Card Text */
.card-text,
.feature-card p,
.use-case-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Card Icons */
.card-icon,
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(238, 50, 99, 0.3);
  transition: all 0.3s ease;
}

.card:hover .card-icon,
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(238, 50, 99, 0.4);
}

/* Card Badges */
.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* Card Footer */
.card-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px 30px;
}

/* Feature Cards Specific */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  position: relative;
  padding: 35px 30px;
  text-align: center;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Use Case Cards */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.use-case-card {
  position: relative;
  padding: 35px;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.use-case-card:hover::before {
  transform: scaleY(1);
}

/* Certification Cards */
.certification-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.certification-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.certification-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* News/Blog Cards */
.news-card {
  position: relative;
}

.news-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 25px;
}

.news-card-date {
  color: #ee3263;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

/* Case Study Cards */
.case-study-card {
  padding: 35px;
  position: relative;
}

.case-study-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(39, 37, 63, 0.3);
}

.case-study-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(238, 50, 99, 0.1);
  line-height: 1;
}

/* Product Variant Cards */
.variant-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: white;
  margin-bottom: 30px;
}

.variant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.variant-header {
  background: linear-gradient(135deg, #27253f 0%, #00aaff 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.variant-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.variant-header h3 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.variant-price {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 20px 0;
  position: relative;
  z-index: 2;
}

.variant-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
}

.variant-body {
  padding: 35px;
}

.variant-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.variant-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.variant-features li:last-child {
  border-bottom: none;
}

.variant-features li i {
  color: #ee3263;
  font-size: 18px;
}

.variant-cta {
  width: 100%;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-cta:hover {
  background: linear-gradient(135deg, #d62a5a, #e55a8a);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(238, 50, 99, 0.3);
}

/* Stats Cards */
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ee3263;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Team/Staff Cards */
.team-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #f8f9fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  color: #27253f;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: #ee3263;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  color: #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.team-social a:hover {
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  transform: translateY(-3px);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid #ee3263;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ee3263, #ff6b9d);
  color: white;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(238, 50, 99, 0.3);
}

/* Mobile Card Adjustments */
@media (max-width: 768px) {
  .card,
  .feature-card,
  .use-case-card {
    margin-bottom: 25px;
  }

  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .card-icon,
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .variant-header h3 {
    font-size: 22px;
  }

  .variant-price {
    font-size: 32px;
  }

  .variant-body {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .card-title,
  .feature-card h3 {
    font-size: 20px;
  }

  .card-text,
  .feature-card p {
    font-size: 14px;
  }

  .stat-number {
    font-size: 32px;
  }

  .team-image {
    width: 100px;
    height: 100px;
  }
}