
/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */


/* ============================================
   UTILITY CLASSES
   ============================================ */
.new-full-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.new-d-flex {
  display: flex;
}

.new-m-4 {
  margin: 1rem;
}

.new-p-1 {
  padding: 0.25rem;
}

/* ============================================
   HERO SECTION - NO BACKGROUND COLOR
   ============================================ */
.new-hero-section {
  margin-top: -4rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  background-color: #fff0;
background-image: linear-gradient(180deg, #E8EBFE 0%, #E8EBFE00 100%);
  /* background: linear-gradient(to right, rgba(255, 245, 238, 0.3) 0%, rgba(255, 255, 255, 1) 50%); */
}

/* Animated Colored Dots */
.new-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.new-animated-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}

.new-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatDot 15s infinite ease-in-out;
}

.new-dot-1 {
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-15px);
  animation-delay: 0s;
}

.new-dot-2 {
  width: 10px;
  height: 10px;
  background: #4ecdc4;
  bottom: 0;
  left: 80%;
  transform: translateX(-40%) translateY(15px);
  animation-delay: 2s;
}

.new-dot-3 {
  width: 10px;
  height: 10px;
  background: #ffa07a;
  top: 50%;
  left: -20%;
  transform: translateY(-50%) translateX(-15px);
  animation-delay: 4s;
}

.new-dot-4 {
  width: 10px;
  height: 10px;
  background: #003f99;
  top: 50%;
  right: 20%;
  transform: translateY(-50%) translateX(15px);
  animation-delay: 1s;
}

@keyframes floatDot {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  25% {
    transform: translate(20px, -30px);
    opacity: 0.9;
  }
  50% {
    transform: translate(-15px, 25px);
    opacity: 0.8;
  }
  75% {
    transform: translate(25px, 15px);
    opacity: 0.85;
  }
}

.new-inner-hero-section {
  position: relative;
  z-index: 2;
  width: 100%;
}

.new-hero-section .new-d-flex {
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.new-hero-section-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

.new-hero-section-content .new-animated-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}

.new-hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 0.8s ease-out 0.1s both;
  position: relative;
}
/* 
.new-hero-tagline::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: -80px;
  left: -50px;
  z-index: -1;
  opacity: 0.5;
} */

.new-hero-tagline::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 50%;
  top: -70px;
  left: -60px;
  z-index: -2;
  opacity: 0.9;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.new-hero-section-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a202c;
  animation: slideInLeft 1s ease-out 0.2s both;
  letter-spacing: -0.02em;
  position: relative;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-hero-section-content svg {
    padding-left: 10px;
  animation: drawLine 1.5s ease-out 0.5s both;
  filter: drop-shadow(0 2px 4px rgba(255, 213, 63, 0.3));
}

@keyframes drawLine {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.new-hero-section-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  padding-left: 0;
  color: #4a5568;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 0.7s both;
  max-width: 550px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.new-hero-section-content ul {
  list-style: none;
  margin-bottom: 35px;
  padding-left: 0;
}

.new-hero-section-content ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  color: #2d3748;
  animation: slideInLeft 0.8s ease-out both;
  transition: transform 0.3s ease;
}

.new-hero-section-content ul li:hover {
  transform: translateX(5px);
}

.new-hero-section-content ul li:nth-child(1) { animation-delay: 0.9s; }
.new-hero-section-content ul li:nth-child(2) { animation-delay: 1s; }
.new-hero-section-content ul li:nth-child(3) { animation-delay: 1.1s; }
.new-hero-section-content ul li:nth-child(4) { animation-delay: 1.2s; }
.new-hero-section-content ul li:nth-child(5) { animation-delay: 1.3s; }

.new-hero-section-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.new-hero-section-content ul li:nth-child(1)::before {
  content: '🎯';
  background: rgba(255, 107, 107, 0.1);
}

.new-hero-section-content ul li:nth-child(2)::before {
  content: '💰';
  background: rgba(78, 205, 196, 0.1);
}

.new-hero-section-content ul li:nth-child(3)::before {
  content: '📈';
  background: rgba(255, 160, 122, 0.1);
}

.new-hero-section-content ul li:nth-child(4)::before {
  content: '⚡';
  background: rgba(255, 107, 107, 0.1);
}

.new-hero-section-content ul li:nth-child(5)::before {
  content: '👥';
  background: rgba(78, 205, 196, 0.1);
}


.new-hero-phone-btn {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-left: 0;
  animation: fadeInUp 1s ease-out 1s both;
  align-items: center;
}

.new-hero-phone-btn button,
.new-hero-phone-btn a button {
  background: #1a365d;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  min-width: 140px;
}

.new-hero-phone-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
  background: #153a5e;
}

.new-hero-phone-btn a:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  background-color: #0475e4;
  border-radius: 12px;
  padding: 14px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(4, 117, 228, 0.2);
  font-weight: 500;
  box-sizing: border-box;
  width: auto;
  min-width: 180px;
}

.new-hero-phone-btn a:last-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 117, 228, 0.3);
  background-color: #0366d1;
}

.new-hero-phone-btn a:last-child .new-phone-icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: #FFD53F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.new-hero-phone-btn a:last-child .new-phone-icon-wrapper img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(7492%) hue-rotate(210deg) brightness(95%) contrast(95%);
}

.new-hero-phone-btn a:last-child img {
  display: none;
}

.new-hero-section-image {
  flex: 1;
  min-width: 300px;
  animation: fadeInRight 1s ease-out 0.3s both;
  position: relative;
  z-index: 2;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-hero-section-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  animation: floatImage 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.new-hero-section-image img:hover {
  transform: scale(1.02);
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Abstract Background Shapes */
.new-abstract-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.new-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: floatShape 20s infinite ease-in-out;
}

.new-shape-1 {
  width: 300px;
  height: 300px;
  background: #FFD93D;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.new-shape-2 {
  width: 250px;
  height: 250px;
  background: #FF6B9D;
  top: 30%;
  right: 5%;
  animation-delay: 3s;
}

.new-shape-3 {
  width: 200px;
  height: 200px;
  background: #A8E6CF;
  bottom: 20%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Overlay Cards */
.new-overlay-card {
  position: absolute;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.new-card-targeted {
  top: 0%;
  left: -10%;
  min-width: 180px;
  animation-delay: 0s;
}

.new-card-targeted-icon {
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

.new-card-targeted-icon::after {
  content: '🎯';
  font-size: 20px;
  filter: grayscale(0);
}

.new-card-targeted h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}

.new-card-targeted .new-trend-icon {
  width: 20px;
  height: 20px;
  background: #4ecdc4;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
  position: relative;
}

.new-card-targeted .new-trend-icon::after {
  content: '📈';
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.new-card-active-user {
  bottom: 0%;
  left: -5%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #4ecdc4, #44a08d) border-box;
  animation-delay: 1s;
}

.new-card-active-user .new-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 5px;
}

.new-card-active-user .new-label {
  font-size: 0.85rem;
  color: #4a5568;
  text-align: center;
}

.new-card-profile {
  top: 20%;
  right: -30%;
  min-width: 220px;
  animation-delay: 2s;
}

.new-card-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.new-card-profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.new-card-profile-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3px;
}

.new-card-profile-info p {
  font-size: 0.75rem;
  color: #718096;
  margin: 0;
}

.new-card-profile-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.new-card-profile-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-card-profile-btn-video {
  background: #0475e4;
  color: white;
}

.new-card-profile-btn-audio {
  background: #e2e8f0;
  color: #2d3748;
}

.new-card-profile-group {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.new-card-profile-group-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid white;
  margin-left: -8px;
  position: relative;
}

.new-card-profile-group-avatar:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.new-card-profile-group-avatar:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.new-card-profile-group-avatar:first-child {
  margin-left: 0;
}

.new-card-profile-group-count {
  font-size: 0.75rem;
  color: #718096;
  margin-left: 5px;
}

.new-rocket-icon {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 50px;
  height: 50px;
  background: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  z-index: 10;
  animation: rocketFloat 3s ease-in-out infinite;
  cursor: pointer;
}

.new-rocket-icon::after {
  content: '🚀';
  font-size: 24px;
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .new-full-page {
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  .new-hero-section {
    padding: 60px 0;
    min-height: auto;
  }

  .new-hero-section-content h1 {
    font-size: 2.8rem;
  }

  .new-hero-section .new-d-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .new-hero-section-content {
    text-align: center;
  }

  .new-hero-section-content p {
    margin: 0 auto 35px;
  }

  .new-hero-phone-btn {
    justify-content: center;
  }

  .new-animated-dots {
    width: 100%;
  }

  .new-dot {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .new-hero-section {
    padding: 50px 0;
  }

  .new-hero-section .new-d-flex {
    flex-direction: row;
    align-items: flex-start;
  }

  .new-hero-section-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    margin-top:4rem;
  }

  .new-hero-section-content h1 {
    font-size: 2.2rem;
    padding: 0;
    text-align: left;
  }

  .new-hero-section-content p {
    font-size: 1rem;
    padding: 0;
    text-align: left;
  }

  .new-hero-tagline {
    font-size: 0.9rem;
    text-align: left;
    display: none;
  }

  .new-hero-section-content ul {
    text-align: left;
  }

  .new-hero-phone-btn {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    justify-content: flex-start;
    gap: 12px;
  }

  .new-hero-phone-btn button,
  .new-hero-phone-btn a:last-child {
    width: 100%;
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.85rem;
  }

  .new-hero-phone-btn a:last-child .new-phone-icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .new-hero-phone-btn a:last-child .new-phone-icon-wrapper img {
    width: 14px;
    height: 14px;
  }

  .new-hero-section-image {
    display: none;
  }

  .new-animated-dots {
    width: 100%;
  }

  .new-dot {
    width: 10px !important;
    height: 10px !important;
    opacity: 0.3;
  }
}

@media (max-width: 576px) {
  .new-hero-section {
    padding: 40px 0;
  }

  .new-hero-section .new-d-flex {
    flex-direction: row;
    align-items: flex-start;
  }

  .new-hero-section-content {
    flex: 1;
    text-align: left;
    padding-right: 15px;
    margin-top: 4rem;
  }

  .new-hero-section-content h1 {
    font-size: 1.8rem;
    text-align: left;
  }

  .new-hero-section-content p {
    font-size: 0.95rem;
    text-align: left;
  }

  .new-hero-tagline {
    font-size: 0.85rem;
    text-align: left;
  }

  .new-hero-section-content ul {
    text-align: left;
  }

  .new-hero-phone-btn {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    justify-content: flex-start;
    gap: 10px;
  }

  .new-hero-phone-btn button,
  .new-hero-phone-btn a:last-child {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .new-hero-phone-btn a:last-child .new-phone-icon-wrapper {
    width: 26px;
    height: 26px;
  }

  .new-hero-phone-btn a:last-child .new-phone-icon-wrapper img {
    width: 12px;
    height: 12px;
  }

  .new-full-page {
    padding: 0 15px;
  }

  .new-hero-section-image {
    display: none;
  }

  .new-animated-dots {
    width: 100%;
  }

  .new-dot {
    width: 10px !important;
    height: 10px !important;
    opacity: 0.25;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
a:focus {
  outline: 3px solid #0475e4;
  outline-offset: 2px;
}

/* .new-header-section{

  height: 23px;
  background-color: #fff0;
background-image: linear-gradient(180deg, #E8EBFE 0%, #E8EBFE00 100%);

} */


/* Hide card-profile on laptop screens */
@media (min-width: 1024px) and (max-width: 1440px) {
  .new-card-profile {
    display: none !important;
  }
}


/* hero images css */

.images-wrapper {
  position: relative;
  min-height: 600px;
}

.box {
  width: 250px;
  height: 250px;
  position: relative;
  display: inline-block;
}
.box4 {
  width: 500px;
  height: 250px;
  position: relative;
  display: inline-block;
}

.img-fluid {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
}

/* Professional hover effect - scale, lift, and shadow */
.box:hover .img-fluid,
.box1:hover .img-fluid,
.box4:hover .img-fluid {
  transform: scale(1.12) translateY(-8px);
  filter: brightness(1.1) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .images-wrapper {
      min-height: 400px;

  }
  .hero-image-section{

    display: none;
  }
  
  .box {
      width: 150px;
      height: 150px;
  }


  
  .content-section h1 {
      font-size: 2rem;
  }

  .modules-image-box1{

    padding: 4rem!important;
  } 

  .mobile-modules{

    margin-left: 0rem!important;

  }

}

/* new icon list for section of home page  */

.new-why-choose {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.new-why-choose-upper-section {
  margin-bottom: 60px;
}

.new-why-choose-upper-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.new-why-choose-lower-content-section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.new-why-choose-lower-content-left {
  flex: 1;
  min-width: 500px;
  background: white;
  border-radius: 20px;
  padding: 40px;
}

.new-why-choose-image {
  flex: 1;
  min-width: 400px;
}

.new-why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.new-why-choose-image img:hover {
  transform: translateY(-10px) scale(1.02);
}


.new-icon-list {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.new-icon-list:last-child {
  border-bottom: none;
}

.new-icon-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.new-icon-list:hover {
  padding-left: 12px;
}

.new-icon-list:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.new-icon-list > div:first-child {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  margin-right: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.new-icon-list:hover > div:first-child {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.new-icon-list svg {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.new-icon-list svg path,
.new-icon-list svg circle,
.new-icon-list svg rect {
  transition: all 0.3s ease;
  stroke: #667eea;
}

.new-icon-list:hover svg path,
.new-icon-list:hover svg circle,
.new-icon-list:hover svg rect {
  stroke: #ffffff;
}

.new-icon-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.new-icon-list:hover .new-icon-content h3 {
  color: #667eea;
}

.new-icon-content {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .new-why-choose-lower-content-section {
      flex-direction: column;
  }
  
  .new-why-choose-lower-content-left,
  .new-why-choose-image {
      min-width: 100%;
  }
  
  .new-why-choose-upper-section h2 {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  body {
      padding: 40px 0;
  }
  
  .new-why-choose-upper-section h2 {
      font-size: 2rem;
  }
  
  .new-icon-list {
      padding: 16px 0;
  }
  
  .new-icon-list > div:first-child {
      width: 48px;
      height: 48px;
      min-width: 48px;
      margin-right: 16px;
  }
  
  .new-icon-list svg {
      width: 24px;
      height: 24px;
  }
  
  .new-icon-content h3 {
      font-size: 1rem;
  }
}

/* Animation for list items */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.new-icon-list {
  animation: fadeInUp 0.6s ease-out backwards;
}

.new-icon-list:nth-child(1) { animation-delay: 0.1s; }
.new-icon-list:nth-child(2) { animation-delay: 0.2s; }
.new-icon-list:nth-child(3) { animation-delay: 0.3s; }
.new-icon-list:nth-child(4) { animation-delay: 0.4s; }
.new-icon-list:nth-child(5) { animation-delay: 0.5s; }
.new-icon-list:nth-child(6) { animation-delay: 0.6s; }
.new-icon-list:nth-child(7) { animation-delay: 0.7s; }