/* Extra custom styles for vertical product images */
.ecommerce-highlight {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border-radius: 2rem;
    box-shadow: 0 10px 32px rgba(250, 168, 96, 0.14);
}
.ecommerce-highlight h2 {
    color: #1a223f;
    letter-spacing: -1px;
}
.ecommerce-highlight ul li {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.ecommerce-highlight .btn-primary {
    background: #1a223f;
    border-color: #1a223f;
}
.ecommerce-highlight .btn-primary:hover {
    background: #fda085;
    color: #1a223f;
    border-color: #fda085;
}
.product-images-vertical {
    gap: 2rem;
}
.product-img-vertical {
    max-width: 85%;
    object-fit: contain;
    border: 4px solid #fff;
    background: #fff;
    transition: transform 0.2s;
}
.product-img-vertical:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(44,44,84,.11);
}
@media (max-width: 991px) {
    .product-img-vertical {
        max-width: 100%;
    }
}



/* team  */


.team-card-modern {
    background: #f7f8fa;
    border-radius: 20px;
    box-shadow: 0 3px 20px rgba(32,40,66,0.07);
    padding: 36px 20px 28px 20px;
    margin-bottom: 0;
    transition: box-shadow 0.25s;
}
.team-card-modern:hover {
    box-shadow: 0 8px 36px rgba(32,40,66,0.15);
}
.team-img-modern {
    width: 260px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(88,98,140,0.09);
    background: #e9e9f1;
    margin-left: auto;
    margin-right: auto;
}
.team-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #24243c;
    letter-spacing: 0.01em;
}
.team-role {
    font-size: 1rem;
    color: #8b8fa9;
    margin-bottom: 0.2rem;
    font-weight: 500;
}
.team-social-modern {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.team-social-modern li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1e4f0;
    color: #374151;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(124,122,185,0.07);
}
.team-social-modern li a:hover {
    background: #5a5cd4;
    color: #fff;
}
@media (max-width: 991px) {
    .team-img-modern {
        width: 210px;
        height: 270px;
    }
}
@media (max-width: 767px) {
    .team-img-modern {
        width: 100%;
        height: auto;
        max-width: 340px;
        min-height: 240px;
    }
}





/* <!-- Colorful Contact Us CSS --> */

.contact-section-colorful {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  min-height: 100vh;
  padding-bottom: 60px;
}
.contact-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.contact-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #dcdcffcc;
  margin-bottom: 40px;
}

/* Info Cards */
.colorful-card {
  background: rgba(255 255 255 / 0.12);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(255 255 255 / 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.colorful-card:hover {
  background: rgba(255 255 255 / 0.25);
  box-shadow: 0 12px 50px rgba(255 255 255 / 0.3);
}
.icon-circle {
  background: rgba(255 255 255 / 0.15);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #fff;
  margin: 0 auto 10px auto;
  box-shadow: 0 4px 20px rgba(255 255 255 / 0.15);
  transition: color 0.3s ease;
}
.colorful-card:hover .icon-circle {
  color: #ffd633;
}
.info-card h5, .info-card h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.info-text {
  font-weight: 500;
  font-size: 1.1rem;
  color: #e6e8ffcc;
}

/* Form */
.contact-form-colorful {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.15);
  color: #282828;
}
.form-label {
  font-weight: 600;
  color: #484848;
}
.form-control-colorful {
  border-radius: 8px;
  border: 1.5px solid #ddd;
  padding: 12px 16px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #444;
}
.form-control-colorful:focus {
  border-color: #667eea;
  box-shadow: 0 0 8px rgba(102,126,234,0.5);
  outline: none;
}
.btn-gradient {
  background: linear-gradient(90deg, #667eea 30%, #764ba2 90%);
  border: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #5a6bdc 30%, #673e95 90%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(102,126,234,0.6);
}

/* Responsive */
@media (max-width: 575px) {
  .contact-title {
    font-size: 2.25rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }
}










.custom-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-size: 1.1em;
    box-shadow: 0 4px 18px rgba(60, 136, 240, 0.05);
    opacity: 0;
    animation: fadeIn 0.7s forwards;
    position: relative;
}

.custom-alert-success {
    background: linear-gradient(90deg, #d0ffe8 0%, #b5f8f0 100%);
    border: 1px solid #12c99b;
    color: #18815d;
}

.custom-alert-danger {
    background: linear-gradient(90deg, #ffe3e3 0%, #ffd0d0 100%);
    border: 1px solid #ff6565;
    color: #d03c3c;
}

.custom-alert-icon {
    font-size: 1.6em;
    margin-right: 15px;
    margin-left: 5px;
}

.custom-alert-close {
    font-size: 1.5em;
    color: #999;
    margin-left: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.custom-alert-close:hover {
    color: #333;
}

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