
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scrolling */
}



#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}
p{
    color: var(--bs-gray);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.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;
}

.line{
    border-color: #008080;
}

.btn.btn-primary {
    color: var(--bs-white);
    background-color: var(--bs-teal);
    border-color: #008080;
}

.btn.btn-primary:hover {
    background: var(--bs-light);
    border: 3px solid var(--bs-teal);
    color: var(--bs-teal);
}

.btn.btn-secondary {
    color: var(--bs-white);
    background-color: var(--bs-danger);
    border: var(--bs-danger);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-white);
    border: 3px solid var(--bs-danger);
    color: var(--bs-danger);
}

.btn.btn-success {
    color: var(--bs-white);
    background-color: var(--bs-green);
    border:  2px solid var(--bs-white);
   
}

.btn.btn-success:hover {
    background: var(--bs-white);
    border: 3px solid var(--bs-green);
    color: var(--bs-green);
}
/*** Topbar Start ***/

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.float {
  position: fixed;
  bottom: 10px;
  right: 10px; /* Set distance from the right */
  z-index: 1000;
  animation: bounce 1s infinite; /* Apply bounce animation */
}

.image{
    background-image:url('https://firebasestorage.googleapis.com/v0/b/aasra-messaging-system.appspot.com/o/website-assets%2Fwater-bg.png?alt=media&token=8f8ea766-812f-49ce-8ab0-e749b8e4a681');
    background-repeat:no-repeat;
    background-position: 50%;
}

img {
  width: 103%; /* Ensures the image takes up the full width of the container */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Prevents extra space under the image */
  object-fit: cover; /* Crops the image gracefully, if necessary */
}

/* Optional: Media Query for additional control */
@media screen and (max-width: 540px) {
  .container {
    padding: 0 5px; /* Adjust padding for ultra-small screens */
  }
}

.price-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}

 /* Confetti Particles */
 .confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: red;
  opacity: 0;
  border-radius: 50%;
  animation: blast 1.5s ease-out forwards;
}

@keyframes blast {
  0% {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
  100% {
      opacity: 0;
      transform: translateY(-100px) scale(1.5);
  }
}

.price-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  transition: 0.3s ease-in-out;
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-heading {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: teal;
}

.price-amount {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
}

.gold {
  border-left: 5px solid #ffd700;
}

.silver {
  border-left: 5px solid #c0c0c0;
}


#portfolio {
    padding: 60px 0;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  }
  
  #portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
  }
  
  #portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 6px 20px;
    font-size: 12px;
    line-height: 20px;
 
    border-radius: 50px;
    text-transform: uppercase;
    background: #ecf5ff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #portfolio #portfolio-flters li:hover,
  #portfolio #portfolio-flters li.filter-active {
  
    color: #fff;
  }
  
  #portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  #portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  #portfolio .portfolio-item .portfolio-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    margin: 0;
  }
  
  
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: 0.2s linear;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
    font-size: 22px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 0;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
    color: #fff;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
    color: #008080;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #e2effe;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
    display: inline-block;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #474848;
    border-radius: 50%;
    margin: 10px 4px 0 4px;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #fff;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
    background: #008080;
  }
  
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
  #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
    color: #fff;
  }
  
  #portfolio .portfolio-item .portfolio-wrap:hover {
    background: #616161;
  }
  
  #portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }


/* Navbar styling */
/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
    padding: 0px 20px;
    background-color: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.logo img {
  width: 80%; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
}

.nav-link {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    padding: 8px 15px;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s ease;
    margin-right: 20px;
  
    
}

.nav-link:hover {
    color: #008080;
}
.nav-link.active{
  color: #008080;
}

/* Animated underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #008080;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Donate Now Button */
.donate-now-btn {
    background-color: #fc5d01;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.donate-now-btn:hover {
    background-color: #008080;
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.call-now-btn {
    background-color: #008080;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-right:20px ;
}

.call-now-btn:hover {
    background-color: #fc5d01;
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */
@media (max-width: 1050px) {
    /* Align nav links to the start */
    .navbar-nav {
        margin-top: 10px;
    }

    .nav-link {
        text-align: left; /* Align nav items to the left in mobile view */
    }

    .navbar-nav {
        margin-top: 10px;
    }

    /* Adjust Donate Now Button for mobile view */
    .donate-now-btn {
        display: block;
        margin-top: 10px;
        width: 100%; /* Ensures it spans across the full width of the navbar */
    }
    .call-now-btn {
        display: block;
        margin-top: 10px;
        width: 100%; /* Ensures it spans across the full width of the navbar */
    }


    /* Ensure the navbar is fully responsive */
    .navbar-collapse {
        text-align: left; 
        /* Align the collapsible navbar items to the left */
    }
    .navbar-toggler-icon {
        background-color: #333; /* Make the icon darker */
        border-radius: 5px; /* Optional: round the corners of the icon */
    }
    .navbar-toggler{
      display: block;
    }
}



.team-container {


  padding: 20px;
  text-align: center;
  background-color: #008080;
 
}

.team-title {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px #ff00ff;
  margin-bottom: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-card {
  position: relative;
  width: 300px;
  margin: 20px;
  background-color: white;

  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: rotate(0deg) translateY(-10px);
}

.card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 5px solid #1a1b2f;
}

.card-content {
  padding: 20px;
  text-align: left;
  position: relative;
  color: #008080;
}

.card-title {
  font-size: 1.5em;
  color: #008080;
  margin: 10px 0;
}

.card-text {
  font-size: 1.1em;
  font-weight: bold;
  color: #000;
}

.card-description {
  font-size: 0.9em;
  color: red;
  margin: 10px 0 20px;
  font-style: italic;
}


/* Custom styles */

.carousel-item img {
    object-fit: fill; /* Ensures the entire image is visible */
    width: 100%;        /* Image width fills the container */
    max-height: 750px;  /* Limits the maximum height */
    height: 100%;       /* Maintains aspect ratio */
    background-color: #000;
}

/*** Carousel Hero Header Start ***/

.carousel-control-prev,
.carousel-control-next {
    display: none;
}





@media (max-width: 992px) {
    


    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/
/*** Gallery Start ***/

.site-section {
    padding: 4em 0; 
    
  }

  .img-hover {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px; }
    .img-hover img {
      -webkit-transition: .3s ease all;
      -o-transition: .3s ease all;
      transition: .3s ease all; }
    .img-hover:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: #008080;
      opacity: 0;
      visibility: hidden;
      content: "";
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .img-hover .icon {
      position: absolute;
      z-index: 2;
      color: #fff;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
      transform: translate(-50%, 100%);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: .2s all ease;
      -o-transition: .2s all ease;
      transition: .2s all ease; }
    .img-hover:hover img {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
    .img-hover:hover:before {
      opacity: .8;
      visibility: visible; }
    .img-hover:hover .icon {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
/*** gallery End ***/

.image-style {
    height: 80px;
    width: 100%;
  }
  

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(https://firebasestorage.googleapis.com/v0/b/aasra-messaging-system.appspot.com/o/website-assets%2FUntitled%20design.png?alt=media&token=d1e802d2-39e6-4f80-a5bc-74b29ae82dff);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg{
    background-color: var(--bs-teal);
}

.image-style {
  height: 200px;width: 100%;object-fit: cover;
}


.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-teal);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-teal) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    margin-left: 30px;
}


.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-teal);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-teal);
}

.about .about-img .about-exp {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-teal);
    color: var(--bs-white);
    border: 1px solid var(--bs-teal);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}





/*** Container ***/
.container {
    position: relative;
    text-align: center;
    color: white;
    
  }

  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }


/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-teal);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
    
}

.service-item .service-content a{
    transition: 0.5s;
}
.service-item .service-content p {
    transition: 0.5s;
    text-align: justify;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-teal);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-teal);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-teal) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(165, 247, 240, 0.9), #008080), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.full_container {
  position: relative;
  overflow: hidden;
  background: #008080;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-teal);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-teal) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-teal);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-teal);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/

.fundraise-item {
    -webkit-box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px -10px rgb(0, 128, 128);
    border: none;
    height: 100%;
   
    margin: 350;
   
  
   
   
    
  } 
    .fundraise-item .custom-progress-success {
      background-color: #f2f2f2;
      height: .2rem;
      border-radius: 4px;
      margin-bottom: 20px; }
    .fundraise-item a {
      color: #000; }
      .fundraise-item a:hover {
        color: #008080; }
    .fundraise-item .donation-time {
      color: #ccc;
      display: block;
      font-style: italic;
      font-size: 15px; }
    .fundraise-item .card-title {
      font-size: 24px; }

      .person-donate em {
        font-family: serif; }
      
      .person-donate .item img {
        border-radius: 20px;
        width: 250px;
        height: 250px;

        margin: 10px;
        
     }

     .person-donate .item  {
        border-radius: 20px;
       border: 2px solid var(--bs-teal);
       padding: 20;
        
     }
     

      .person-donate h2 {
        font-size: 20px;
        margin: 0;
        padding: 0; }
      
      .person-donate p {
        line-height: 1.5; }
      
      .person-donate .time {
        color: #b3b3b3;
        font-size: 13px; }
      
      .person-donate .donate-amount > div {
        width: 50%;
        padding: 10px; }
      
      .person-donate .donate-amount .label {
        background: #f2f2f2; }
      
      .person-donate .donate-amount .amount {
        background: #28a745;
        color: #fff; }

        .site-section {
            padding: 4em 0; 
            
          }

/*** Copied Start ***/
.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

          .icon{
            position:relative ;
            top: -10px;
            right: -10px;
          }
          .icon-class{
            position:relative ;
            top: 0px;
            right: -80px;
          }

/*** testimonial Start ***/
.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    left:0;
    background: var(--bs-teal);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
    border-color: #008080;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-teal);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0px;
    background: var(--bs-teal);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}
.testimonial-carousel .owl-item img {
    width: 250px;
    margin: auto;
  }

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-teal);
    color: var(--bs-white);
    border-color: #008080;
}



.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-teal);
    background: var(--bs-teal);
    transition: 0.5s;
    
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-teal);
    background: var(--bs-teal) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-color: #008080;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position:absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}
.container-fluid {
    padding-left: 0;
    margin-left: 0;
   
  
   }

  

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-teal);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
    text-align: start;
    flex-wrap: wrap;

}

.footer .footer-item p {
    line-height: 35px;
    color: var(--bs-white);
    text-align: justify;
}



.navbar-toggler {
  margin-left: auto; /* Push the hamburger menu to the far right */
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-teal) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
   
    background: var(--bs-grey);
}
/*** copyright end ***/

.navbar-brand {
  display: flex;
  align-items: center; /* Center align content vertically */
  max-width: 200px; /* Set a reasonable max width for larger screens */
}

@media (max-width: 438px) {
  .btn-xl-square {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .btn-m-square {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}


.navbar-brand img {
  width: 200%; /* Make logo responsive */
  height: auto; /* Maintain aspect ratio */
  max-width: 300px; /* Limit maximum width */
}


@media (max-width: 1520px) {
  .navbar-brand img {
    max-width: 300px; /* Adjust size for tablets */
  }
}



@media (max-width: 1280px) {
  .navbar-brand img {
    max-width: 250px; /* Adjust size for tablets */
  }
}

/* Media Query for Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .navbar-brand img {
    max-width: 250px; /* Adjust size for tablets */
  }
}

/* Media Query for Smaller Screens (Mobile) */
@media (max-width: 768px) {
  .navbar-brand img {
    max-width: 280px; /* Adjust size for smaller screens */
  }
}

/* Media Query for Very Small Screens */
@media (max-width: 480px) {
  .navbar-brand img {
    max-width: 250px; /* Further reduce size for very small devices */
  }
}

@media (max-width: 350px) {
  .navbar-brand img {
    max-width: 220px; /* Further reduce size for very small devices */
  }
}

@media (max-width:700)and (min-width:200) {

  .navbar-toggler {
    display: block; /* Ensure hamburger menu is visible */
  }
  
    .carousel-caption-1-content .carousel-caption-1-content-btn {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .carousel-caption-1-content {
        max-width: 100%;
        padding: 20px; /* Add padding if necessary */
    }
    

    .ftco-section {
        padding: 7em 0; }
      
      .ftco-no-pt {
        padding-top: 0; }
      
      .ftco-no-pb {
        padding-bottom: 0; }
      
      .heading-section {
        font-size: 28px; }
      
      .img {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }
      
      .owl-carousel {
        position: relative; }
        .owl-carousel .owl-item {
          opacity: 1; }
          .owl-carousel .owl-item.active {
            opacity: 1; }
        .owl-carousel .owl-nav {
          position: absolute;
          top: 50%;
          width: 100%; }
          .owl-carousel .owl-nav .owl-prev,
          .owl-carousel .owl-nav .owl-next {
            position: absolute;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            margin-top: 0;
            color: white !important;
            -webkit-transition: 0.7s;
            -o-transition: 0.7s;
            transition: 0.7s;
            opacity: 1; }
            @media (prefers-reduced-motion: reduce) {
              .owl-carousel .owl-nav .owl-prev,
              .owl-carousel .owl-nav .owl-next {
                -webkit-transition: none;
                -o-transition: none;
                transition: none; } }
            .owl-carousel .owl-nav .owl-prev span:before,
            .owl-carousel .owl-nav .owl-next span:before {
              font-size: 30px; }
          .owl-carousel .owl-nav .owl-prev {
            left: 20px; }
          .owl-carousel .owl-nav .owl-next {
            right: 20px; }
        .owl-carousel .owl-dots {
          text-align: center;
          margin-top: 0;
          position: absolute;
          bottom: 20px;
          right: 0;
          left: 0; }
          .owl-carousel .owl-dots .owl-dot {
            width: 10px;
            height: 10px;
            margin: 5px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            position: relative; }
            .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
              outline: none !important; }
            .owl-carousel .owl-dots .owl-dot.active {
              background: #ff5959; }
      
      .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y; }
      
      .hero {
        position: relative; }
      
      .work {
        width: 100%; }
        .work .img {
          width: 100%;
          height: 600px;
          position: relative;
          z-index: 0;
          -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
          -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
          box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26); }
          .work .img:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            z-index: -1;
            background: rgba(255, 93, 177, 0);
            background: -moz-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), color-stop(100%, black));
            background: -webkit-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -o-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -ms-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), to(black));
            background: linear-gradient(to bottom, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#000000', GradientType=0 );
            opacity: .3; }
          .work .img .icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #fff;
            display: block;
            opacity: 0;
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s; }
            @media (prefers-reduced-motion: reduce) {
              .work .img .icon {
                -webkit-transition: none;
                -o-transition: none;
                transition: none; } }
        .work .text h3 {
          font-size: 18px;
          font-weight: 500; }
          .work .text h3 a {
            color: #000; }
        .work .text span {
          font-size: 12px;
          letter-spacing: 1px;
          color: rgba(0, 0, 0, 0.3);
          text-transform: uppercase;
          font-weight: 500; }
        .work:hover .img .icon {
          opacity: 1; }
      
}
