 
body {
    font-family: 'Roboto', sans-serif;
    color: #2a2121;
    background: #ffffff;
    line-height: 1.8;
    font-size: 15px;
    overflow-x: hidden;
}
/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

/* back-to-top */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: #FF8C00; /* Yellow background */
    color: #2a2121;
    transition: 0.4s ease;
    z-index: 999;
    transform: skew(18deg);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: #add8e6; /* Light Blue hover */
    color: #000;
    transform: skew(18deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.4s ease;
    border-radius: 6px;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Primary Button - Yellow */
.btn.btn-primary {
    background-color: #FF8C00;  /* Yellow */
    color: #000;
    border: none;
    transform: skew(18deg);
    transition: 0.4s ease;
}

.btn.btn-primary span,
.btn.btn-primary i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-primary:hover {
    background: #add8e6; /* Light Blue on hover */
    color: #000;
    transform: skew(18deg) scale(1.05);
}

/* Light Button */
.btn.btn-light {
    color: #FF8C00;
    border: 1px solid #FF8C00;
    transform: skew(18deg);
    transition: 0.4s ease;
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-light:hover {
    color: #130d0d;
    background: #add8e6; /* Light Blue hover */
    border-color: #add8e6;
}

/* Dark Button */
.btn.btn-dark {
    color: #FF8C00;
    border: 1px solid #FF8C00;
    transform: skew(18deg);
    transition: 0.4s ease;
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-dark:hover {
    color: #2c2828;
    background: #10a7d9; /* Light Blue hover */
    border-color: #add8e6;
}

/*** Navbar Start ***/
/* ====== HEADER TOP ====== */
.header-top {
  background:#ff8c00;
  border-bottom: 2px solid #eee;
  position: relative;
  z-index: 1000;
}

.navbar-brand h1 {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

/* ====== TOPBAR ====== */
.topbar a,
.topbar span {
  color: #555;
  font-size: 14px;
}

/* ====== NAVBAR ====== */
.nav-bar {
  position: relative;
  z-index: 999;
  border-top: 2px solid #87bfff;
  border-bottom: 3px solid #5aa9e6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
 background: linear-gradient(330deg, #ff8c00, #48cdfa);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  z-index: -1;
}

/*
.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} */

.nav-item {
  position: relative;
}

.nav-link {
  color: #222 !important;
  font-weight: 500;
  padding: 12px 14px !important;
  font-size: 15px;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
   background: linear-gradient(135deg, #ff8c00, #48cdfa) !important;
}

/* ====== DROPDOWN ====== */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  transition: all 0.3s ease;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #ff8c00;
}

/* ====== APPLY NOW BUTTON ====== */
.btn-primary {
  background-color: #007bff;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    text-align: left;
  }

  .nav-item .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-item.show .dropdown-menu {
    display: block;
  }

  .navbar-toggler {
    border: none;
  }
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
   background: linear-gradient(#00cdf6, rgb(243 161 61)), url();
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #3f2e2e; /* White breadcrumb links */
    transition: 0.3s ease;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: #FF8C00; /* Yellow hover */
    text-decoration: underline;
}

/*** Hero Section ***/
.hero-section {
    background-image: url("../photo/school\ photo.jpeg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-half-1,
.hero-bg-half-2 {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    /* position: absolute; */
    /* width: 58%; */
    height: 100%;
    right: 0;
    top: 0;
}

/* .hero-bg-half-1 {
    /* background-color: rgba(173, 216, 230, 0.5); Light Blue overlay
} */

/* .hero-bg-half-2 {
    background-color: rgb(255, 140, 0);
} */

@media (max-width: 991px) {
    .hero-bg-half-1 {
        /* background-image: url(../img/header-2.jpg); */
        filter: grayscale(0%);
        transform: scale(100%);
        width: 100%;
        background-position: center center;
    }

    .hero-bg-half-2 {
        /* background-image: url(../img/header-1.jpg); */
        filter: grayscale(0%);
        transform: scale(100%);
        width: 100%;
        background-position: center center;
    }
}

/*** Carousel Hero Header ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: #ffffff; /* White background */
    background:#FF8C00;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #add8e6; /* Light Blue hover */
    color: #000;
    transform: skew(18deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    z-index: 9;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}

/*** Carousel Hero Header End ***/


/*** About Start ***/
.about {
    position: relative;
    overflow: hidden;
    background: #ADD8E6;
}

@media (min-width: 992px) {
    .about::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        right: -400px;
        background: #FF8C00;
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        left: -400px;
        background: #FF8C00;
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 0px !important;
    }
}

.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
}

.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: rgb(165, 222, 222);
    color:black;
}

.about .tab-class .nav .nav-item a span {
    transform: skew(-18deg);
}

.about .tab-class .nav .nav-item a.active {
    background: rgb(255, 140, 0);
    color:black;
}
/*** About End ***/

/*** Fitness Goal Start ***/
.goal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(255 158 40), rgb(3 251 255)), url(https://gurukuldevrishi.org/wp-content/uploads/2024/03/WhatsApp-Image-2024-03-29-at-11.55.28-2-300x200.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.goal::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    /* top: 0;
    right: 0;
    margin-right: -200px; */
    /* transform: skew(18deg); */
    background: rgba(200, 0, 54, .1);
}

.goal .goal-item {
    transform: skew(10deg);
    box-shadow: 0 0 45px rgba(12, 24, 68, 0.4);
    margin: 0 15px 15px 15px;
}

@media (min-width: 992px) {
    .goal .goal-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .goal .goal-content {
        padding-bottom: 0;
    }
}
/*** Fitness Goal End ***/

/*** Features Start ***/
.feature {
    overflow: hidden;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 60px;
    transform: skew(10deg);
}

.feature .feature-shaps {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-top: -200px;
    transform: skewX(-10deg);
    border: 3px solid #FF8C00; /* Yellow */
    z-index: 2;
}

@media (max-width: 576px) {
    .feature .feature-shaps {
        width: 90%;
        margin-left: 5%;
    }
}

.feature .feature-item {
    position: relative;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
}

.feature .feature-item .feature-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img::after {
    height: 100%;
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-content {
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 1;
}

.feature .feature-item .feature-content h4 {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-content h4 {
    color: #fa0000;
}

.feature .feature-item .feature-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: #3ee3ec;
    transition: 0.5s;
    z-index: -1;
}

.feature .feature-item:hover .feature-content::after {
    height: 100%;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -122px;
    transform: skew(18deg);
    background: #212529;  /* var(--bs-dark) -> Dark Gray (Almost Black) */
    color: #ffffff;       /* var(--bs-white) -> Pure White */
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev i,
.feature-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.feature-carousel .owl-nav .owl-prev {
    left: 0;
}
.feature-carousel .owl-nav .owl-next {
    right: 150px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
  background: #FF8C00;  /* var(--bs-primary) -> Bright Blue */
  color: #ffffff;       /* var(--bs-white) -> Pure White */
}
/*** Features End ***/

/*** Courses Start ***/
.courses {
    position: relative;
    overflow: hidden;
background: linear-gradient(rgb(9, 224, 228), #E4993E), url(https://gurukuldevrishi.org/wp-content/uploads/2024/03/WhatsApp-Image-2024-03-29-at-11.55.24-1-300x200.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.text-white {
    color: #2c1f1f !important;
}
.courses .courses-item {
    position: relative;
    overflow: hidden;
}

.courses .courses-item p {
    color:black;
    transition: 0.5s;
}

.courses .courses-item:hover p {
color: #79fffd; /* var(--bs-body-color) -> Dark Gray */
}

.courses-item .courses-item-inner {
    position: relative;
    transform: skew(4deg);
    margin: 0 15px;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner {
    background: none;
}

.courses-item .courses-item-inner:hover {
    transform: skew(-4deg);
}

.courses-item .courses-item-inner .data-info .courses-trainer {
color: #2d1f1f; /* Pure White */
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .data-info .courses-trainer {
    color: #79fffd; /* var(--bs-body-color) -> Dark Gray */
}

.courses-item .courses-item-inner .data-info .courses-date {
    font-size: 13px;
}

.courses-item .courses-item-inner .courses-icon-img {
    width: 80px; 
    height: 80px;
    background: ( rgb(255, 140, 0), rgb(173, 216, 230));
    transition: 0.5s;
}

.courses-item .courses-item-inner .courses-icon-img img {
    filter: grayscale(100%);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .courses-icon-img img {
    filter: grayscale(0%);
}

.courses-item-inner:hover a {
    color: #422f2f; /* Pure White */
    transition: 0.5s;
}

.courses-item-inner:hover a:hover {
    color: #3ee3ec; /* var(--bs-primary) -> Bright Cyan */
}

.courses-item-inner::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background:rgba(140, 200, 255, 0.9),rgb(255, 140, 0);
    transition: 0.5s;
    z-index: -1;
}

.courses-item-inner:hover:after {
    height: 100%;
}
/*** Courses End ***/

/*** Blog Start ***/
.blog {
    overflow: hidden;
}

.blog .blog-item {
    position: relative;
    border: 1px solid #FF8C00; /* Yellow border */
    transition: 0.5s ease;
    border-radius: 8px;
}

.blog .blog-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog .blog-item .blog-content {
    background: #ffffff;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s ease;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(100deg);
    background: #FF8C00; /* Yellow overlay */
    border: none;
    transition: 0.5s ease;
    z-index: -1;
    opacity: 0.3;
}

.blog .blog-item .blog-img::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(-100deg);
    background: #add8e6; /* Light Blue overlay */
    border: none;
    transition: 0.5s ease;
    z-index: -1;
    opacity: 0.3;
}

.blog .blog-item:hover .blog-img::after,
.blog .blog-item:hover .blog-img::before {
    opacity: 0.6;
}

.blog-content .blog-comment {
    transform: skew(8deg);
    background: #add8e6; /* Light Blue background */
    color: #000;
}

.blog-content .blog-comment div.small,
.blog-content .blog-comment span {
    transform: skew(-4deg);
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;
}

.blog-carousel .owl-dots {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: #add8e6; /* Light Blue inactive dot */
    transform: skew(18deg);
    transition: 0.5s ease;
    border-radius: 4px;
}

.blog-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 50px;
    background: #FF8C00; /* Yellow active dot */
    transition: 0.5s ease;
}

.blog-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot.active span::after {
    background: #ffffff;
    height: 30px;
    margin-top: 10px;
}

.blog-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FF8C00; /* Yellow inner dot */
    transition: 0.5s ease;
}

/*** Blog End ***/

/*** Explore Fitness Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background:url("https://gurukuldevrishi.org/wp-content/uploads/2024/03/WhatsApp-Image-2024-03-29-at-11.55.29-2-300x200.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Explore Fitness End ***/

/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 245, 225, .5);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.team .team-item .team-img .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon a  {
    margin: 0 7px;
}

.team .team-item .team-content {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border: 1px solid #FF8C00; /* Yellow border */
    border-top: none;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover .team-content,
.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team .team-item:hover .team-content::after {
    height: 100%;
    background: #add8e6; /* Light Blue background */
}

.team .team-item .team-content h4 {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: #ffffff; /* White text on hover */
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(3 183 241 / 90%),  rgb(236, 138, 19)), url();
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 0, 0.1); /* subtle yellow glow */
    border-radius: 10px;
}

.testimonial-item .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
}

.testimonial-item .testimonial-img {
    border: 2px solid #FF8C00; /* Yellow border */
    border-radius: 50%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-item:hover .testimonial-img {
    border-color: #add8e6; /* Light Blue border on hover */
    transform: scale(1.1);
}

.testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 50%;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    transform: skew(18deg);
    background: #FF8C00; /* Yellow background */
    color: #000; /* Black icon for visibility */
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}
.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #add8e6; /* Light Blue hover */
    color: #ffffff;
    transform: skew(18deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/*** Testimonial End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: linear-gradient(rgba(255, 245, 225, 0.2), rgba(12, 24, 68, 0.1), rgba(200, 0, 54, 0.3));
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    overflow: hidden;
    background: linear-gradient(rgb(0 161 214 / 90%), rgb(255, 140, 0)), url(https://gurukuldevrishi.org/wp-content/uploads/2024/03/WhatsApp-Image-2024-03-29-at-11.55.28-2-300x200.jpeg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer button {
    border: none;
    transition: 0.5s;
}

.footer button:hover {
    background: #ffffff;
    color: #add8e6; /* Light Blue text on hover */
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item .footer-item-img {
    transform: matrix(1, -0.09, 0, 1, 0, 0);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover {
    transform: matrix(1, 0.09, 0, 1, 0, 0);
}

.footer .footer-item .footer-item-img img {
    filter: grayscale(50%);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover img {
    filter: grayscale(0%);
}

.footer .footer-item a {
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff; /* White text by default */
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #FF8C00; /* Yellow hover effect */
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: #ffffff;
    color: #FF8C00; /* Yellow text */
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/* change colors as per your need */

 .text-primary {
    color: #040818 !important}

.text-muted {
    color: #000000 !important;
}
.bg-primary {
    background-color: #FF8C00 !important;
}
.btn-primary {
    color: #311e1e!important;
    background-color:#56c8e7!important;
}
.text-body {
    color: #151618 !important;
}
.bg-dark {
    background-color: #86e6f9 !important;
}

.topbar a, .topbar span {
    color: #000000!important;
    font-size: 17px!important;
}
 
