:root {
    --primary: #4e29a3;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #02132e;
    --orange-clr: #ffc107;
    --purple-clr: #5a2677;
    --gray-clr: #898989;
    --blue:#264585;
    --black: #040507;
}

body {
  overflow-x: hidden;
}
.bg-purple {
background-color: var(--purple-clr);
}
.bg-blue{
    background-color: var(--blue);
}
.bg-orange {
    background-color: var(--orange-clr);
}

.bg-black{
    background-color: var(--black);
}
/* .bg-dark-blue {
    background-color: var(--dark-blue-clr);
} */

.text-green {
    background-color: var(--orange-clr);
}

.text-gray {
    color: var(--gray-clr);
}

.bg-dark-blue {
    background-color: var(--dark);
}

.bg-gray {
    background-color: var(--gray-clr);
}

/* body{
    background: #f1fbff;
} */
.dbtn {
    border: .1rem solid var(--orange-clr) !important;
    padding: .5rem 1.5rem;
    font-weight: 500;
}

.dbtn:hover {
    background: transparent;
    color: var(--green-clr);
}


/* nav section */
.navbar {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.Top-navbar{
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, orange, red, purple) 1;}

.navbar-nav a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-light .navbar-brand {
    color: #000;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus .navbar-light .navbar-brand:hover {
    color: #000
}

.navbar-light .navbar-nav .navbar-link {
    color: #000;
}

.w100 {
    height: 100vh;
}

/* ----------------------Carousel Section--------------------- */

.carousel-item {
    height: 85vh;
    min-height: 300px;
}

.carousel-caption {
    bottom: 90px;
    z-index: 2;
    padding-left: 90px;
}

.carousel-caption h4 {
    text-align: left;
    /* margin: 0px; */
}

.carousel-caption .mb-3 {
    margin-bottom: -1rem !important;
}

.carousel-caption h1 {
    font-size: 70px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    margin-top: 25px;
    line-height: 1.3;
    text-align: left;
}

.carousel-caption p {
    width: 60%;
    /* margin: auto; */
    font-size: 20px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}


@media (max-width: 575.98px) {
    .carousel-caption {
        padding-left: 30px ;
        margin-bottom: 30px;
    }
    .carousel-caption h4{
        font-size: 17px;
    }
    .carousel-caption h1 {
      font-size: 27px;
    }
    .carousel-caption p {
      font-size: 14px;
      width:80%;
    }
    .carousel-caption .btn {
      font-size: 14px;
      padding: 6px 10px;
    }
  }
  
  /* Tablet: ≤ 768px */
  @media (min-width: 576.98px) and (max-width: 767.98px) {
    .carousel-caption {
        padding-left: 30px;
        margin-bottom: 60px;
    }
    .carousel-caption h4{
        font-size: 20px;
    }
    .carousel-caption h1 {
      font-size: 50px;
    }
    .carousel-caption p {
      font-size: 15px;
      width:76%;
    }
}
  
  /* Small Laptop: ≤ 992px */
  @media (min-width: 768.98px) and (max-width: 991.98px) {
    .carousel-caption h4{
        font-size: 20px;
    }
    .carousel-caption h1 {
      font-size: 50px;
    }
    .carousel-caption p {
      font-size: 15px;
    }
  }
  
  /* Medium Desktop: ≤ 1350px (your screen size) */
  /* @media (max-width: 992.98px) and (max-width: 1350px) {

    .carousel-caption h1 {
      font-size: 16px;
    }
    .carousel-caption p {
      font-size: 18px;
    }
  } */
  
.carousel-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.row {
    margin-top: 30px;
}

/* -----------------------About section------------------------ */
/* .services .cards:hover{
    background-color: #ffc107;
} */
 .about{
    margin-top: 10px;
 }

 /* --------------noties and announcement section---------------*/
 /* Blue Heading */
.bg-blue{
    background-color: #0d6efd;
}

.text-light{
    color: #ffffff;
}

/* Notice Box */
.about-img{
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Notice List */
.about-img ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Notice Items */
.about-img ul li{
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* Notice Link */
.about-img ul li a{
    text-decoration: none;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Hover Effect */
.about-img ul li:hover{
    background: #f5f5f5;
}

/* New Image */
.about-img ul li img{
    width: 25px;
    margin-left: 8px;
}

/* Scroll Animation */
.animate-scroll-up{
    height: 220px;
    overflow: hidden;
}

.animate-scroll-up li{
    animation: scrollUp 12s linear infinite;
}

@keyframes scrollUp{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-100%);
    }
}

 /* --------------------Services Section---------------- */

 .text-body {
    --bs-text-opacity: 1;
    color: #ffc107 !important;
}
 
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #ffc107;
}
.card p:hover{
    color: black;
}
.card:hover .btn  {
    background-color: #ffffff;
    /* color: #4e29a3; */
}
.services .card-body i {
    font-size: 40px;
}

.services .card-body p {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-clr);

}

.services .card-title {
    /* font-size: 18px; */
    margin-bottom: 20px;
}

/* ------------------Contact Section-------------------- */

#contact .row {
    margin-top: -37px;
}

#contact h1,#about-us h1 ,#Services h1{
    font-weight: 500;
}

/* ------------------footer Section--------------------- */
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;

    text-transform: capitalize;
    /* transition: .3s; */
    text-decoration: none;
}
.footer a:hover{
    color: var(--orange-clr);
}
.btn-square i{
    font-size: 20px;
}

.footer .copyright {
    border-top: 1px solid var(--gray-clr);
}

/* .footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
} */


/* ------------------------Responsive CSS ---------------------*/
@media only screen and (min-width:768px) and (max-width:991px) {
    .carousel-caption {
        bottom: 150px;
    }

    .carousel-caption p {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }

    .carousel-caption {
        bottom: 125px;
    }

    .carousel-caption h5 {
        font-size: 21px;
    }

    .carousel-caption a {
        padding: 10px 15px
    }
}

/*====================================================================inner page banner*/
.inner_banner{background-image:url(../images/about-banner.jpg);
    background-repeat:no-repeat;
    height:408px;
    background-size:100% 100%;
    padding-top:100px;
}
.inner_banner h1{text-align: center;color: #fff;font-family: Quattrocento;font-weight: 700;}
.inner_banner p{text-align: center;color: #ffc107;font-family: 'Quattrocento Sans', sans-serif;font-weight: 700;text-transform: uppercase;}
/*breadcrum*/
.breadcrum1 li, .breadcrum1 a{font-family: 'Quattrocento Sans', sans-serif;font-weight: 700;margin-bottom: 20px; font-size: 18px;text-transform: uppercase;color: #fff;}
.breadcrum1 li.active-li{color: #ffc107;}
/*====================================================================end inner page banner*/


/* ========================event Section========================= */
/* .event-section {
      margin-bottom: 50px;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .event-name {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      border-radius: 5px;
      object-fit: cover;
      height: 150px;
    } */