.testimonials-section {
  max-width: 100%;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
}
.elementor img{
	max-width:fit-content!important;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-section .section-header h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials-section .section-header p {
  color: #fff;
  font-size: 1.1rem;
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonials-section .testimonial-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 0px 3px #00000047;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(38, 57, 144, 0.15);
}

.testimonials-section .testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonials-section .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #263990, #4a5fc1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonials-section .user-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.testimonials-section .user-info .player-id {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 3px;
}

.testimonials-section .stars {
  color: #ffa500;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonials-section  .testimonial-text {
  color: #fff;
  line-height: 1.6;
  font-size: 0.95rem;
}

.testimonials-section .quote-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  color: rgba(38, 57, 144, 0.08);
  font-family: Georgia, serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
 
  
  .section-header h1 {
    font-size: 1.6rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonials-section {
    padding: 15px;
  }
}

/* this is header styling  */
/* Reset-ish */


.nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}
/* Site title / logo */
.site-title img {
    display: block;
    width: 60px;
}



nav a {
    color: inherit;
    text-decoration: none;
    padding: .5rem .7rem;
    border-radius: 6px;
    font-weight: 600;
    opacity: .95
}

nav a:hover {
    opacity: 1;
    background: rgba(191, 29, 206, 0.04)
}


/* Top buttons */
.top-buttons {
    display: flex;
    gap: .5rem
}



/* Desktop layout tweaks */
.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 999;
}
@media (max-width:992px) {
  .nav-left {
    margin-left: 20px;
}
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .25rem;
    border-radius: 6px
}

.hamburger:focus {
    outline: 2px solid rgba(255, 255, 255, 0.12)
}

.hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease
}


/* Mobile menu panel */
.mobile-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgb(26 46 86 / 98%), rgba(11, 18, 32, 0.98));
    backdrop-filter: blur(6px);
    padding: 3.5rem 1rem
}

.mobile-panel nav {
  display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start
}

.mobile-panel .top-buttons {
    width: 100%;
}

.mobile-panel .btn {
    width: 100%;
    text-align: center
}


/* show/hide classes controlled by JS */
.is-open {
    display: block
}


/* Responsive breakpoints */
@media (max-width:900px) {
    nav.desktop {
        display: none
    }

    /* .top-buttons.desktop {
        display: none
    } */

    .hamburger  {
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 9999999;
        background: #fff;
        padding: 10px;
    }
}


@media (min-width:901px) {
    .mobile-panel {
        display: none !important
    }
}

@media (max-width:600px) {

  .btn {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    margin: 0 8px;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(30, 30, 50, 0.08);
    white-space: nowrap;
}
}
/* small polish */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
.btn-padding {
    padding: 0.8rem 1rem;
}
.d-flex{
  display: flex !important;
}
.justifiy-content-center{
  justify-content: center !important;
}
.align-items-center{
  align-items: center !important;
}
.flex-column{
  flex-direction: column !important;
}
.gap-1{
  gap: 1rem !important;
}
.gap-2{
  gap: 2rem !important;
}
.gap-3{
  gap: 3rem !important;
}
 .loginimg{
    width: 265px;
    margin-top: 10px;
  }
@media (max-width:768px) {
  .d-md-noflex{
    display: block !important;
  }
  .loginimg{
    width: 100% !important;
    margin-top:10px;
}
}