/* You can add global styles to this file, and also import other style files */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}

p,
a,
li,
div,
span {
  font-family: "Poppins", sans-serif;
}

:root {
/*    --primary-color: #F4CDDF;  */
 --primary-color:#F055D5; 
  --secondary-color: #05488B;
  --terrtiary-color: #F6F2F6;
  --light-shade: #ffffff;
  --dark-shade: black;
}

.title-wrap{
  margin-bottom: 2rem;
  h3{
    color: var(--dark-shade);
    padding: 0px 10px;
    font-weight: 600;
  }
}
hr.clods{
  margin-bottom: 1rem;
    margin-top: 1rem;
    background-color: var(--primary-color);
    border-top: 0px solid;
    width: 100px;
    height: 3px !important;
    margin-left: auto;
    margin-right: auto;
    opacity: inherit;
}
.start-section {
  margin-top: 2rem; /* Default for mobile */
}

@media (min-width: 767px) {
  .start-section {
    margin-top: 0rem; /* For desktops and larger screens */
  }
}



.btn-prime{
  background-color: var(--secondary-color);
  border-radius: 30px;
  border: none;
  color: var(--light-shade);
  transform: perspective(1px) translateZ(0px);
    transition: color 0.3s ease 0s;
  padding: 10px 30px;
}
.btn-prime:hover::before{
  transform: scaleY(1);
}
.btn-prime::before{
  background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    bottom: 0;
    content: "";
    left: 0;
    border-radius: 30px;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 50% 0 0;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1;
}

.home-panel{
  padding-top: 5rem;
}
.home-banner{
  background-image: url('./assets/images/banner2.webp');
  background-size: cover;
  background-position: center;
  height: 94vh;
  .header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;

    padding: 10px 0px;
    .logo-img{
      width: 200px;
    }
  }

  /* Initial transparent state */
.header {
  background-color: transparent;
}

/* Class that gets added when scrolling */
.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

  .banner-section{
    h3{
      color: var(--light-shade);
    }
    .listing{
    margin-top: 1.5rem;
      .sub{
        display: flex;
        align-items: center;
        background-color: var(--primary-color);
        color: white;
        border-radius: 30px;
        padding: 5px 10px;
        margin-top: 10px;
        width: fit-content;
        p{
          padding-left: 15px;
          margin: 0px;
        }
      }
      .btn-prime{
        background-color: var(--light-shade);
        color: var(--secondary-color);
        margin-top: 10px;
      }
      .btn-prime:hover{
        color: white;
      }
    }
  }
  
}

/* scroll section */

marquee {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 50px;
    /* Space between items */
    flex-shrink: 0;
}

.marquee-wrapper {
    display: flex;
    animation: slide 10s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* design */
.design{
 /*  h3{
    white-space: ;
  } */
  .design-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #f5f5f5;
    min-height: 220px;
    padding: 2rem;
    -webkit-transition: 0.3s;
    border-radius: 0.8rem;
    .design-sec{
      /* padding: 20px; */
      h3{
        color: var(--secondary-color);
        font-weight: 600;
      }
    }
  }
  .design-card:hover{
    transform: translateY(-.5em);
    background-color: #f4eee8;
    border: solid 1px var(--secondary-color);
  }
}


/* creators */
.collaboration {
  background-image: url('./assets/images/collab-bg.jpg');
  padding: 30px 0px;
}
.collab-card{
  .collab-img{
    width: 100%;
    -webkit-transition: 0.3s;
  }
  .collab-img:hover{
    transform: translateY(-.5em);
    border: solid 1px var(--secondary-color);
  }
  .collab-sec{
    h3{
      color: #707070 !important;
    font-weight: 400;
    padding-top: 15px;
    padding-bottom: 10px;
    margin: 0px;
    font-size: 18px;
    }
  }
}

/* association */
.association{
  .title-wrap{
    h3{
      color: var(--light-shade) !important;
    }
  }
  hr.clods{
    background-color: var(--primary-color) !important;
}
  background-color: var(--secondary-color);
  padding: 30px 0px;
  .asc-card{
    div{
      padding: 0px;
    border: 1px solid #dbdbdb;
    border-radius: 0px;
    text-align: center;
    padding-bottom: 0px;
    margin: 10px;
    }
    .asc-img{
      width: 100%;
      padding: 10px;
    }
  }
}

/* learning */
.learning{
  .learning-card{
    div{
      min-height: 100px;
    }
  /*   display: flex;
        flex-direction: column;
        padding: 20px 10px;
        width: 100%;
        
        gap: 15px;
        min-height: 230px;
        background-color: transparent;
        justify-content: center;
        align-items: center; */
        border-radius: 4px;
        border: solid 3px var(--secondary-color);
        background: transparent;
       
        .learning-img{
          width: 80px;
          object-fit: contain;
        }
        h4{
          padding: 10px;
          text-align: center;
          font-size: 18px;
          min-height: 100px;
        }
  }

  /* .learning-card:hover{
    background-color: var(--primary-color);
    h4{
      color: var(--light-shade);
    }
  } */
}


/* testimonial */
.testimonial{
  padding-bottom: 1rem;
  .testimonial-card{
    padding: 10px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    .section{
      height: 270px;
      p{
        text-align: left;
      }
    }

        .testimonial-img{
          width: 100px;
          border-radius: 50%;
          width: 80px;
          height: 80px;
        }
        h5{
          margin-left: 10px;
        }
  }
}

/* Courses */
.Courses{
  .title-wrap{
    h3{
      color: var(--light-shade) !important;
    }
  }
  hr.clods{
      background-color: var(--primary-color) !important;
  }
  background-color: var(--secondary-color);
  padding: 30px 0px;
  .stripe{
    background-color: var(--light-shade);
    color: var(--secondary-color);
    padding:10px;
  }
  .accordion-item{
    margin-top: 10px;
    border: 0px;
  }
  .accordion-button{
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
        font-size: 18px;
  }
  .accordion-button:not(.collapsed)::after{
  background-image: url('./assets/images/minus.svg');
  }
  .accordion-button::after{
    background-image: url('./assets/images/add.svg');
  }
  .accordion-body{
    background-color: #F5F5F5;
    color: #707070;
    padding: 2rem 2.25rem;
    h4{
      color: var(--dark-shade);
    }
    img{
      border: 2px solid var(--secondary-color);
    }
  }
}



/* swiper pagination */
.swiper-nav{
  padding-bottom: 1;
}
.custom-swiper-navigation {
  display: flex;
  justify-content: center;

  .swiper-design-prev{
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
  justify-content: center;
  align-items: center;
  }
  .swiper-design-next{
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
   .swiper-design-prev:after{
  content: '‹';
  font-size: 40px;
        padding: 0px;
        margin-top: -2px;
  }
  .swiper-design-next:after{
    content: '›';
    font-size: 40px;
        padding: 0px;
        margin-top: -2px;
  }
  .swiper-design-prev:hover,.swiper-design-next:hover{
  background-color: var(--primary-color);
  color: var(--light-shade);
  .swiper-design-prev:after{
    color: var(--light-shade);
  }
  .swiper-design-next:after{
    color: var(--light-shade);
  }
}
}

.custom-swiper-navigation {
  display: flex;
  justify-content: center;

  .swiperCreator-prev{
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
  justify-content: center;
  align-items: center;
  }
  .swiperCreator-next{
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
   .swiperCreator-prev:after{
  content: '‹';
  font-size: 40px;
        padding: 0px;
        margin-top: -2px;
  }
  .swiperCreator-next:after{
    content: '›';
    font-size: 40px;
        padding: 0px;
        margin-top: -2px;
  }

  .swiperCreator-prev:hover,.swiperCreator-next:hover{
    background-color: var(--primary-color);
    color: var(--light-shade);
    .swiperCreator-prev:after{
      color: var(--light-shade);
    }
    .swiperCreator-next:after{
      color: var(--light-shade);
    }
  }
}



.text-light-c{
  color: var(--light-shade);
}
.footer {

  background: var(--secondary-color);

  .social-list {
    list-style-type: none;
    display: flex;
    justify-content: start;
  }
  
  .social-list li {
    padding-right: 20px;
    color: var(--light-shade);
  }
  
  .links {
    text-decoration: none;
    color: var(--light-shade);
  }

  li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.text-mddd-center{
  text-align: left ;
}
.industry-point{
  display: flex;
  flex-wrap: wrap;
  li{
    padding-right: 35px;
  }
}
@media (max-width:768px){
  .home-panel{
  padding-top: 10rem;
}
  .text-mddd-center{
    text-align: center;
  }
  .btn-prime{
    width: 100%;
  }

  .home-banner{
   height: 100%;
    background-image: url('./assets/images/web-mobile.jpg');
  }
  .Courses{
    .accordion-body{
      padding: 1rem 1.25rem;
    }
  }
}