/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navigation */
.navbar {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar-toggler {
  font-size: 24px;
  background-color: #f83c02;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Hidden on large screens */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2899, 99, 99, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-menu {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: grey;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-menu {
    display: none;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    padding: 20px 0;
  }

  .navbar-menu.show {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* .nav {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2899, 99, 99, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-icon {
  background-color: #f83c02;
  width: 25px;
  height: 3px;
  display: block;
  margin: 5px auto;
}

.logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: grey;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: black;
}
 */
/* Container & Card Layout */
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/*.card {
  background-color: white;
  border-radius: 10px;
  width: 220px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}*/

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.image-wrapper {
  position: relative;
  padding: 15px;
  padding-bottom: 0;
}

.image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.slider {
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  background: white;
  border-radius: 15px;
  bottom: 0;
  left: 15px;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card:hover .image-container {
  transform: translate(8px, -8px);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .profile-image {
  transform: scale(1.05);
}

/* Card Content */
.card-content {
  text-align: center;
  padding: 20px 25px 30px;
}

.job-title {
  color: #3B9B9F;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.name {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* .description {
  color: #cd1f1f;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
} */

.description {
  /*height: 13rem;*/
  text-align: center;
  border-radius: 5px 44px;
  padding: 27px 15px 15px 15px;
  background: linear-gradient(227deg, rgb(244, 75, 3) 0%, rgb(244 102 3 / 30%) 100%);
  color: #cd1f1f;
}

.description p {
  margin: 0;
  color: #fff;
}
/* Responsive styles (optional) */
/*
@media (max-width: 1080px) {
  .container {
    padding: 10px;
  }
  .card {
    width: 300px;
  }
  .image-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 350px;
  }
}
*/
/*Top Button*/
.top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;

  /* Visual styling */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;                             /* Initial text color */
  background-color: #f83c02;              /* Button background */
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: color 0.3s ease, transform 0.3s ease;
}

.top:hover {
  color: #9c1c1c;                         /* Change text color only */
  transform: translateY(-4px);
}

.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center!important;
  padding: 12px 20px !important;
  font-family: 'Segoe UI', sans-serif!important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;    /* Initial text color */
  background-color: #f83c02 !important;             /* Button background */
  border: none !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.btn-primary:hover {
  color: #9c1c1c;                         /* Change text color only */
  transform: translateY(-4px);
}



/*new style css*/
/*  Common For All  */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&display=swap");
:root {
    --theme-color: #f46603;
    
}



/* # Banner Slider # */

#banner-slider,
#banner-slider-mob {
    background-color: #000;
}

#banner-slider .overlay-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#banner-slider .carousel-item,
#banner-slider-mob .carousel-item {
    height: 500px;
}

#banner-slider .carousel-item img,
#banner-slider-mob .carousel-item img {
    opacity: 0.5;
    object-fit: cover;
}

#banner-slider .carousel-caption,
#banner-slider-mob .carousel-caption {
    top: 0px;
    left: 0px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    right: 0;
    bottom: 0;
    margin: auto;
}

#banner-slider .carousel-control-next,
#banner-slider .carousel-control-prev,
#banner-slider-mob .carousel-control-next,
#banner-slider-mob .carousel-control-prev {
    width: 4%;
}

#banner-slider .top-text,
#banner-slider-mob .top-text {
    margin-bottom: 0px;
    font-size: 25px;
    text-align: left;
}

#banner-slider .mid-text,
#banner-slider-mob .mid-text {
    font-size: 55px;
    text-align: left;
}

#banner-slider .buttons,
#banner-slider-mob .buttons {
    text-align: left;
}

#banner-slider .buttons a,
#banner-slider-mob .buttons a {
    font-size: 17px;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 30px;
    font-weight: 700;
    border-radius: 25px;
    transition: 0.3s;
}

#banner-slider .buttons a:hover,
#banner-slider-mob .buttons a:hover {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    transition: 0.3s;
}

#banner-slider-mob {
    display: none;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}

#banner-slider .carousel-item img,
#banner-slider-mob .carousel-item img {
    -webkit-animation: zoom 25s;
    animation: zoom 25s;
}

#banner-slider .carousel-indicators li,
#banner-slider-mob .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#banner-slider .carousel-indicators .active,
#banner-slider-mob .carousel-indicators .active {
    background-color: var(--theme-color);
}



@media screen and (min-width: 767px) {
    .mobile-footer-bottom {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .mobile-footer-bottom {
        display: flex;
        list-style: none;
        position: fixed;
        width: 100%;
        background: var(--theme-color);
        z-index: 999;
        bottom: 0;
        margin: 0;
        padding: 0;
    }
    .mob-call {
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
    }
    .mobile-footer-bottom li {
        flex-grow: 1;
        width: 100%;
    }
    .mobile-footer-bottom li a {
        color: #fff;
        display: flex;
        justify-content: center;
        height: 100%;
        align-items: center;
        padding: 5px;
        font-size: 14px;
    }
    .mobile-footer-bottom li a img {
        width: 30px;
        height: 30px;
    }
    #banner-slider .carousel-caption,
    #banner-slider-mob .carousel-caption {
        width: 60%;
    }
    #service-content .subtitle {
        font-size: 15px;
    }
    #banner .banner-heading {
        font-size: 21px;
    }
    #home-banner-form {
        display: none;
    }
    #banner-slider {
        display: none;
    }
    #banner-slider-mob {
        display: block;
    }
    #banner-slider-mob .mid-text {
        font-size: 30px;
        text-align: left;
    }
    #banner {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


@media (width<380px) {
    .mobile-footer-bottom li a {
        font-size: 12px;
    }
}



@media (width<1200px) {
    #banner-slider .carousel-item {
        height: 400px;
    }}

@media (max-width: 767px) {
    #banner-slider-mob .carousel-item {
        height: 200px;
    }
    p,
    li,
    span,
    strong {
        font-size: 14px;
    }
}












