/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300aaff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border:2px solid rgb(80, 192, 236);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.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;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.img1 {
    height: 550px!important;
    width: 100% !important;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }
  
    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

.font{
    font-size: 15px;
}
.services {
    padding: 60px 0;
}

.services-item {
    transition: transform 0.6s ease, box-shadow 0.4s ease;
    border-radius: 20px;
}

.services-item:hover {
    transform: translateY(-20%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
    position: relative;
}

.services-item i {
    color: #0d6efd;
}

.services h5 {
    color: #0d6efd;
}

.btn-pill {
    border-radius: 50px;
}


/*** Services End ***/


/*** Project Start ***/

.project-item {
    perspective: 1000px!important;
  }
  
  .flip-card-inner {
    position: relative!important;
    width: 100%!important;
    height: 200px!important;
    transition: transform 0.6s!important;
    transform-style: preserve-3d!important;
    cursor: pointer!important;
  }
  
  .project-item:hover .flip-card-inner {
    transform: rotateY(180deg)!important;
  }
  
  .flip-front, .flip-back {
    position: absolute!important;
    width: 100%!important;
    height: 100%!important;
    backface-visibility: hidden!important;
    border-radius: 0.5rem!important;
    overflow: hidden!important;
  }
  
  .flip-front {
    background-color: #f8f9fa!important;
    z-index: 2!important;
  }
  
  .flip-back {
    background-color:orange!important;
    color: white!important;
    transform: rotateY(180deg)!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    padding: 1rem!important;
    text-align: center!important;
    font-size: 0.95rem!important;
  }
  .retail-management-text {
     padding: 20px!important;  
    border-radius: 10px!important;  
    font-weight: 700!important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)!important; 
    font-size: 12px!important; 
    line-height: 1.8!important;  
    margin: 20px 0!important;  
    transition: transform 0.3s, box-shadow 0.3s!important;  
  }
  
  .retail-management-text:hover {
    transform: translateY(-5px)!important;  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2)!important;  
  }
  
  .retail-management-text strong {
    font-size: 12px!important;  
    color: #007bff!important;  }
    
/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%!important;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #d46926;
}

.contact-form {
    background: #d45726;
}
.icon-box {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease-in-out;
}

.icon-box:hover {
    transform: scale(1.1);

}
.map{
    height: 570px;
}
@media (max-width:767px) {
    .map{
        height: 200px;
    }
}
/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/
.container-fluid1 {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    animation: fadeInUp 1s ease-in-out;
    margin: auto;
}
.container-fluid2 {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    animation: fadeInUp 1s ease-in-out;
}


h2 {
    font-weight: 700;
    color:black;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, #ff7eb3, #ff4d4d);
    color: white;
    font-weight: bold;
    border-radius: 8px !important;
    padding: 15px;
    text-align: left;
    transition: all 0.4s ease-in-out;
}


.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff2e63, #cc2366);
    color: white;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    font-size: 16px;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
    color: #333;
    font-weight: bold;
}
.accordion-body {
    text-align: left;
}
.container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 60px;
    height: 60px;
}

.card h3 {
    margin: 10px 0;
}

.card p {
    color: #555;
    font-size: 14px;
}
.services {
    padding: 60px 0;
}
.tech-icons img {
    width: 60px;
    height: 60px;
    margin: 10px;
}
 /* Gallery Section *
 .gallery {
    padding: 80px 0;
    text-align: center;
}
.gallery h2 {
    font-weight: bold;
    color: #ff5733;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: 0.4s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 15px;
}
.gallery-item:hover .overlay {
    opacity: 1;
}*/
.project-hover {
    transition: transform 0.3s ease-in-out;
}
.project-hover:hover {
    transform: scale(1.1);
}
.form-container1 {
    background: #e0e0e0;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.h21 {
    font-size: 24px;
}
.h21 span {
    color: #d50072;
    font-weight: bold;
}
.label1 {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}
.input1, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.button1 {
    background: #c62828;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 15px;
    border-radius: 3px;
    cursor: pointer;
}
.button1:hover {
    background: #b71c1c;
}
@media (max-width: 480px) {
    .form-container1 {
        width: 90%;
    }
}
.tick-list {
    list-style: none;
    padding: 0;
}

.tick-list li::before {
    content: "✔";
    color: green; 
    font-weight: bold;
    margin-right: 8px;
}
.blinking-btn {
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    background: linear-gradient(45deg, #4441ff, #2f2bff);
    color: white;
    animation: blink 1.5s infinite alternate, glow 1.5s infinite alternate;
    transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px #6136da; }
    100% { box-shadow: 0 0 20px #2b5dff; }
}

.blinking-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #592bff;
}

.btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}




/* Whats App*/

.floating-buttons1 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

  .floating-buttons1 button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .floating-buttons1 button:hover {
    transform: scale(1.1);
  }

    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
      }
  
      .floating-buttons button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        color: white;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
      }
  
      .floating-buttons button:hover {
        transform: scale(1.1);
      }
  
      #phone-btn {
        background-color: #1f05af;
      }
  
      #phone-btn:hover {
        background-color: #e67e00;
      }
  
      #whatsapp-btn {
        background-color: #25D366; 
      }
  
      #whatsapp-btn:hover {
        background-color: #128C7E;
      }
      .zoom-img {
        transition: transform 0.5s ease;
    }

    .zoom-img:hover {
        transform: scale(1.1);
        z-index: 2;
    }
    @keyframes bounce {
        0%, 100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px); /* or +10px for down */
        }
      }
      
      .bounce-up {
        animation: bounce 1s infinite ease-in-out;
      }
      
      .bounce-down {
        animation: bounce 1s infinite ease-in-out;
        animation-direction: reverse;
      }
      .card-custom {
        border-radius: 1.25rem;
        background: linear-gradient(135deg, #fff7e6, #ffeacc);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
      }
    
      .card-custom:hover {
        transform: translateY(-8px);
        box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.2);
      }
    
      .icon {
        color: #dc3545;
        font-weight: bold;
        font-size: 1.1rem;
        animation: pulseIcon 1.5s infinite;
      }
    
      @keyframes pulseIcon {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
      }
    
      .course-title {
        font-weight: 700;
        text-align: center;
        color: #333;
      }
    
      .card-btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
      }
      .display1{
        display: block;
      }
      .display2{
        display:none;
      }
      @media (max-width:765px) {
        .display1{
            display: none;
          }
          .display2{
            display:block;
          }
    
      }