* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  max-width: 100%;
}



/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider-wrap,
#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item {
  height: 100vh;
}

#heroSlider .carousel-item {
  position: relative;
}

#heroSlider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: 8s ease;
}

#heroSlider .carousel-item.active img {
  transform: scale(1);
}

/* Overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Content */
.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 5;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-slide-content h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-slide-content h2 span {
  color: #CD0B2E;
}

.hero-slide-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 600px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CD0B2E;
  color: #fff;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 60px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 30px #CD0B2E;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px #CD0B2E;
}

/* Navigation Buttons */

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  background-size: 40%;
}

/* Bottom Gradient */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 2;
}

/* Mobile */

@media (max-width: 991px) {

  .hero-slider-wrap,
  #heroSlider,
  #heroSlider .carousel-inner,
  #heroSlider .carousel-item {
    height: 85vh;
  }

  .hero-slide-content {
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    text-align: left;
  }

  .hero-slide-content h2 {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero-slide-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-tag {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {

  .hero-slider-wrap,
  #heroSlider,
  #heroSlider .carousel-inner,
  #heroSlider .carousel-item {
    height: 75vh;
  }

  .hero-slide-content h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-slide-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-main {
    padding: 12px 24px;
    font-size: 14px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .hero-slide-content h1 {
    font-size: 34px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 10px 18px;
  }

  .btn-main {
    padding: 14px 28px;
  }
}

#testimonial {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    max-width: 850px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    margin: 0;
    font-weight: 600;
    color: #222;
}

.carousel-item {
    transition: transform .8s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #CD0B2E;
    border-radius: 50%;
    padding: 18px;
}

.carousel-indicators button {
    width: 12px !important;
   
    border-radius: 50%;
    background: #CD0B2E !important;
}

.carousel-indicators .active {
    background: #CD0B2E !important;
}

@media (max-width: 768px) {

    #testimonial {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 12px;
    }
}

/* Cards */
.category-card,
.feature-card,
.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  padding: 35px 25px;
  transition: 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.category-card::before,
.feature-card::before,
.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: #CD0B2E;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  top: -40px;
  right: -40px;
  transition: 0.4s;
}

.category-card:hover::before,
.feature-card:hover::before,
.service-card:hover::before {
  opacity: 0.5;
}

.category-card:hover,
.feature-card:hover,
.service-card:hover {
  transform: translateY(-12px);
  border-color: #CD0B2E;
  box-shadow: 0 15px 35px #CD0B2E;
}

/* Icons */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #CD0B2E;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 25px;
  color: white;
}

/* Typography */
.category-card h4,
.feature-card h4,
.service-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #0f172a;
}

.category-card p,
.feature-card p,
.service-card p,
.testimonial-card p {
  color: #64748b;
  line-height: 1.8;
}

/* PRODUCTS SECTION */

a {
  text-decoration: none;
}

/* Product Section */



.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h1 {
  font-size: 52px;
  font-weight: 700;
  margin:60px 0;
  color: #111;
}

.section-title p {
  color: #666;
  font-size: 17px;
}

/* Product Card */

.product-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px #CD0B2E;
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #CD0B2E;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

.product-content {
  padding: 25px;
}

.product-content span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.product-content p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.rating {
  color: #CD0B2E;
  margin-bottom: 18px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #CD0B2E;
}

.btn-view {
  padding: 10px 10px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  transition: 0.3s;
  font-weight: 500;
   margin-top: auto;  /* button hamesha bottom pe push hoga */
  align-self: center;
}

.btn-view:hover {
  background: #CD0B2E;
  color: #fff;
}

/* Features */

.feature-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 45px;
  color: #CD0B2E;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  line-height: 1.8;
}

.feature-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 42px;
  }
}

/* Testimonial */
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #CD0B2E;
  margin-bottom: 20px;
}

.testimonial-card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* Footer */
.footer {
    background: #cacbcc;
    padding: 70px 0 20px;
    overflow: hidden;
    margin-top: 50px;
}

.footer-logo img {
    max-width: 80%;
   
}



/* =========================
   ABOUT BANNER
========================= */

.about-banner {
  min-height: 55vh;
  background: linear-gradient(to right, #CD0B2E, #f8fafc);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.about-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #CD0B2E;
  border-radius: 50%;
  filter: blur(150px);
  top: -100px;
  left: -100px;
  opacity: 0.5;
}

.about-banner::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #c4b5fd;
  border-radius: 50%;
  filter: blur(150px);
  bottom: -100px;
  right: -100px;
  opacity: 0.5;
}

.about-banner h1 {
  font-size: 65px;
  font-weight: 700;
  color: #0f172a;
  position: relative;
  z-index: 2;
}

.about-banner h1 span {
  color: #CD0B2E;
}

.about-banner p {
  max-width: 750px;
  margin: auto;
  margin-top: 20px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* =========================
   ABOUT US SECTION
========================= */

.about-us {
 
  background: #f8fafc;
  margin-bottom: 50px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content .about-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #CD0B2E;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 45px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* About Features Box */

.about-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: 0.3s;
  height: 100%;
}

.about-box:hover {
  transform: translateY(-8px);
  border-color: #CD0B2E;
  box-shadow: 0 10px 30px #CD0B2E;
}

.about-box i {
  width: 30px;
  height: 30px;
  background: #CD0B2E;
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.about-box h5 {
  font-size: 15px;
  margin-bottom: 2px;
  margin-top: 5px;
  font-weight: 500;
  color: #0f172a;
}

.about-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-banner {
    min-height: 45vh;
    text-align: center;
  }

  .about-banner h1 {
    font-size: 48px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .about-banner h1 {
    font-size: 38px;
  }

  .about-banner p {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

/* =========================
   COMMON PAGE BANNER
========================= */

/* =========================
   PAGE BANNER
========================= */











/* Heading */




/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        min-height: 350px;
        padding: 40px 15px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .banner-btn {
        padding: 7px 16px;
        font-size: 13px;
    }
}


.banner-btn{
    text-decoration:none;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    backdrop-filter:blur(10px);
    transition:.3s;
}

.banner-btn:hover{
    background:#fff;
    color:#CD0B2E;
}

.banner-btn.active{
    background:#CD0B2E;
    color:#fff;
}

.banner-btn.active:hover{
     background:#fff;
    color:#CD0B2E;
}
/* =========================
   SERVICE
========================= */

.services-page,
.category-page,
.product-page {
  padding: 60px 0;
  background: #f8fafc;
}

.service-box,
.category-box{
  background: white;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  transition: 0.4s;
  height: 100%;
}

.service-box:hover,
.category-box:hover {
  transform: translateY(-10px);
  border-color: #CD0B2E;
  box-shadow: 0 10px 25px #CD0B2E;
}

.service-icon,
.category-box i {
  width: 45px;
  height: 45px;
  background: #CD0B2E;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.category-box i {
  margin: auto;
  margin-bottom: 20px;
}

.category-box {
  text-align: center;
}

.service-box h4,
.category-box h4,
.product-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-box p,
.category-box p,
.product-content p,
.contact-info p {
  color: #64748b;
  line-height: 1.8;
}

.contact-email{
    color:#5d6b7b;
    text-decoration:none;
    word-break:break-word;
    transition:0.3s;
}

.contact-email:hover{
    color: #CD0B2E;
}

/* =========================
   PRODUCT
========================= */

.products-section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}



.section-title p {
  color: #666;
  font-size: 17px;
}

/* Product Card */
/* =========================
   PRODUCT SECTION
========================= */

.products-section {
    padding: 80px 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 380px;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

/* Overlay */
.product-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
   
    transition: all 0.4s ease;
}

/* Product Name */
.product-content span {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    display: block;
    margin-bottom: 0;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Hide Description */
.product-content p {
    display: none;
}

/* Button */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:#CD0B2E;
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.btn-view:hover {
    background: #CD0B2E;
    color: #fff;
}

/* Hover Effect */
.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .product-content {
    justify-content: center;
    
}

.product-card:hover .btn-view {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .product-card {
        height: 320px;
    }

    .product-content span {
        font-size: 22px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .product-card {
        height: 260px;
        border-radius: 15px;
    }

    .product-image img {
        border-radius: 15px;
    }

    .product-content {
        padding: 15px;
    }

    .product-content span {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* Mobile me button visible rahe */
    .btn-view {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* =========================
   CONTACT
========================= */

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.info-box {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.info-box i {
  width: 60px;
  height: 60px;
  background: #CD0B2E;
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-box h5 {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  border-radius: 15px;
  padding: 14px;
  border: 1px solid #cbd5e1;
}

.form-control:focus {
  border-color: #CD0B2E;
  box-shadow: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 42px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

/* ── Tabler Icons (if not already loaded) ── */



/* ===== CONTACT SECTION — PREMIUM STYLE ===== */

.cp {
  padding: 4rem 0;
  font-family: "Inter", sans-serif;
}

/* Badge */
.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #CD0B2E;
  border: 1px solid #c9c2f9;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #fff ;
}

/* Heading */
.cp-title {
  font-size: 32px;
  font-weight: 600;
  color: #CD0B2E;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.cp-title span {
  background: linear-gradient(135deg, #CD0B2E, #CD0B2E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cp-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Grid */
.cp-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .cp-grid {
    grid-template-columns: 1fr;
  }

  .cp-title {
    font-size: 24px;
  }

   .cp-ival{
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
        font-size:15px;
    }

}

/* ── LEFT DARK PANEL ── */
.cp-left,
.cp-right{
    overflow:visible !important;
}
.cp-left {
  border-radius: 20px;

  position: relative;
  background: #fff;
  padding: 1.75rem;
}

.cp-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  /* background: radial-gradient(circle, #CD0B2E80 0%, transparent 70%); */
  pointer-events: none;
}

.cp-left::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #CD0B2E59 0%, transparent 70%);
  pointer-events: none;
}

.cp-left-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CD0B2E;
  margin-bottom: 1.25rem;
}

.cp-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #fff;
  box-shadow: 1px 1px 1px 1px #CD0B2E;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  border-radius: 20px;
}

.cp-info:last-of-type {
  border-bottom: none;
}

.cp-iicon {
  width: 40px;
  height: 40px;

  background: #CD0B2E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  border-radius: 50%;
}

.cp-iicon:hover {
  background: #CD0B2E;
  border-color: #CD0B2E;
  transform: scale(1.08);
}

.cp-iicon i {
  font-size: 20px;
  color: white;
}

.cp-ilabel {
  font-size: 15px;
  color: #CD0B2E;
  margin-bottom: 0px;
}

.cp-ival {
  font-size: 17px;
  color: black;
  font-weight: 500;
}

.cp-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 1.25rem 0;
  position: relative;
  z-index: 1;
}

/* Social buttons */
.cp-soc-wrap {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.cp-soc {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.cp-soc i {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.cp-soc:hover {
  background: linear-gradient(135deg, #CD0B2E, #CD0B2E);
  border-color: transparent;
  transform: translateY(-2px);
}

.cp-soc:hover i {
  color: #fff;
}

/* Availability badge */
.cp-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.cp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CD0B2E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
  }
}

.cp-avail-txt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.cp-avail-txt strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ── RIGHT FORM ── */
.cp-right {
  background: #fff;

  border-radius: 20px;
  padding: 2.33rem;
  position: relative;
  
}

.cp-right::before {
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #CD0B2E80 0%, transparent 70%);
  pointer-events: none;

  content: "";
  position: absolute;
}

.cp-fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .cp-fgrid {
    grid-template-columns: 1fr;
  }
}

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-field.full {
  grid-column: 1 / -1;
}

.cp-field label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cp-field label i {
  font-size: 13px;
  opacity: 0.6;
}

.cp-field input,
.cp-field textarea {
  background: #f7f7f9;
  border: 1.5px solid #e5e5ea;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  color: #111;
  font-family: inherit;
  outline: none;
  transition:
    border 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  resize: none;
  width: 100%;
}

.cp-field input::placeholder,
.cp-field textarea::placeholder {
  color: #bbb;
}

.cp-field input:focus,
.cp-field textarea:focus {
  border-color: #CD0B2E;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.cp-field textarea {
  min-height: 120px;
}

.cp-chars {
  font-size: 11px;
  color: #bbb;
  text-align: right;
  margin-top: 2px;
}

/* Submit */
.cp-submit {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.cp-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #CD0B2E, #CD0B2E);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.cp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #CD0B2E, #CD0B2E);
  opacity: 0;
  transition: opacity 0.25s;
}

.cp-btn:hover::before {
  opacity: 1;
}

.cp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px #CD0B2E59;
}

.cp-btn:active {
  transform: scale(0.98);
}

.cp-btn span,
.cp-btn i {
  position: relative;
  z-index: 1;
}

.cp-btn i {
  font-size: 16px;
  transition: transform 0.2s;
}

.cp-btn:hover i {
  transform: translateX(3px);
}

/* Security note */
.cp-note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: #bbb;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cp-note i {
  font-size: 12px;
}

/* footer */

.footer h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    /* color: #071c39; */
}

.footer p {
    color: #5d6b7b;
    line-height: 1.9;
    margin-top: 20px;
}

.footer a {
    display: block;
    color: #5d6b7b;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s;
}

.footer a:hover {
    color: #CD0B2E;
    padding-left: 6px;
}

.product-link {
    display: block;
    margin-bottom: 12px;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #CD0B2E;
    color: #000;
    border-radius: 50%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0 !important;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #fff;
}


.copyright{
  text-align: center;
}

/* ==========================================
   CONTACT PAGE RESPONSIVE FIX
========================================== */

