:root {
    --brand-pink: #ff2d8c;
    --light-pink: #fff0f6;
    --text-dark: #1a1a2e;
    --bg-gray: #f2f2f7;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.serif-font {
    font-family: 'Playfair', serif;
    font-weight: 700;
}

/* Icon Styling */
.icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: var(--light-pink);
    color: var(--brand-pink);
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
}

/* Partners Card */
.partners-card {
    background-color: #fcfcfd; /* Off-white card background */
    border: 1px solid #eee;
    border-radius: 40px; /* Large rounded corners from image */
}

/* Logo Placeholders */
.logo-placeholder {
    background-color: hsla(261, 56%, 22%, 0.1);
    height: 48px;
    display: flex;
    align-items: center;
    font-family: "DmSans", sans-serif !important;
    justify-content: center;
    border-radius: 4px;
    color: #5f527a;
    font-weight: 700 !important;
    letter-spacing: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    animation: 2s cubic-bezier(0.4, 0, 0.6, 1) 0s infinite normal none running pulse;
}
@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.8;
    }
}
.we_txt{
    font-family: "DmSans", sans-serif !important;
    font-size: 16px !important;
    color: #5f527a !important;
    line-height: 24px !important;
    font-weight: 300 !important;
}
/* Button Styling */
.btn-pink {
    background-color: var(--brand-pink);
    color: white;
    border: none;
    font-weight: 300 !important;
    font-family: "DmSans", sans-serif !important;
    transition: all 0.3s ease;
}
.partners-section .infex_patner h2{
    font-family: "Playfair", serif !important;
    line-height: 32px !important;
}
.partners-section .infex_patner p{
    font-family: "DmSans", sans-serif !important;
    font-size: 16px !important;
    color: #5f527a !important;
    line-height: 24px !important;
    font-weight: 300 !important;
}
.partners-card{
    background-color: #f9f5f9 !important;
}
.partners-card h2{
    font-family: "Playfair", serif !important;
    font-size: 30px !important;
    line-height: 2.25rem !important;
}
.btn-pink:hover {
    background-color: #e0257a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 45, 140, 0.3);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.hero-section {
    background: url('../images/patner.avif') no-repeat center center/cover;
    position: relative;
}

.hero-section .minds {
    color: #1f0f3d;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    font-family: "DmSans", sans-serif;
}

.hero-section .overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(268deg 100% 96.75% / 60%);
    z-index: 1;
}

.hero-section .container-fluid {
    z-index: 9;
    position: relative;
}
.hero-section h1{
  font-family:"Playfair", serif !important;
  color: #1f0f3d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-card {
        padding: 2rem !important;
        border-radius: 20px;
    }
}