:root {
    --white-bg-color: #ffff;
    --black-bg-color: #000000;
    --teal-background-color: #14b8a6;

    /********************/
    --white-text-color: #ffffff;
    --black-text-color: #0000;
    --teal-text-color: #14b8a6;
    /****************/
    --border-radius: 10px;
    --border-color: 1px solid #ced4da;

    /******Button*********/
    --success-color: #28a745;
    --cancel-color: #6c757d;
    --delete-color: #dc3545;
    --edit-color: #17a2b8;

    /******************/
    --header-bg-color: #14b8a6;
    --header-text-color: #ffffff;
    /****************/
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /********************/
    --gradiant-bg-color:linear-gradient(135deg, rgb(20, 184, 166), rgb(20, 184, 166));
    --gradiant1-bg-color:linear-gradient(135deg, #4e73df, #1cc88a);
}
/*******Button********/
.submit-btn{
    background-color: var(--success-color);
    color:var(--header-text-color);
}
.cancel-btn{
    background-color: var(--delete-color);
    color:var(--header-text-color);
    
}
.reset-btn{
    background-color: var(--edit-color);
    color:var(--header-text-color);
}
.del-btn{
    background-color: var(--delete-color);
    color:var(--white-text-color);
}
/*********color***Plate************/

.variant-1  { background:#e0f2fe; color:#0284c7; } /* Blue */
.variant-2  { background:#fef3c7; color:#ca8a04; } /* Yellow */
.variant-3  { background:#ede9fe; color:#7c3aed; } /* Purple */
.variant-4  { background:#dcfce7; color:#16a34a; } /* Green */
.variant-5  { background:#cffafe; color:#0891b2; } /* Sky */

.variant-6  { background:#fce7f3; color:#db2777; } /* Pink */
.variant-7  { background:#f3f4f6; color:#374151; } /* Gray */
.variant-8  { background:#e0e7ff; color:#1e3a8a; } /* Navy */
.variant-9  { background:#fef9c3; color:#a16207; } /* Gold */
.variant-10 { background:#fae8ff; color:#86198f; } /* Wine */

.variant-11 { background:#ecfdf5; color:#047857; } /* Emerald */
.variant-12 { background:#ffe2e5; color:#155e75; } /* Cyan */
.variant-13 { background:#ffe4e6; color:#ff0066; } /* Neon Pink */
.variant-14 { background:#e0f2ff; color:#0077ff; } /* Neon Blue */
.variant-15 { background:#fff1e6; color:#ff6a00; } /* Neon Orange */
.variant-16 { 
    background: #ffe8d9; 
    color: #e8590c; 
}
.card-purple {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}
.card-green {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}
.card-orange {
    background: linear-gradient(135deg, #fb923c, #f97316);
}
.card-blue {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}
.card-teal {
    background: linear-gradient(135deg, #14b8a6, #22d3ee);
}
.card-pink {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}
.card-indigo {
    background: linear-gradient(135deg, #312e81, #4f46e5);
}
.card-gold {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

/**********************************/

.main-header {
    /* background: linear-gradient(135deg, #14b8a6, #10b981); */
    background: var(--gradiant1-bg-color);
    color: #ffffff;
    /* padding: 1.75rem; */
    padding: 1rem;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    /* text-align: center; */

}

/*********************/
.read-More-btn {
    background: linear-gradient(135deg, #14b8a6, #10b981);
    color: #ffffff;
    font-weight: 600;
    border-radius: 12px;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
    transition: all 0.3s ease;
    text-decoration: none; 
    padding:8px 12px;
}

.read-More-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-More-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(14, 165, 233, 0.45);
}

.read-More-btn:hover i {
    transform: translateX(6px);
}

.read-More-btn:active {
    transform: scale(0.97);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/************************/
.adset-btn{
    background: linear-gradient(135deg, rgb(20, 184, 166), rgb(20, 184, 166));
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}
.customer-AdsetDetails{
        background: linear-gradient(135deg, #14b8a6, #10b981);    
        color: #ffffff;
    /* padding: 1.75rem; */
    padding: 0.5rem;
    /* border-radius: 16px; */
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;

}

.form-control:focus {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
                    linear-gradient(135deg, #14b8a6, #10b981);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
  outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  /*border-color: #10b981;*/
  /*box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);*/
}
/* .input-group-prepend i{
    color:#10b981;
} */
 label{
    color:#3c3c3c;
    font-weight: 300;
 }
 
select.form-control,
select.form-select {
  transition: all 0.2s ease;
}

select.form-control:hover,
select.form-select:hover {
  border-color: #10b981;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

/*=====================Account.css===============*/

.account-card {
    border: none;
    /* padding-top: 6px; */
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.account-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*padding: 2rem 1rem;*/
    background-color: #ffffff;
}

.option-item {
    flex: 1 1 40%;
    max-width: 180px;
    margin: 12px;
    /* background: linear-gradient(135deg, #1e3a8a, #0d9488); */
    color: #2c2c2c;
    /* color: #ffff; */
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
    padding: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07); */
    font-weight: 600;
    border: 1px solid #efefef;
    
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background-color: #f3f3f3;
    /* color: #14b8a6; */
    text-decoration: none;
}

.option-item i {
    /* font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
    color: #14b8a6; */
       width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
   
  
}
/* .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
} */

.badge-custom {
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.75rem;
    padding: 4px 8px;
    position: absolute;
    top: 8px;
    right: 12px;
}

.section-divider {
    width: 100%;
    margin: 2rem auto;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 576px) {
    .main-header {
        font-size: 1rem;
        text-align: center;
    }
    .option-item {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 1%;
    }
}

/* ==============================
   SrankBazaar App Section Scoped CSS
   ============================== */

.sb-app-section {
  padding: 100px 20px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.sb-app-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.sb-app-content {
  flex: 1;
}

.sb-app-mini-title {
  color: #e53935;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.sb-app-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0;
  color: #111;
}

.sb-app-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 520px;
}

.sb-app-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 30px;
  margin-bottom: 30px;
  font-weight: 600;
}

.sb-app-features i {
  color: #e53935;
  margin-right: 8px;
}

.sb-app-store-buttons img {
  height: 50px;
  margin-right: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sb-app-store-buttons img:hover {
  transform: scale(1.05);
}

/* IMAGE */
.sb-app-image {
  flex: 1;
  text-align: center;
}

.sb-app-image img {
  max-width: 100%;
  width: 420px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
}

/* Background effect */
.sb-app-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/world-map.png') no-repeat center right;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 992px) {

  .sb-app-section {
    padding: 40px 20px;
  }

  .sb-app-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .sb-app-title {
    font-size: 28px;
  }

  .sb-app-desc {
    margin: auto auto 25px;
  }

  .sb-app-features {
    justify-content: center;
  }
}

@media (max-width: 575px) {

      .sb-app-section {
        padding: 30px 10px;
    }

  .sb-app-title {
    font-size: 1.2rem;
  }
  

}
/* Consultation simple clean design */

.consultation {

  background-color: #1a1a1a;   /* simple dark background */
  padding: 70px 20px;
  text-align: center;
  color: #ffffff;

}

.consultation-container {

  max-width: 800px;
  margin: auto;

}

.consultation-small-title {

  color: #ff4d2d;
  font-weight: 600;
  margin-bottom: 10px;

}

.consultation-title {

  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;

}

.consultation-subtitle {

  color: #cccccc;
  margin-bottom: 30px;
  font-size: 15px;

}

/* FORM */

.consultation-form {

  display: flex;
  max-width: 600px;
  margin: auto;

}

.consultation-input {

  flex: 1;
  padding: 14px;
  border: none;
  font-size: 15px;
  border-radius: 6px 0 0 6px;

}

.consultation-btn {

  padding: 14px 30px;
  border: none;
  background-color: #c62828;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 6px 6px 0;

}

.consultation-btn:hover {

  background-color: #a61d1d;

}

/* Mobile */

@media (max-width: 600px) {

  .consultation-form {

    flex-direction: column;

  }

  .consultation-input,
  .consultation-btn {

    border-radius: 6px;

  }

  .consultation-btn {

    margin-top: 10px;

  }

  .consultation-title {

    font-size: 24px;

  }

}
/* Block */
.service-categories {
    padding: 20px 10px;
}

/* Container */
.service-categories__container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.service-categories__card {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Hover */
.service-categories__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Header */
.service-categories__header {
    margin-bottom: 15px;
}

/* Title */
.service-categories__title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

/* Highlight text */
.service-categories__highlight {
    color: #14b8a6;
}

/* Underline */
.service-categories__underline {
    width: 60px;
    height: 4px;
    background: #14b8a6;
    margin: 8px auto 0;
    border-radius: 4px;
}

/* Grid */
.service-categories__grid {
    margin-top: 10px;
}

/* Footer */
.service-categories__footer {
    margin-top: 15px;
}

/* Button */
.service-categories__button {
    display: inline-block;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    transition: 0.3s;
}

.service-categories__button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {

    .service-categories__container {
        gap: 15px;
    }

    .service-categories__card {
        flex: 1 1 100%;
    }

}
/****===========BannerSearcg========*****/
 .bannerSearch-section {
  background: linear-gradient(180deg, #2b0a4a, #160424);
  padding: 70px 20px 90px;
  text-align: center;
  color: #fff;
}

.bannerSearch-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 600px) {
  .search-bar {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .bannerSearch-content h1{
      font-size: 25px;
  }
}

