/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#e07cf1;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--light);
    z-index: -1;
}


/*** Service ***/
.service-item,
.service-item * {
    transition: .3s;
}

.service-item:hover {
    margin-top: -10px;
    background: #832693  !important;
}

.service-item:hover * {
    color: var(--light);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*** Project ***/
.project-item {
    position: relative;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.project-item:hover .project-title {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #FFFFFF transparent;      
}

@media (min-width: 576px) {
    .flex-sm-row .team-img::after,
    .flex-lg-row-reverse .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }
}

@media (min-width: 992px) {
    .flex-lg-row-reverse .team-img::after,
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }

    .flex-sm-row-reverse.flex-lg-row .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.brand-list img {
    max-height: 70px;
    object-fit: contain;
    height: 50px;
}

.borderradius{
    border-radius: 8px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: inherit;
}

.img-logo{
    max-width: 100%;
    height: auto;
    height: 36px;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 1.3rem;
    }
}

.display-6 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: #832693 !important;
}

.textprimary-fontsi{
        font-size: 24px;
    font-weight: bold;
}

.bdradius{
    border-radius: 24px;
}

.bg-light {
    background-color: #f7ebfd !important;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 1.5rem;
    }
}

.display-4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}



#about h1, #about h4 {
  font-family: inherit, serif;
}

#about p {
  color: #555;
}

#about .border {
  border-color: rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease;
}

#about .border:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.borderpurple{
    border: 1px solid purple;
}

.btn-primary {
    color: #000;
    background-color: #76557c;
    border-color: #76557c;
}


.btn-primary:focus {
    color: #000;
    background-color: #76557c;
    border-color: #76557c;
}

.btn-primary:hover {
    color: #000;
   background-color: #76557c;
    border-color: #76557c;
}

.form-check-input:checked {
    background-color: #76557c;
    border-color: #76557c;
}

a:hover {
    color: #76557c;
}

a {
    color: #76557c;
    text-decoration: none;
}

.boxshadow{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.06);
}


/* Join Section Styling */
#join {
  background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
  position: relative;
}

#join h1, #join h3, #join h5 {
  font-family: inherit, serif;
}

/* Cards for Join Info */
#join .join-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
#join .join-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Registration Form Card */
.form-card {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0,0,0,0.05);
  background: #fff;
  position: relative;
}

/* Ribbon Accent */
.ribbon {
  width: 150px;
  height: 32px;
  background: #0d6efd;
  position: absolute;
  top: 20px;
  right: -40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.ribbon span {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 32px;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
}

/* Form controls */
#join .form-control, #join .form-select {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  transition: 0.2s ease-in-out;
}
#join .form-control:focus, #join .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* Button Styling */
#join .btn-primary {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(13,110,253,0.2);
  transition: all 0.3s ease;
}
#join .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,110,253,0.3);
  background-color: #76557c;
}

.border-warning {
    border-color: #c907ff !important;
}

.border-primary {
    border-color: #c907ff !important;
}

.text-warning {
    color: #832693  !important;
}

.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 3rem !important;
}
/* #join::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,223,186,0.4) 0%, transparent 70%);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  animation: floaty 6s ease-in-out infinite alternate;
}

@keyframes floaty {
  from { transform: translateY(0px); }
  to { transform: translateY(25px); }
} */


#join {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)),
              url('https://images.pexels.com/photos/3662634/pexels-photo-3662634.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* #join {
  background: linear-gradient(135deg, #f9faff 0%, #fff9f9 100%);
  position: relative;
  overflow: hidden;
}

#join::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.06; /* soft pattern overlay 
} */



/* ===== Our Services Section ===== */
/* Services Section Background Shapes */
#services {
  background: linear-gradient(180deg, #F9F7FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.bg-shape-1, .bg-shape-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #866EEE 0%, transparent 70%);
  top: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite alternate;
}

.bg-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #E96EFE 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(131,38,147,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(134,110,238,0.25);
}

/* Icon Circle */
.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #866EEE, #E96EFE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 15px rgba(134,110,238,0.3);
  transition: all 0.3s ease;
}
.service-card:hover .icon-wrap {
  transform: scale(1.15);
  box-shadow: 0 12px 28px rgba(134,110,238,0.5);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(90deg, #866EEE, #E96EFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Brands / Partners Section ===== */
#brands {
    background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
    position: relative;
}

#brands::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.03; /* very subtle pattern overlay */
    pointer-events: none;
}

/* Brand Card Styling */
.brand-card {
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Brand Logos */
.brand-logo {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

/* Brand Name Styling */
.brand-card p {
    margin-top: 0.5rem;
    font-weight: 500;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 575px) {
    .brand-logo {
        max-height: 50px;
    }
    .brand-card {
        padding: 0.8rem;
    }
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/soft-wallpaper.png');
  opacity: 0.05;
  pointer-events: none;
}

#partners-slider {
  background: linear-gradient(180deg, #fdf6ff 0%, #f9f9ff 100%);
  position: relative;
  overflow: hidden;
}

#partners-slider::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(134,110,238,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#partners-slider::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,110,254,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.partners-carousel .item {
  padding: 10px;
}

.partners-carousel .item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(134,110,238,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-carousel .item img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(134,110,238,0.35);
}
/* Hero Section Background & Shapes */
.hero-header {
  background: linear-gradient(135deg, #fdf6ff, #f9f9ff);
  position: relative;
  overflow: hidden;
}

/* Abstract decorative shapes */
.bg-shape-1, .bg-shape-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.bg-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #866eee 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite alternate;
}
.bg-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e96efe 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

/* Floating animation for images */
.floating {
  animation: floatUpDown 6s ease-in-out infinite alternate;
}
.floating-small {
  animation: floatUpDown 8s ease-in-out infinite alternate-reverse;
}
@keyframes floatUpDown {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

/* Hero Text Gradient Highlight */
.text-gradient {
  background: linear-gradient(90deg, #866eee, #e96efe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #866eee, #e96efe);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 8px 20px rgba(134,110,238,0.25);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(134,110,238,0.35);
}
.btn-outline-primary {
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: #866eee;
  color: #fff;
  border-color: #866eee;
  transform: translateY(-3px);
}

/* Image shadows and rounded corners */
.hero-images img {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(134,110,238,0.25);
}
/* Hero Section Background & Shapes */
.hero-header {
  background: linear-gradient(135deg, #fdf6ff, #f9f9ff);
  position: relative;
  overflow: hidden;
}

/* Abstract decorative shapes */
.bg-shape-1, .bg-shape-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.bg-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #866eee 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite alternate;
}
.bg-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e96efe 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

/* Floating animation for images */
.floating {
  animation: floatUpDown 6s ease-in-out infinite alternate;
}
.floating-small {
  animation: floatUpDown 8s ease-in-out infinite alternate-reverse;
}
@keyframes floatUpDown {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

/* Hero Text Gradient Highlight */
.text-gradient {
  background: linear-gradient(90deg, #866eee, #e96efe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #866eee, #e96efe);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 8px 20px rgba(134,110,238,0.25);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(134,110,238,0.35);
}
.btn-outline-primary {
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: #866eee;
  color: #fff;
  border-color: #866eee;
  transform: translateY(-3px);
}

/* Hero Images - dynamic sizes */
.floating-big {
    animation: floatUpDown 6s ease-in-out infinite alternate;
    height: auto;
    width: 100%;
}
.floating-small {
    animation: floatUpDown 8s ease-in-out infinite alternate-reverse;
    height: auto;
    width: 80%;
}

/* Floating Animation */
@keyframes floatUpDown {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* Hero Images Shadow */
.hero-images img {
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(134,110,238,0.25);
}

#testimonials {
    background: linear-gradient(180deg, #fdf6ff 0%, #f9f9ff 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 80px 0;
}

/* Background shapes / soft bubbles */
.testimonial-bg-shape-1,
.testimonial-bg-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.testimonial-bg-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #866eee 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite alternate;
}
.testimonial-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e96efe 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Testimonial Cards */
.testimonial-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(134,110,238,0.15);
}

/* Rounded client images with border */
.testimonial-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #866eee;
}

/* Parent Name Styling */
.testimonial-item h5 {
    color: #4b2cbf;
    font-weight: 600;
}

/* Profession / Relation text */
.testimonial-item span {
    color: #888;
    font-size: 0.9rem;
}

/* Feedback Text */
.testimonial-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Floating animation for background shapes */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}



/* Testimonial Cards */
.testimonial-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(134,110,238,0.15);
}

/* Images */
.testimonial-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #866eee;
}

/* Parent Name Styling */
.testimonial-item h5 {
    color: #4b2cbf;
    font-weight: 600;
}

/* Profession Text */
.testimonial-item span {
    color: #888;
    font-size: 0.9rem;
}

/* Feedback Text */
.testimonial-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}
/* Footer General */
.footer {
    background: #FFFFFF;
    color: #2E1A3D;
    position: relative;
    overflow: hidden;
}

.footer h4 {
    color: #832693;
    font-weight: 600;
}

.footer a.btn-link {
    color: #2E1A3D;
    display: block;
    margin-bottom: 5px;
    transition: 0.3s;
}
.footer a.btn-link:hover {
    color: #832693;
    text-decoration: underline;
}

/* Social Buttons */
.footer .btn-square {
    border: 2px solid #832693;
    color: #832693;
    transition: all 0.3s ease;
}
.footer .btn-square:hover {
    background: #832693;
    color: #FFFFFF;
}

/* Newsletter Input */
.footer .input-group .form-control {
    border-radius: 0.5rem 0 0 0.5rem;
    outline: none;
}
.footer .input-group .btn-gradient {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Copyright Section */
.container-fluid.bg-light {
    background: #F7F1FF;
    border-top: 2px solid #832693;
}
.container-fluid.bg-light a {
    color: #832693;
}
.container-fluid.bg-light a:hover {
    color: #B992FF;
}

/* Footer Bubbles */
.footer-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(131,38,147,0.08);
    pointer-events: none;
    animation: floatBubble 12s ease-in-out infinite alternate;
    z-index: 0;
}
.footer-bubble.bubble1 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
}
.footer-bubble.bubble2 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation-duration: 15s;
}
.footer-bubble.bubble3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 25%;
    animation-duration: 18s;
}

@keyframes floatBubble {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}


       /* Copyright */
    .footer-copy {
        background: #F7F1FF;
        border-top: 2px solid #832693;
        padding: 20px 0;
        text-align: center;
    }
    .footer-copy a {
        color: #832693;
        font-weight: 600;
    }
    .footer-copy a:hover {
        color: #B992FF;
        text-decoration: underline;
    }


