.cc-footer-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-footer-banner {
  background: url('../images/new-home/footer-bg-image.webp') center/cover no-repeat;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
  color: #fff;
  padding: 60px 50px;
  margin-bottom: 50px;
}

.cc-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.cc-banner-text {
  max-width: 600px;
}

.cc-banner-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color:#ffffff;
}

.cc-banner-text p {
  font-size: 15px;
  color: #eaeaea;
  line-height: 1.6;
}

.cc-banner-btn {
  background: linear-gradient(90deg, #0aa2ff, #00baff);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cc-banner-btn:hover {
  background: linear-gradient(90deg, #0094e0, #00baff);
  transform: translateY(-2px);
}


.cc-footer-main {
  background: #fff;
  padding: 60px 0;
}

.cc-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.cc-footer-col h3,
.cc-footer-col h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #000;
}

.cc-footer-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-footer-col ul li {
  margin-bottom: 8px;
}

.cc-footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.2s ease;
}

.cc-footer-col ul li a:hover {
  color: #0074c2;
}


.brand-col .cc-footer-card {
  width: 160px;
  margin-top: 15px;
  border-radius: 8px;
}


.cc-footer-bottom {
  background: #e8f3fb;
  text-align: center;
  padding: 0;
  margin: 0;
}



.cc-footer-bottom p {
  margin: 0;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e4e4e4;
}


@media (max-width: 1200px) {
  .cc-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

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

  .cc-banner-inner {
    text-align: center;
    justify-content: center;
  }

  .cc-banner-btn {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .cc-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cc-footer-banner {
    padding: 40px 25px;
  }

  .cc-banner-text h2 {
    font-size: 22px;
  }

  .cc-banner-btn {
    width: 100%;
  }

  .brand-col .cc-footer-card {
    margin: 0 auto;
  }
}
