* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --theme-color1: #0b3b5e;
  --theme-color2: #ff6d2e;
  --theme-color3: #ebf1f5;
  --theme-color4: #7c858c;
  --bg-theme-color1: #0b3b5e;
  --bg-theme-color2: #ff6d2e;
  --bg-theme-color3: #ebf1f5;
  --bg-theme-color4: #7c858c;
  --border-theme-color1: #0b3b5e;
  --border-theme-color2: #ff6d2e;
  --border-theme-color3: #ebf1f5;
  --border-theme-color4: #7c858c;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.primary-btn {
  position: relative;
  font-size: 13px;
  line-height: 25px;
  color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  background: var(--bg-theme-color2);
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  border: none;
  transition: all 0.5s;
  border-radius: 0px;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color1);
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.primary-btn:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.primary-btn:hover {
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border: none;
}
.sec-title {
  margin-bottom: 25px;
}
.sub-title {
  position: relative;
  display: block;
  font-size: 14px;
  color: #07304d;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  /* font-family: 'Calibri';  */
  margin-bottom: 10px;
  padding-top: 10px;
}

ul{
color:#07304d;
}
.sub-title::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 42px;
  background: var(--bg-theme-color2);
  content: "";
}
.sec-title h2 {
  position: relative;
  line-height: 1.2em;
  color: var(--theme-color1);
  font-size: 50px;
  font-weight: 700;
  font-family: 'Calibri';
}
/* scroll-to-top  */

#scroll-to-top {
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 16px;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

/* navbar  */
.navbar {
  z-index: 99999999999999999999999;
  width: 100%;
  
 
}
/* carousel  */
.carousel-bg {
  background: linear-gradient(rgba(51, 91, 131, 0.6), rgba(51, 91, 131, 0.6)),
    url("../assets/img/bg/bg-1.jpg");
  height: 70vh;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
  background-position: center;
  animation: carouselAnimation 10s infinite;
  background-size: cover;
  background-position: top center;
  object-fit: cover;
  position: relative;
}
.carousel-caption {
  right: 0%;
  top: 20%;
  text-align: left;
}

.carousel-inner {
  text-align: left;
}
.carousel-content p {
  font-size: 18px;
  line-height: 36px;
}
@keyframes carouselAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* services section start  */
.service-section {
  position: relative;
  /* margin-top: -100px; */
  /* background: url("../assets/img/pattern-1.png"); */
  /* height: 668px; */
  /* background-repeat: no-repeat; */
  /* object-fit: cover; */
  height: 100%;
  background-color: #ebf1f5;
  width: 100%;
  
 
  
}

.service-section .card {
  position: relative;
  background: #ffffff;
  padding: 80px 20px 20px;
  text-align: center;
  transition: all 300ms ease;
  transition: all 0.5s;
  z-index: 155;
}

.card-icon i {
  position: absolute;
  left: 50%;
  top: -55px;
  margin-left: -55px;
  height: 110px;
  width: 110px;
  background: var(--bg-theme-color2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: 1;
}

.service-section .card:hover .card-icon i {
  background: var(--bg-theme-color1);
}
.service-section .card .img-box {
  overflow: hidden;
  transition: 0.5s all;
}
.service-section .card img {
  transition: 0.5s all;
  object-fit: cover;
}
.service-section .card:hover {
  transform: translateY(-20px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
}
.service-section .card img:hover {
  transform: scale(1, 1.5);
}
.service-section .card p {
  font-size: 16px;
  line-height: 32px;
  color: #7c858c;
  padding: 0 20px;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.service-section .services-text p {
  font-size: 18px;
  color: #07304d;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
.service-section .services-text p strong {
  border-bottom: 2px solid var(--border-theme-color2);
}

/* about section start  */
.about-section {
  position: relative;
  padding: 120px 0 70px;
  padding-bottom: 50px;
  margin-top: -8%;
  margin-bottom: 100px;

  
}
.about-section .about-banner {
  background-image: url(../assets/img/about/about-1.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 90vh;
  position: relative;
}
.about-section .about-banner .about-expert-info {
  background: var(--bg-theme-color2);
  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
  width: 200px;
  height: 150px;
  position: absolute;
  left: 0;
  top: 50px;
}
.about-section .about-banner .about-banner-img {
  background: #fff;
  position: absolute;
  left: 20px;
  bottom: -50px;
}
.about-section .about-banner .about-banner-img::after {
  content: "";
  position: absolute;
  background: #ff6d2e;
  height: 10px;
  width: 60%;
  right: -196px;
  bottom: 0px;
}
.about-section .about-banner .about-banner-img img {
  padding: 20px;
}
.about-section .about-content {
  position: relative;
  z-index: 9;
  
}
.about-section .about-content .about-info {
  position: absolute;
  background: #fff;
  top: 50px;
  left: -100px;
 
  
  box-shadow: 0 15px 18px rgba(0, 0, 0, 0.1);
}
.about-section .about-info p {
  color: #07304d;
  font-family: sans-serif;
}
.about-section .about-info .blockquote p {
  color: var(--theme-color2);
  padding-left: 20px;
  border-left: 5px solid var(--border-theme-color1);
}
.about-section .about-info .youtube-btn {
  position: relative;
}
.about-section .about-info ul li {
  color: var(--theme-color1);
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
}
.about-section .about-info ul li i {
  color: var(--theme-color2);
  font-size: 28px;
  line-height: 30px;
}
.about-section .about-info .youtube-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-theme-color2);
  height: 60px;
  background: #fff;
  width: 60px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #fff;
  z-index: 999;
}

@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  opacity: 0;
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}
.wave-1 {
  animation-delay: 0s;
}
.wave-2 {
  animation-delay: 1s;
}
.wave-3 {
  animation-delay: 2s;
}
/* work section start  */
.work-area {
  position: relative;
  padding: 120px 0 70px;
}
.work-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 42px;
  background: #07304d;
  content: "";
}
.work-block {
  position: relative;
  margin-bottom: 50px;
  margin-top: 50px;
  z-index: 1;
  text-align: center;
}

.work-card-icon {
  background: #fff;
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -50px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  left: 50%;
  font-size: 54px;
  transition: all 300ms ease;
  margin-left: -50px;
  color: var(--bg-theme-color2);
  transition: all 0.5s;
}
.work-card-icon::after {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  content: "";
  transition: all 300ms ease;
}
.work-card-body {
  position: relative;
  background: var(--bg-theme-color3);
  padding: 85px 30px 30px;
  margin-bottom: 40px;
  transition: all 500ms ease;
}
.work-card-body::after {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--border-theme-color3);
  content: "";
  transition: all 300ms ease;
}
.work-block h4 {
  position: relative;
  color: var(--theme-color1);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.work-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 600;
  background: var(--bg-theme-color1);
  letter-spacing: 0.05em;
  overflow: hidden;
  text-transform: uppercase;
}
.work-btn .count {
  position: relative;
  padding: 15px 10px;
  width: 55px;
}
.work-btn .count span {
  position: relative;
  color: #ffffff;
  z-index: 1;
}
.work-btn .count::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-theme-color2);
  content: "";
  transition: all 500ms ease;
}
.work-btn .work-btn-title {
  display: inline-block;
  padding: 15px 35px;
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.5s;
}

.work-card:hover .work-card-icon {
  background: var(--bg-theme-color2);
  color: #fff;
}
.work-card:hover .work-card-icon::after {
  border-top: 10px solid var(--border-theme-color2);
}
.work-card:hover .work-card-body {
  background: var(--bg-theme-color1);
  color: rgb(211, 210, 210);
}
.work-card:hover .work-card-body h4 {
  color: #fff;
}
.work-card:hover .count::after {
  background: var(--bg-theme-color1);
}
.work-card:hover .work-btn-title {
  background: var(--bg-theme-color2);
  color: #fff;
}

/* fun fact section start  */
.fact-section {
  position: relative;
  padding: 120px 0 0;
}
.fact-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 120px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center top;
  background: linear-gradient(rgba(51, 91, 131, 0.8), rgba(51, 91, 131, 0.8)),
    url(../assets/img/bg/11.png);
}

.fact-card {
  position: relative;
  margin-bottom: 8%;
 
  
 
}
.fact-card:hover .fact-icon-card {
  transform: scale(0.8);
  background-color: var(--bg-theme-color3);
}
.fact-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 140px;
  width: 180px;
  background-color: #fff;
  border-top: 4px solid var(--border-theme-color2);
  transition: all 300ms ease;
  margin: 0 auto -60px;
  z-index: 1;
  overflow: hidden;
}
.fact-icon-card img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 40px;
  object-fit: contain;
}
.fact-card-body {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 60px 50px 36px;
  padding-right: 30px;
  border-top: 4px solid var(--border-theme-color2);
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}
.fact-card-body .cont-box {
  font-size: 40px;
  color:#414141;
  font-weight: 700;
  line-height: 1em;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.fact-card-body span {
  font-size: 30px;
  color:#3d3c3c;
  font-weight: 700;
  line-height: 1em;
  
}
.fact-card-body h4 {
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: #19191a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  
}
.fact-card-body .techdriven {
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  color: #19191a;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-left: 22%;

  
}

.fact-card-body .cont-box .counter{
  margin-left: 15%;
}
/* project section start  */
.project-area {
  position: relative;
  z-index: 1;
}
.project-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 42px;
  background: #07304d;
  content: "";
}
/* 
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.swiper-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15%;
}
 

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.swiper {
  width: 50%;
  height: 40%;
}
.swiper-new-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1%;
  gap: 35px;
}


.swiper-new-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-new-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-block {
  position: relative;
}
.project-block .inner-box {
  position: relative;
  padding: 0 0px 30px;
}
.project-block .image-box {
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}
.project-block .image {
  position: relative;
  margin-bottom: 0px;
}
.project-block .image::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-block .image a {
  display: block;
  width: 100%;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .content-box {
  position: relative;
  margin-top: -50px;
  padding-left: 45px;
}
.project-block .content-box .inner {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  padding: 18px 50px 23px 30px;
}
.project-block .content-box .inner .title {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--theme-color2);
}
.project-block .content-box .inner h4 {
  display: block;
  font-size: 20px;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 5px;
}
.project-block .content-box .inner h4 a {
  color: var(--theme-color1);
  transition: all 300ms ease;
}
.project-block .content-box .inner .icon {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50px;
  color: #fff;
  font-size: 18px;
  background-color: var(--bg-theme-color1);
  transition: all 300ms ease;
}
.inner-box .content-box h4 a:hover {
  color: var(--bg-theme-color2);
}
.inner-box:hover .content-box .inner .icon {
  background-color: var(--bg-theme-color2);
}
/* team-section start  */
.team-section .card-title {
  color: var(--bg-theme-color1);
}
.team-section .card{
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
}


.team-section .designation {
  color: var(--bg-theme-color2);
  text-transform: uppercase;
}
.team-section .card-text {
  color: #7c858c;
  font-family: Arial, Helvetica, sans-serif;

}
.social-link li {
  display: inline-block;
}
.social-link li a {
  display: block;
  background: #07304d;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  color: var(--bg-theme-color3);
  transition: all 0.5s;
}
.social-link li a:hover {
  background: var(--bg-theme-color2);
}
/* faqs section start  */
.faqs {
  background: linear-gradient(
      rgba(234, 240, 244, 0.9),
      rgba(234, 240, 244, 0.9)
    ),
    url(../assets/img/1.png);
}
.faq-block {
  margin-bottom: 40px;
  position: relative;
}
.faq-block .faq-content {
  padding-left: 70px;
  position: relative;
}
.faq-block .faq-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: var(--bg-theme-color2);
  border-radius: 50%;
  font-size: 14px;
  transition: all 300ms ease;
}
.faq-block .faq-content h4 {
  font-size: 18px;
  line-height: 1.2em;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-block .faq-content p {
  font-size: 16px;
  line-height: 30px;
  color: var(--theme-color4);
  width: 75%;
  font-family: Arial, Helvetica, sans-serif;
}
.faq-block:hover .faq-icon {
  background-color: var(--bg-theme-color1);
}
.accordion-button:not(.collapsed) {
  color: var(--bg-theme-color2);
}
.accordion-button {
  font-size: 18px;
  line-height: 25px;
  color: var(--theme-color1);
  font-weight: 700;
  transition: all 500ms ease;
  border-bottom: 1px solid var(--border-theme-color3);
}
.accordion-body {
  padding: 2rem 1rem;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #7c858c;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.accordion-button:not(.collapsed)::after {
  background: url(../assets/icons/minus-solid.svg);
  color: var(--bg-theme-color1);
}
.accordion-button::after {
  background: url(../assets/icons/plus-solid.svg);
  color: var(--bg-theme-color2);
}

/* quote section start  */
.quote {
  background: url(../assets/img/bg/2.png);
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.quote-form {
  position: relative;
  padding: 55px 60px 60px;
  background-color: #ffffff;
  overflow: hidden;
  max-width: 820px;
  margin-left: 20px;
}
.quote-form h4 {
  font-size: 20px;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 30px;
}
.quote-form form label {
  font-size: 12px;
  line-height: 20px;
  color: var(--theme-color4);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.quote-form form select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  font-size: 14px;
  color: var(--theme-color1);
  line-height: 30px;
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid #dfe8ee;
  color: #7c858c;
  transition: all 300ms ease;
}
/* .quote-form form select option{
 background: var(--bg-theme-color1);
} */

.quote-content {
  position: relative;
  max-width: 310px;
  padding-left: 60px;
  padding-top: 55px;
  padding-right: 40px;
}
.quote-youtube-btn {
  position: relative;
  padding: 50px 0px;
}
.quote-youtube-btn .wrapper {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 20%;
  transform: translate(-50%, -50%);
}
.quote-youtube-btn i {
  color: var(--bg-theme-color2);
}
.quote .logo-icon {
  display: block;
  margin-bottom: 10px;
}
.quote .logo-icon img {
  display: inline-block;
  max-width: 100%;
  height: 50px;
  width: 50px;
}
.quote-content p {
  font-size: 14px;
  line-height: 26px;
  text-decoration: underline;
  color: #2c2b2b;
  opacity: 0.7;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.quote-content h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #4a4949;
}
/* client box  */
.client-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.client-box a {
  position: relative;
}
.client-box img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.client-box img:hover {
  opacity: 1;
}
/* call-to-action */
.call-to-action-box {
  background: var(--bg-theme-color2);
  position: relative;
}
.call-to-action-box::before {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
}
.call-to-action-box h2 {
  font-size: 36px;
  line-height: 1.2em;
  color: var(--bg-theme-color3);
  font-weight: 700;
}
.call-to-action-box .primary-btn {
  background: var(--bg-theme-color1);
}
.call-to-action-box .primary-btn:before {
  background-color: var(--bg-theme-color3);
}
.call-to-action-box .primary-btn:hover {
  color: var(--bg-theme-color1);
}

/* big footer  */
.big-footer {
background: linear-gradient(to right,rgb(173, 205, 228), #ffffff);   /* background: linear-gradient(to right,rgba(7, 65, 91, 0.991), rgba(3, 52, 87, 0.991)); */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 100px 0 70px;
  margin-top: -60px;
  object-fit: cover;
}
.big-footer img {
  width: auto;
  margin-bottom: 20px;
  /* filter: brightness(1.5) contrast(1.1) drop-shadow(0 15px 20px rgba(0, 0, 0, 0.7)); */
}
.big-footer p {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #07304d;
  margin-bottom: 20px;
}
.footer-from .primary-btn {
  padding: 10px 20px;
  border: 1px solid var(--bg-theme-color2);
}

.footer-from .primary-btn:hover {
  border: 1px solid var(--bg-theme-color2);
}

.big-footer h5 {
  /* color: var(--bg-theme-color3); */
  color: #df9902;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.big-footer .user-link li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 14px;
}
.big-footer .user-link li a {
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
  color: #07304d;
}
.big-footer .user-link li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color2);
  content: "";
  transition: all 300ms ease;
}
.big-footer .user-link li a:hover {
  color: #ffffff;
}
.big-footer .user-link li a:hover::before {
  width: 100%;
}
.big-footer .contact-list {
  position: relative;
}
.big-footer .contact-list li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #07304d;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 20px;
}
.big-footer .contact-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  width: 20px;
  text-align: center;
  line-height: 25px;
  color: var(--theme-color2);
}
.big-footer .contact-list li strong {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #07304d;
  
  font-weight: 700;
}
.big-footer .contact-list li a {
  color: #07304d;
  transition: all 300ms ease;
}
.big-footer .contact-list li a:hover {
  color: var(--bg-theme-color3);
}
.footer-bottom {
  background: #07304d;
  padding: 35px 0px;
}
.footer-bottom .copyright-text p {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a {
  transition: all 300ms ease;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a:hover {
  /* color: var(--bg-theme-color3); */
  color: #df9902;
}
/* all pages banner  */

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url(../assets/img/bg/rcm3.jpg);
  height: 350px;
  width: 100%;
  margin-top: 60px;
  background-size: cover;
  background-position: top center;
  object-fit: cover;
  position: relative;
}
@font-face {
    font-family: 'Informal011 Blk BT';
         url("{% static 'assets/fonts/Informal011BlkBT.ttf' %}") format('truetype');
    font-weight: normal;
    font-style: normal;
}

#name {
    font-family: 'Informal011 Blk BT', sans-serif !important;
    color:#191970;
}

.banner .banner-info h1 {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 17px;
}
.breadcrumb-item a {
  color: var(--bg-theme-color2);
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--bg-theme-color3);
}

/* -------------services pages -------------- */

.services-bg {
  background: transparent;
}
/* -------------contact pages -------------- */

.contact-details h2 {
  position: relative;
  line-height: 1.2em;
  font-size: 50px;
  font-weight: 700;
}
.contact-touch-list {
  position: relative;
}
.contact-touch-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0px;
}
.contact-touch-list li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.contact-touch-list li .icon i {
  color: var(--bg-theme-color3);
  font-size: 25px;
  transition: all 500ms ease;
}
.contact-touch-list li .text {
  margin-left: 30px;
}
.contact-touch-list li h6 {
  color: var(--bg-theme-color1);
  font-weight: bold;
}
.contact-touch-list li a {
  color: #07304d;
  font-size: 18px;
  transition: all 300ms ease;
}
.contact-touch-list li:hover .icon {
  background: var(--bg-theme-color2);
}
 .location iframe{
  width: 100%;
  height: 500px;
 }

 /* Hide dropdown by default */
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Show dropdown when hovering over About Us */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
 
}

/* Style dropdown items */
.navbar .dropdown-menu .dropdown-item {
  padding: 10px 15px;
  color: #0b3b5e;
  font-weight: bold;
  font-size: 18px;
  
}


.navbar .dropdown-menu .dropdown-item:hover {
  color: #c34914;
  background-color: #dfe8ee;
  border-radius: 20px;
}

.nav-item
{
  
  font-weight: bold;
  font-size: 18px;

  
  
}

 .navbar-brand img {

 max-height: 55px; 
 width:  auto;
  object-fit: contain;
  display: block;
  padding: 0px 0px;
  transition: transform 0.3s ease, filter 0.3s ease;
 
  transform: perspective(600px) rotateY(0deg) scale(1.3);
  
}





.nav-link:hover{
  font-weight: bold;
  color: #9f8419;
}




.popup-container {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  background: #f8e8c0;
  border: 5px solid red;
  text-align: center;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: top 0.8s ease-in-out;
  border-radius: 10px;
}
.popup-container.show {
  top:25%;
  display: flex;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  background: none;
  border: none;
}
.popup-content {
  padding: 10px;
  border: 2px dashed red;
}
.popup-header {
  background: red;
  color: white;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}
.popup-body {
  font-size: 14px;
  color: #333;
  text-align: left;
}
.popup-footer {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.row{
  margin-top: 2%;
}
.service-heading-main{
 text-align: center;
 margin-top: 2%;
}
.service-heading
{
  font-size: 35px;
  font-weight: bold;
}

.recognition-container {
  text-align: center;
  margin: 0 auto;
  width: 90%;
  position: relative;
  margin-top: 4%;
}

.recognition-text {
  font-style: italic;
  font-size: 20px;
  color: #203552;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: center;
}

.custom-swiper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.custom-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-swiper-slide img {
  max-width: 150px;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.custom-swiper-slide img:hover {
  filter: grayscale(0%);
}

/* Custom Arrow Buttons - Positioned Outside */
.custom-swiper-button-next, .custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(170, 172, 173, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  z-index: 10;
}

.custom-swiper-button-next {
  right: -30px; /* Move outside */
}

.custom-swiper-button-prev {
  left: -30px; /* Move outside */
}

.custom-swiper-button-next:hover, .custom-swiper-button-prev:hover {
  background-color: rgba(0, 123, 255, 1);
}

/* Pagination Dots */
.custom-swiper-pagination {
  margin-top: 20px;
}

.custom-swiper-pagination-bullet {
  background-color: #007bff;
}




/* Customer Support Section */
.customer-section {
  display: flex;
  align-items: center; 
 justify-content: space-evenly; 
  background: rgb(232, 240, 243);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: 0 auto;
  margin-top: 20%;
  margin-bottom: 2%;
}

/* Customer Care Box */
.customer-care {
 flex: 1;
 margin-left: 10%;
  
}

.label {
  font-weight: bold;
  color: #2c3e50;
 display: flex;
 align-items: center;
  margin-left: 6%;
  
  

}

.phone-box {
  background: #0d47a1;
  color: white;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  
  border-radius: 8px;
}

.phone-icon {
  margin-right: 8px;
}

/* Pickup Request */
.pickup-request {
  flex: 1;
  display: flex;
  /* align-items: center;
  justify-content: center; */

}

.pickup-request img {
  width: 30px;
  margin-right: 8px;
}

.pickup-request a {
  font-weight: bold;
  color: #0d47a1;
  font-size: 18x;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}

/* Shipment Tracking */
.tracking-section {
  flex: 1;
  text-align: right;
}

.tracking-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  padding: 5px;
}

.tracking-box input {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  outline: none;
  flex: 1;
}

.track-btn {
  background: #00aaff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 170, 255, 0.3);
} 





.section-title {
  color: #007bff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
 
  margin-bottom: 8px;
  margin-top: 4%;
}

.main-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
  padding: 20px;
  background-color:#dfe8ee
}

.feature-box {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(25% - 80px); /* Makes 3 cards per row */
  min-width: 280px;
  transition: transform 0.3s ease-in-out;
  color:#07304d;
}

.feature-box:hover {
  transform: scale(1.05); /* Slightly enlarges card on hover */
}

.feature-box img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 35%;
}

.feature-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.95em;
  color: #555;
  /* font-family: sans-serif; */
  font-family: Arial, Helvetica, sans-serif;
}


.clients {
  text-align: center;
  padding: 40px 20px;
}
.clients-title {
  color: #007bff;
  font-size: 18px;
  font-weight: 600;
}

.clients-subtitle {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(200px * 16 * 2); /* Adjust for number of logos × 2 */
  animation: slideclient 30s linear infinite;
}
@font-face {
  font-family: 'Informal BT';
  src: url('/fonts/InformalBT.ttf') format('truetype');
}

.informal-heading {
  font-family: 'Informal BT', cursive, Arial, sans-serif;
}

.slides {
  flex: 0 0 auto;
  width: 200px;
  padding: 10px;
}

.slides img {
  width: 100%;
  height: auto;
}

@keyframes slideclient {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.slides {
  width: 200px; /* Adjust size as needed */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides img {
  width: 100%;
  height: auto;
  /*filter: grayscale(100%); /* For the grey effect */
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.slides img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slideclient {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}

.view-all {
  margin-top: 20px;
}

.view-all-button {
  padding: 10px 20px;
  background-color: #6c462e;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.view-all-button:hover {
  background-color: #747471;
  transform: scale(1.05);
  color: white;
}



.clients-wrapper {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 5%;
}

.clients-wrapper h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.clients-wrapper p {
  color: #555;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: 15%;
  font-family:Arial, Helvetica, sans-serif;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
margin-left: 15%;
 max-width: 1000px;
  justify-items: center;
}

.client-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: scale(1.05);
}

.client-card {
  width: 200px;
  height: 200px; /* Set consistent height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  background: #fff; /* optional: background to center image visually */
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s;
  opacity: 1;
}

.client-card img:hover {
  filter: grayscale(0%);
}



.testimonial-section {
  background: linear-gradient(to right, #bdd5e6, #ffffff);
  padding: 50px 0;
  text-align: center;
  margin-top: -8%;
}
.testimonial-section h6{
margin-top: 4%;
}
.test-carousel-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}
.test-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;/*extra*/
}
.test-carousel-item {
  /* max-width: 100%;
  box-sizing: border-box; */
  flex: 0 0 100%; /* One full-width item per slide */
  max-width: 100%; /* Avoid overflow */
  box-sizing: border-box;
  object-fit:fill;
}
.testimonial-box {
  background: linear-gradient(to left, #e6e3bd, #ffffff);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 15px rgba(0, 0, 1, 0.2);
  border-bottom: 2px;
  width: 80%;
  max-width: 800px;
  height: 350px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



.test-quote-icon {
  font-size: 50px;
  color: #03A9F4;
}
.testimonial-text {
  font-size: 16px;
  color: #333;
  max-width: 90%;
}
.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
}
.testimonial-role {
  font-style: italic;
  color: #03A9F4;
}

.test-prev, .test-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.test-prev { left: 10px; }
.test-next { right: 10px; }





.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: linear-gradient(to right, #bdd5e6, #ffffff); */
}

.slider-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0%;
  background-color: none;
}

.arrow {
   height: 100%;
   border: none;
  font-size: 2rem;
  color: #007BFF;
   cursor: pointer;
  z-index: 2;
  padding: 5px 10px; 
  background-color: #ffffff;
}

.left-arrow {
  position: absolute;
  left: 0;
}

.right-arrow {
  position: absolute;
  right: 0;
}

.gallery-images {
  padding: 2% 0;
  padding-left: 6%;
  display: flex;
  transition: transform 0.3s ease-in-out;
  width: 70%;
}

.gallery-img {
  flex: 0 0 auto;
  /* Prevent shrinking */
  width: 250px;
  height: 250px;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  object-fit: fill;
  /* Ensures proper image scaling without distortion */
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px .2px rgb(105, 105, 105);
}

.gallery-button {
  text-align: center;
}

.more-btn {
  padding: 10px 20px;
  background-color: #933c02;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: #092746;
  transform: scale(1.05);
  box-shadow: 0 0 5px .2px rgb(105, 105, 105);
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Modal Content (Image) */
.modal-content {
  max-width: 45%;
  max-height: 50%;
  display: block;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}

/* Close Button */
.close {
  position: absolute;
  top: 80px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}




/*Gallery.html*/

.gallery-new-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
}

.gallery-new-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  padding: 5%;
}

.gallery-new-img-container {
  position: relative;
  width: 28%;
  height: 300px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 25px;
}

.gallery-new-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

/* Box shadow and 3D effect on hover */
.gallery-new-img-container:hover {
  transform: scale(1.05);
  /* Slight zoom effect */
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.446);
  /* 3D shadow */
}

.gallery-new-img-container:hover .gallery-new-img {
  filter: blur(1px);
  /* Slight blur effect */
}

.gallery-new-title {
  background-color: #fde5df;
  color: #e85a3c;
  padding: 5px 10px;
  border-radius: 25px;
  font-weight: bold;
  width: 10%;
  font-size: 25px;
  margin: 2%;
  margin-bottom: 3%;
  text-align: center;
}

.headline-new{
  font-size: 35px;
  cursor: pointer;
  transition: color 0.5s ease-in-out;
  font-family: 'Arial', sans-serif;
  animation: slider-in 0.8s ease-out both; 
  position:relative;
  margin-top: -2%;
  text-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* Underline Animation */
.headline-new-main {
  text-align: center;
  position: relative; 
}


@keyframes slider-in {
  0% {
      transform: translateX(-50%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}



/* Section Styling */
.awards-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 5%;
}
.awards-about-section {
background: linear-gradient(to right, #bdd5e6, #ffffff);
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  margin-top: -2%;
  margin-bottom: 5%;
}

.awards-about-section p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}


.brand {
  color: #0056b3;
  font-weight: bold;
}

/* Awards Container */
.awards-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5%;
}

/* Award Cards */
.award-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  height: 400px; /* Ensures uniform card height */
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Ensure all images fit properly without cropping */
.award-card img {
  width: 100%;
 
  height: 180px; /* Fixed height for images */
  object-fit:contain; /* Ensures full image is visible without cropping */
 /* background-color: #f0f0f0; /* Adds a subtle background for smaller images */
 /* padding: 10px; /* Adds space if images are smaller */
}

/* Card Content */
.award-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows text to fill the available space */
}

.award-content p {
  font-size: 14px;
  color: #333;
  flex-grow: 1; /* Ensures text expands while keeping Read More at the bottom */
}

/* Read More Link */
.read-more {
  text-decoration: none;
  font-weight: bold;
  color: #007bff;
  margin-top: auto;  /* Pushes it to the bottom */
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-container {
      flex-direction: column;
      align-items: center;
  }
}





    /* Career Section */
    .careers-section {
      background: linear-gradient(to right, #bdd5e6, #ffffff);
      padding: 20px;
      max-width: 800px;
      margin: auto;
      margin-bottom: 6%;
      margin-top: 2%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Header Content */
  .header-content {
    text-align: center;
    margin-bottom: 20px;
}

.header-content h2 {
    color: #0056b3;
}

.header-content p {
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
}

.view-all-jobs {
    display: inline-block;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

  .badge {
      width: 100px;
      display: block;
      margin: 10px auto;
  }
  
  /* Accordion Buttons */
  .new-accordion {
      background-color: #e3f2fd;
      color: #0056b3;
      cursor: pointer;
      padding: 15px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 16px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 5px;
      margin-bottom: 5px;
      transition: 0.3s;
  }
  
  .new-accordion:hover {
      background-color: #bbdefb;
  }
  
  /* Panel (Hidden Content) */
  .panel-new {
      display: none;
      padding: 15px;
      background-color: #ffffff;
      border-left: 3px solid #007bff;
      border-radius: 5px;
      box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  .panel-new p {
      color: #333;
      margin: 10px 0;
      font-family: Arial, Helvetica, sans-serif;
  }
  
  .panel-new ul {
      padding-left: 20px;
  }
  
  .apply-btn {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 5px;
      font-size: 14px;
  }
  
  .apply-btn:hover {
      background-color: #0056b3;
  }
  
  /* Icon Styling */
  .new-accordion-icon {
      font-size: 18px;
      font-weight: bold;
  }

  .cv-career-section {
    text-align: center;
    padding: 40px 10%;
    margin-top: -3%;
    margin-bottom: 3%;
  
    
}
.cv-career-section h2 {
    color: #222;
    font-size: 24px;
    font-weight: bold;
}
.cv-career-section p {
    color: #555;
    font-size: 16px;
}
.cv-career-form-container {
  background: linear-gradient(to right, #bdd5e6, #ffffff);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}
.cv-career-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}
.cv-career-form label {
    font-weight: bold;
    font-size: 14px;
}
.cv-career-form input,
.cv-career-form select,
.cv-career-form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.cv-career-form button {
    background: #008cdd;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.cv-career-form button:hover {
    background: #007bb5;
}
.file-upload {
    display: flex;
    flex-direction: column;
}


/* .custom-logo {
  height: 80px;   
  width: auto;        
  object-fit: contain;
  
} */



.navbar .nav-item .nav-link{
  font-weight: bold;
  color: #0b3b5e;
}


.navbar .nav-item .nav-link:hover{
  font-weight: bold;
  color: #c34914;
}


.extra-service-wrapper {
  background-color: #f4f9fc; /* light background to ensure text readability */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 4%;
}

.extra-service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, rgb(183, 207, 231), rgb(255, 255, 255));
  max-width: 1200px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.extra-service-card h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.extra-service-card ul {
  padding-left: 20px;
  list-style: none;
}

.extra-service-card ul li {
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.extra-service-card ul li::before {
  content: "🔹";
  margin-right: 8px;
  color: #3498db;
}

.extra-service-card .note {
  margin-top: 20px;
  font-weight: 500;
  color: #2c3e50;
  font-family: Arial, Helvetica, sans-serif;
}

.extra-service-card .emoji {
  font-size: 1.4em;
}
/* 
.img-fluid{
  max-height:110px; 
  max-width:300px; 
  padding: 0px 0px;  
  object-fit: contain; 
  filter: brightness(1.1) contrast(1.8) drop-shadow(0 5px 10px rgb(7, 70, 171));
  transition: transform 0.3s ease, filter 0.3s ease;
} */


.big-footer .container .img-fluid{
  max-height:110px; 
  max-width:300px; 
  padding: 0px 0px;  
  object-fit: contain; 
  /*filter: brightness(1.1) contrast(1.8) drop-shadow(0 5px 10px rgba(2, 27, 68, 0.365));*/
   /* filter: brightness(1.1) contrast(1.8) drop-shadow(5px 15px 20px rgb(88, 110, 146)); */
  transition: transform 0.3s ease, filter 0.3s ease; 
  /* box-shadow: 1px 5px 10px rgba(232, 228, 228, 0.76); */
/* border-radius: 12px; */
/* background: linear-gradient(145deg, #ffffff, #dcdcdc); */
/* transform: rotateX(10deg) rotateY(15deg); */

  /* filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));  */
  /* transform: perspective(500px) rotateY(10deg);  */
  transition: transform 0.5s ease, filter 0.5s ease;




} 
/* 
.logo-3d:hover {
  transform: perspective(500px) rotateY(0deg) scale(1.05); /* Slight zoom on hover 
  filter: drop-shadow(8px 8px 15px rgba(0,0,0,0.7));
} */

.limited-text {
  max-height: 460px;
  overflow-y: auto;
  padding-right: 10px;
}



.tree {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .tree ul {
      padding-top: 20px;
      position: relative;
      list-style-type: none;
      display: flex;
      justify-content: center;
    }

    .tree ul::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      border-left: 2px solid #ccc;
      height: 20px;
    }

    .tree li {
      text-align: center;
      position: relative;
      padding: 20px 15px;
    }

    .tree li::before,
    .tree li::after {
      content: '';
      position: absolute;
      top: 0;
      border-top: 2px solid #ccc;
      width: 50%;
      height: 20px;
    }

    .tree li::before {
      right: 50%;
      border-right: 2px solid #ccc;
    }

    .tree li::after {
      left: 50%;
      border-left: 2px solid #ccc;
    }

    .tree li:only-child::before,
    .tree li:only-child::after {
      display: none;
    }

    .tree li:only-child {
      padding-top: 0;
    }

    .tree li:first-child::before,
    .tree li:last-child::after {
      border: none;
    }

    .tree li:first-child::after {
      border-left: 2px solid #ccc;
    }

    .tree li:last-child::before {
      border-right: 2px solid #ccc;
    }

    .teamcard {
      /* background: linear-gradient(145deg, #a8c6cd, #f0f0f0); */
       background: linear-gradient(to right, #f5f8f8, #fafafa);
      border: 3px solid #4a90e2;
      border-radius: 12px;
      padding: 15px 20px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      min-width: 220px;
      max-width: 260px;
      margin: 0 auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .teamcard:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 16px rgba(0, 0, 0, 0.15);
    }

    .teamcard-name {
      font-size: 18px;
      font-weight: bold;
      color: #1a237e;
      margin-bottom: 6px;
    }

    .teamcard-role {
      font-size: 14px;
      font-weight: 500;
      color: #2b2a2a;
      background-color: #e3f2fd;
      padding: 5px 10px;
      border-radius: 20px;
      display: inline-block;
    }

    .teamsection{
      margin-top: 20%;
    }

    .logo-img{
      width: 20%;
    }