* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
  }
   
  hr {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
    border: 0;
    border-top: 1px solid rgb(199 199 199);
}  

.bg-light{
     background-color: #e3eaef;
}
/** Header Navbar Started **/

.navbar {
    background: #ffffff;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .navbar .logo {
    text-decoration: none;
    color: #122f48;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
  }
  .navbar-brand {
    display: inline-block; 
    line-height: inherit;
    white-space: nowrap;
    padding:0px;
}
  
  /* nav menu button */
  
  .menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  
  .navbar .menu-btn__lines::before,
  .navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
  }
  
  .navbar .menu-btn__lines,
  .navbar .menu-btn__lines::before,
  .navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #132f48;
    transition: all 0.4s ease-in-out;
  }
  
  .navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
  }
  
  .navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
  }
  
  .navbar .menu-items {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
  }
  
  .navbar ul li {
    list-style: none;
    transition: 0.3s ease;
  }
  
  .navbar ul li .arrow {
    transition: all 0.3s ease-out;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #112f48;
  }
  
  /* dropdown menu */
  
  .navbar .dropdown {
    position: relative;
  }
 
  .dropdown-menu{
      display:block;
      padding:0;
      margin:0;
  }
  .expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
  }
  
  .navbar .dropdown-menu,
  .menu-right {
    position: absolute;
    background: #e9ecef;
    width: 230px;
    line-height: 23px;
    border-radius: 0 0 5px 5px;
    top: 60px;
    border-top: 1px solid white;
    left: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  
  .navbar .menu-right {
    top: 0;
    left: 100%;
  }
  .navbar .dropdown-menu,
  .menu-left {
    left: unset;
    right: 0;
  }
  /* .navbar .menu-left {
    left: -100%;
  } */
  
  .navbar .menu-item {
    color: #074d86;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1.5rem;
    font-family: "PT Serif", serif;
    font-size: 15px;
    font-weight: 600;
}
  .navbar .menu-item:hover {
    color: #fff;
    background-color: #ed1b1d;
  }
  
  .menu-item.first-item {
    padding: 1rem 1rem;
  }
  
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .dropdown-right:hover .menu-left {
    left: -100%;
  }
  
  /* mega menu  */
  
  .navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100vw;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
  
  .mega-menu .content {
    background: #e9ecef;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  
  .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
  }
  
  .content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
  }
  
  .content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .content .col img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .content .col .img-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
  }
  
  .content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
  }
  
  .content .col .mega-links {
    border-left: 1px solid #3c3c3c;
  }
  
  .content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
  }
  
  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 1rem;
  }
  
  .menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .content .col .read-more:hover {
    color: #ff5722;
  }
  
  /* container */
 
  h1 {
    font-weight: 700;
    line-height: 10vw;
    color: #ffffff;
    text-transform: uppercase;
  }
  
  /* animation menu hamburger */
  .menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }
  
  .menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #132f48;
  }
  
  .menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #132f48;
  }
  
  /* Responsive style */
  
  @media screen and (max-width: 1024px) {
    .navbar {
      padding: 10px 20px;
    }
  
    .overflow {
      overflow: hidden;
    }
  
    .menu-btn {
      display: flex;
    }
  
    .navbar .menu-items {
      position: fixed;
      height: 100%;
      max-height: initial;
      overflow-y: auto;
      width: 80%;
      top: 65px;
      left: 0;
      background: #fcfcfc;
      display: block;
      transform: translateX(-100vh);
      transition: 0.3s ease-out;
      padding-bottom: 100px;
    }
  
    .menu-items.open {
      transform: translateY(0);
    }
  
    .menu-items li:first-child {
      margin-top: 0px;
    }
  
    .menu-items li a {
      padding: 10px 1rem;
      display: block;
      font-size: 18px;
    }
  
    .menu-items .dropdown-right .right-arrow {
      transform: rotate(90deg);
    }
  
    .menu-item.first-item {
      padding: 7px 1rem;
    }
  
    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
      position: static;
      opacity: 1;
      top: 4rem;
      visibility: visible;
      margin-left: -18px;
      width: auto;
      max-height: 0;
      transform: scaleX(0);
      transform-origin: left;
      overflow: hidden;
      transition: all 0.5s ease;
    }
  
    .menu-items .dropdown-menu,
    .menu-items .menu-right {
      padding-left: 1rem;
      width: 102%;
      margin-left: -10px;
    }
  
    .menu-items .mega-menu .col {
      padding-left: 1rem;
    }
  
    .expand-btn.open + .sample {
      max-height: 100%;
      transform: scaleZ(1);
    }
  
    .expand-btn.open + .blog.sample {
      max-height: 100%;
      transform: scaleZ(1);
      max-width: fit-content;
    }
  
    .navbar .sample {
      border-top: none;
    }
  
    .sample li {
      margin: 0;
    }
  
    .sample li:last-child {
      border-bottom: none;
    }
  
    .sample li a {
      font-size: 1rem;
    }
  
    .mega-menu .content {
      grid-template-columns: auto;
      padding: 1rem 1rem 0 1rem;
    }
  
    .mega-menu .content .col {
      width: 100%;
      padding-top: 1rem;
      margin-bottom: 0.5rem;
    }
  
    .col .mega-links li,
    .col .mega-links li a {
      padding: 0 0.5rem;
    }
  
    .content .col .mega-links {
      border-left: 0;
      padding-left: 0.5rem;
    }
    .col .mega-links li {
      margin: 0;
    }
  }
  
/** Navbar Header Ends **/

   

/* Navbar ENds */  
/* Hero Banner Section */
.banner-carousel{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;/* Full-screen height */
  overflow: hidden; 
}
  
 
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.carousel-caption {
  position: absolute;
  right: 0%;
  bottom: 135px;
  left: 0%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.carousel-caption h2{
        position:relative;
        font-size: 60px;
        font-family: "PT Serif", serif;
        font-weight:600;
        text-align: start;

}
.carousel-caption p{ 
   text-align: start; 
   position: relative;
   font-size: 18px;
   line-height: 30px;
   margin-bottom:20px;
   color: #fff;
   opacity:0;
}

.aboutimgleft{
  position: relative;
  display: block;  
}

.aboutusleft img{
  margin: 0px;
  padding: 0px;
  position: relative;
  width: 100%;
  height: 550px; 
  background-position: center;
  object-fit: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
}

.aboutimgleft .rotate-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 48%;
  right: 0px;
  margin-top: -93px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
}

.image_block_one .image-box .rotate-box .curved-circle {
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
}
.about-imageleft::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.rotate-box{
  .g30 {
    transform: translate(-76px, 102px) rotate(58deg);
}

.y {
    transform: translate(-57px, 124px) rotate(55deg);
}

.e2 {
  transform: translate(-47px, 134px) rotate(39deg);
}

.k1 {
    transform: translate(-36px, 141px) rotate(16deg);
}

.yr {
  transform: translate(-21px, 143px) rotate(-3deg);
}

.of {
  transform: translate(58px, 89px) rotate(-71deg);
}

.s1 {
    transform: translate(-6px, 144px) rotate(-7deg);
}

.e {
    transform: translate(69px, 63px) rotate(-98deg);
}

.x {
    transform: translate(65px, 50px) rotate(69deg);
}

.p {
    transform: translate(58px, 37px) rotate(-116deg);
}

.G2 {
    transform: translate(51px, 25px) rotate(-131deg);
}

.e3 {
    transform: translate(40px, 15px) rotate(-135deg);
}

.e4 {
    transform: translate(-6px, 40px) rotate(20deg);
}

.k2 {
    transform: translate(-14px, 60px) rotate(25deg);
}

.s2 {
    transform: translate(-20px, 80px) rotate(30deg);
}
}

.rotate-text{
  position: absolute;
  left: 91px;
  top: 7px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
} 

.page-header{
    /* background-image: url(img/banner.jpg); */
    object-fit: cover;
    background-position: center;
} 

.page-header h1{
  font-size: 60px;
  font-family: "PT Serif", serif;
  text-align: center;
}

.about-us .list-style li {
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 30px;
  line-height: 1.8em;
  list-style:none;
  
}

.about-us .list-style li:before {
  position: absolute;
  content:  "\f058";
  left: 0px;
  top: 4px;
  line-height: 1em;
  font-weight: 700;
  color: #991000;
  font-family: 'Font Awesome 6 Free';
}

.aboutimg{
     border-radius:20px;
}

.aboutusright h2{
  font-size: 40px;
  font-weight: 700;
  font-family: "PT Serif", serif;
  color: #034778;
  animation: fadeInDown 1s ease-out;
} 


.aboutusright p {
  font-size: 16px;
  font-weight: 400;  
  line-height:22px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 60px;
    font-weight: 600;
}

.image-layer {
  position: absolute;
  display:block;
  right: 27px;
  bottom: 15px;
  -webkit-animation: service_hexagon_2 15s infinite linear;
  -moz-animation: service_hexagon_2 15s infinite linear;
  -o-animation: service_hexagon_2 15s infinite linear;
  animation: service_hexagon_2 15s infinite linear;
}

.hero-img img{
        position: relative;
        top:0;
        right:0;
        width:100%;
        height:100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
}

.banner-carousel .slide-item .bg-layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
.banner-carousel .active .slide-item .bg-layer {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}
 .hero-img:before {
  position: absolute;
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0.63%, rgba(0, 0, 0, 0.7) 37.58%, rgba(0, 0, 0, 0.16) 75.48%, rgba(255, 255, 255, 0) 99.13%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}
 
.hero-caption {
  position: absolute;
  top: -217px;
  left: 36px;
  transform: translate(0%, -50%);
  text-align: center;
  z-index: 3; /* Above overlay */
  color: #fff;
}
  

.carousel-caption .theme-btn {
  position: relative; 
  overflow: hidden; 
  font-size: 16px;
  line-height: 12px;
  font-weight: 600;
  font-family: "PT Serif", serif;
  color: #fff;
  text-align: start;
  border-radius: 4px;
  padding: 14px 30px;
  border: 1px solid #fff;
  border-width: 1px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
  float: inline-start;
  
}

.theme-btn:hover{
     color:#fff;
     background-color:#740505;
     text-decoration: none;
     border: 1px solid #740505;
     border-width: 1px;
}

.theme-btn:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  background: #991000;
  transition: all 500ms ease;
}
/* Hero Banner Section Ends */

/* Tab Service Section */
.service-section .tab-btns {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.service-section .tab-btns .tab-btn:first-child {
  border-radius: 20px 0px 0px 20px;
}
.service-section .tab-btns .tab-btn {
  position: relative;
  display: inline-block; 
  width: 24%;
  text-align: center;
  padding: 45px 15px;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  transition: all 500ms ease;
}
.service-section .tab-btns .tab-btn:before {
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 60px;
  top: 30px;
  right: 0px;
  transition: all 500ms ease;
}
.service-section .tab-btns .tab-btn.active-btn {
  color: #fff;
  background-color:#991000;
}

.service-section .tab-btns .tab-btn:after {
  position: absolute;
  content: '';
  width: 21px;
  height: 9px;
  left: 50%;
  margin-left: -10px;
  bottom: -9px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
  opacity: 0;
  transition: all 500ms ease;
}
.service-section .tab-btns .tab-btn.active-btn:after {
  opacity: 1;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.service-section .tabs-content {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 20px 20px 0px 0px;
  padding: 100px 80px 30px 80px;
  margin-top: -60px;
}
.service-section .tabs-content .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
   display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 20px 20px 0px 0px;
}

.service-section .content-box h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 26px;
} 
.service-section .content-box p {
  margin-bottom: 25px;
}

.service-section .content-box .list-style-one li {
  float: left;
  width: 50%;
}

.service-section .content-box .list-style-one li:before {
  position: absolute;
  content: "\f058";
  left: 0px;
  top: 4px;
  line-height: 1em;
  font-weight: 700;
  color: #991000;
  font-family: 'Font Awesome 6 Free';
}

.list-style-one li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 28px;
  margin-bottom: 11px;
}

.service-section .image-box {
  position: relative;
  display: block;
  padding-left: 110px;
}

.service-section .image-box .image {
  border-radius: 8px;
}
.image-hov-one {
  position: relative;
  display: block;
  overflow: hidden;
}
figure{
    margin:0;
}
.service-section .image-box .image img {
  width: 100%;
  border-radius: 8px;
}
.service-section .image-box .image-2 {
  position: absolute;
  left: -5px;
  bottom: 26px;
  border: 10px solid #F5F6F7;
  z-index: 2;
}

.service-section .image-box .image {
  border-radius: 8px;
}
.image-hov-two {
  position: relative;
  display: block;
  overflow: hidden;
}
figure {
  margin: 0px;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.tabs {
  max-width: 900px;
  margin: auto;
}

.tab-buttons {
  display: flex;
  list-style: none;
  padding: 0; 
  margin-bottom: 20px;
}

.tab-buttons li {
  position: relative;
  display: inline-block;
  width: 25%;
  text-align: center;
  padding: 30px 20px;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
  transition: all 500ms ease;
}

.tab-buttons li::before{
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 45px;
  top: 24px;
  right: 0px;
  transition: all 500ms ease;
}

.tab-buttons li::after{ 
    position: absolute;
    content: '';
    width: 21px;
    height: 9px;
    left: 50%;
    margin-left: -10px;
    bottom: -9px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
    opacity: 0;
    transition: all 500ms ease;
    background-color:#870808;
} 

.tab-buttons li.active {
  background: #870808;
  font-weight: bold; 
  color: #fff;
  border-radius: 6px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.tab-image {
  flex: 1 1 40%;
}

.tab-text {
  flex: 1 1 55%;
}

@media (max-width: 768px) {
  .tab-inner {
    flex-direction: column;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-buttons li {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* Processing Startes*/
.processing-section .inner-container {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border-top: solid;
  border-width: 5px;
  border-color: #7B0000;
}

.processing-section .inner-container:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0px;
  top: 75px;
  opacity: 0.1;
  background-color:#7B0000;
}

.processing-block-one .inner-box {
  position: relative;
  display: block;
  padding: 30px 30px 5px 30px;
}

.processing-block-one .inner-box span {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 55px;
  text-align: center;
}

.processing-block-one .inner-box span:before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  left: 50%;
  margin-left: -6px;
  bottom: -30px;
  border-radius: 50%;
  background-color:#03a9f4;
}

.processing-block-one .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin: 16px;
  font-family: "PT Serif", serif;
  font-weight: 500;
  color: #740505;
}

.pr_90 {
  padding-right: 90px;
}
/* Processing Ends */

/* Catagory */
.catagory-section{
  position:relative;
}
.category-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 55px 80px 60px 80px;
  margin-bottom: 30px;
}

.category-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 55px 80px 60px 80px;
  margin-bottom: 30px;
}

.category-block-one .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 64px 24px 36px 51px;
  margin-bottom: 30px;
}
.category-block-one .inner-box h2 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 16px;
}
.category-block-one .list-style-one li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #fff;
  padding-left: 28px;
  margin-bottom: 11px;
}

.category-block-one .list-style-one li:before {
  position: absolute;
  content: "\f058";
  left: 0px;
  top: 4px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  font-family: 'Font Awesome 6 Free';
}

.category-block-one .inner-box .big-text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-size: 60px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.10);
  writing-mode: vertical-lr;
}
.category-block-one .inner-box .bg-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
 .category-block-one .inner-box .bg-layer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(270deg, rgba(169, 7, 0, 0) 23.97%, rgba(169, 7, 0, 0.98) 60.46%, #A90700 100%);
}

 
.category-block-one .inner-box .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    background: #fff;
    padding: 6px 23px;
    border-radius: 4px;
     
}

.category-block-one .inner-box .btn-box:hover a{
   color:#fff;
   background-color:#000 !important;
   text-decoration: none;
   transition: .3s;
}

.category-block:nth-child(2) .category-block-one .inner-box .bg-layer:before {
  background: linear-gradient(270deg, rgba(0, 57, 168, 0) 24.13%, #0C3D9C 60.55%, #0B3C9D 100%);
}

.category-block:nth-child(3) .category-block-one .inner-box .bg-layer:before {
  background: linear-gradient(270deg, rgba(3, 161, 0, 0) 23.97%, #011201 60.46%, #010a00 100%);
}

/* CTA Started */
.cta-section{
     position: relative;
     background-color:#740505;
     padding: 0;
     margin: 0;
}
.cta-section .pattern-layer {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 481px;
  height: 100%;
  background-repeat: no-repeat;
}

.cta-section .bubble-shape .bubble {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}

.cta-section .bubble-shape .bubble-1 {
  left: -72px;
  top: -298px;
  -webkit-animation: zoom-fade 9s infinite linear;
  animation: zoom-fade 9s infinite linear;
}

.cta-section .bubble-shape .bubble-2 {
  left: -324px;
  top: -130px;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}
.cta-section .bubble-shape .bubble-3 {
  top: -146px;
  right: 87px;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}


.cta-section .bubble-shape .bubble-4 {
  right: 146px;
  bottom: -227px;
  -webkit-animation: zoom-fade 9s infinite linear;
  animation: zoom-fade 9s infinite linear;
} 
.cta-section .big-text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-size: 128px;
  line-height: 95px;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.10);
}

.cta-section .image-box {
  position: absolute;
  top: -35px;
  right: 0px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  border: solid;
  border-width: 2px;
  border-color: #740505 !important;
}
.cta-section .image-box img {
  width: 100%;
  border-radius: 50%;
}
.pb_100 {
  padding-bottom: 100px;
}

.pt_110 {
  padding-top: 110px;
}
.p_relative {
  position: relative;
}
.cta-section .text-box h2 {
  display: block;
  font-size: 48px;
  line-height: 60px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
}
.cta-section .text-box a {
  position: relative;
  display: inline-block;
  font-size: 67px;
  line-height: 65px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

/* CTA Section Ends */

/* Gallery Section Started */
 /* Gallery Styles */
 .gallery {
  padding: 20px;
  text-align: center;
}

.gallery-grid { 
  padding:0;
  margin:0;
  position: relative;
  gap: 15px;
  justify-items: center;
}
.gallery-item img {
  width: 100%;
  height: 270px;
  border-radius: 2px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 2px 2px 10px #00000094;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}
#lightbox-img {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
}
#lightbox-caption {
  color: white;
  margin-top: 10px;
  font-size: 1.2rem;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.prev, .next {
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Gallery Section Ends */

/* FAQ Section Started */

.image_block_two .image-box {
  position: relative;
  display: block;
}

.image_block_two .image-box .image-shape .shape-1 {
  position: absolute;
  left: 178px;
  top: 35px;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}

.image_block_two .image-box .image-shape .shape-2 {
  position: absolute;
  right: 100px;
  bottom: 0px;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}
.image_block_two .image-box .image {
  position: relative;
  display: block;
  border-radius: 8px;
}
.image-hov-one::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

 
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 15px 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 0;
  display: block;
  font-size: 20px; 
  color:#000;
  font-size:20px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #000;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: #000;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 400;
  margin: 1em 0;
} 

.bg-light {
  background-color: #d5d9dd !important;
}

/* FAQ Section Ends */

/* Testimonial cSS*/
.testimonial-card {
  margin: 12px; 
  background-color: #fff;
  padding: 15px 24px;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: rgb(161 33 33 / 33%) 6px 10px 8px -6px;
  /*border-top: 2px solid #740505; */
}
.testimonial-card::before {
  content: "";
  height: 100%;
  width: 4px;
  background-color: #740505;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-card .author i{
  color:#740505;
  font-size: 12px;
}
.testimonial-card .author-name{
 font-size: 14px;
 color:#03a9f4
}

/* Float Button started */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .5s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .5s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color: #a31201;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}
/*  Float Button Ends */
/* Footer Started  */

/*** Footer ***/
.footer {
  background: linear-gradient(#000, #000), url(../img/footer.png) center center no-repeat;
  background-size: contain;
}

.footer-text p {
  color: #fff; 
  line-height: 20px;
}

.footer-bottom {
  background-color: #080707;
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 56%;
    border-left: 1px dashed rgba(255, 255, 255, .2);
  }
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgb(255 251 252);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s; 
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, .5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: white;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
  color: var(--bs-white);
}

.copyright a:hover {
  color: var(--bs-primary);
}

.custom-btn {
  width: 150px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.text-black {
  color: #000 !important;
}
/* Footer Ends */

/* Get In Touch */
.get-in-touch {
  /* background: linear-gradient(to right, #002f4b, #dc4225); */
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}
 

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-box {
  background-color: rgba(0, 0, 0, 0.959);
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  min-height: 160px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  animation: fadeInUp 1s ease-in;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
  animation: pulse 2s infinite;
}

.contact-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
 
.form-map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  background: linear-gradient(to right, #002f4b, #dc4225);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.form-container, .map-container {
  flex: 1 1 400px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
  animation: fadeInUp 1s ease;
}

.form-container h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
}

.form-container button {
  background-color: #fff;
  color: #dc4225;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background: #ffefef;
}

.contact-box .bubble-shape .bubble-1 {
  left: 202px;
  top: -13px;
  animation: 7s linear 0s infinite normal none running zoom-fade;
  animation: zoom-fade 7s infinite linear;
} 
.contact-box .bubble-shape .bubble {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  animation: 7s linear 0s infinite normal none running zoom-fade;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 452px;
  border: none;
  border-radius: 10px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 
/* Get In Touch Ends */

.services .list-style li:before {
  position: absolute;
  content: "\27A4";
  left: 0px;
  top: 7px;
  line-height: 1em;
  font-weight: 700;
  color: #991000;
  font-family: 'Font Awesome 6 Free';
}

/* About Us page */
.cta-style-two{
     position:relative;
     background-color: #740505;
}
.cta-style-two .bubble-shape .bubble-1 {
  left: 15px;
  top: -155px;
}

.cta-style-two .bubble-shape .bubble-2 {
  left: 140px;
  top: 30px;
}

.cta-style-two .bubble-shape .bubble {
  position: absolute;
  width: 362px;
  height: 362px;
  background: #fff;
  opacity: 0.10;
  border-radius: 50%;
} 
.cta-style-two .image-layer .image-2 {
  position: absolute;
  left: -481px;
  bottom: -17px;
  transform: translate3d(-1.16px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(-1) scaleY(1) scaleZ(1);
   
}
.cta-style-two .text-box h2 {
  display: block;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
}
.cta-style-two .text-box a {
  position: relative;
  display: inline-block;
  font-size: 67px;
  line-height: 65px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
.cta-style-two .big-text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-size: 128px;
  line-height: 95px;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.10);
}
.cta-style-two .content-box {
  position: relative;
  display: block;
}
.cta-style-two .content-box .btn-box {
  position: relative;
  display: flex
;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cta-style-two .content-box h2 {
  font-size: 48px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 38px;
}

/* More Care */
.category-block-one1 .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 55px 80px 60px 80px;
  margin-bottom: 30px;
}
.category-block-one1 .inner-box .bg-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.category-block-one1 .inner-box .bg-layer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(270deg, rgba(169, 7, 0, 0) 23.97%, rgba(169, 7, 0, 0.98) 60.46%, #A90700 100%);
}
.service-style-five .category-block-one1:nth-child(2) .inner-box .bg-layer:before {
  background: linear-gradient(270deg, rgba(3, 161, 0, 0) 23.97%, #000000 60.46%, #010201 100%);
}
.service-style-five .category-block-one1:nth-child(3) .inner-box .bg-layer:before {
  background: linear-gradient(270deg, rgba(0, 57, 168, 0) 24.13%, #0C3D9C 60.55%, #0B3C9D 100%);
}
.service-style-five .category-block-one .inner-box .big-text {
  font-size: 64px;
  width: 100%;
  text-align: center;
}
.category-block-one1 .inner-box .big-text {
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-size: 60px;
  line-height: 50px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.171);
  writing-mode: vertical-lr;
}
 
.category-block-one1 .inner-box .content-box {
  position: relative;
  max-width: 430px;
}
.category-block-one1 .inner-box .content-box h2 {
  font-size: 31px;
  line-height: 50px;
}
.category-block-one1 .inner-box h2 {
  display: block;
  font-size: 32px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 16px;
}
.category-block-one1 .inner-box .content-box p {
  margin-bottom: 25px;
  max-width: 100%;
}
.category-block-one1 .inner-box p {
  max-width: 310px;
  color: #fff;
  margin-bottom: 55px;
}
 .category-block-one1 .inner-box .list-style-one {
  margin-bottom: 22px;
}
 .category-block-one1 .inner-box .list-style-one li {
  float: left;
  width: 50%;
  color: #fff;
}
.category-block-one1 .inner-box .list-style-one li:before {
  background: #fff;
  color: #111111;
}
.category-block-one1 .inner-box  .list-style-one li:before {
  position: absolute;
  content: '\f058'; 
  font-family: 'Font Awesome 6 Free';
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  color: #130d0d;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: 4px;
}
.category-block-one1 .inner-box .btn-box a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  background: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
}
.category-block-one1 .inner-box .btn-box a:hover{
      text-decoration: none;
      color:#fff;
      background-color: #000;
      transition: .3s ease-in-out;
}
 .list-style-one1 li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  padding-left: 28px;
  margin-bottom: 11px;
}
 .category-block-one1 .inner-box .list-style-one {
  margin-bottom: 22px;
}
@media only screen and (max-width: 678px) {
 
  .banner-carousel{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;/* Full-screen height */
    overflow: hidden; 
  }
  .carousel-caption {
      position: absolute;
      right: 0%;
      bottom: 0px;
      left: 8%;
      z-index: 10;
      color: #fff;
      text-align: center;
  }
  .hero-img:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0.63%, rgba(0, 0, 0, 0.7) 37.58%, rgba(0, 0, 0, 0.16) 75.48%, rgba(255, 255, 255, 0) 99.13%);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
  }
  .page-header h1 {
    font-size: 31px;
    font-family: "PT Serif", serif;
    text-align: center;
}
  .banner-carousel .slide-item .bg-layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
  }
  .hero-img img{
    position: relative;
    top:0;
    right:0;
    width:100%;
    height:35vh;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
}
.theme-btn:hover {
  color: #fff;
  background-color: #740505;
  text-decoration: none;
  border: 1px solid #740505;
  border-width: 1px;
}
.carousel-caption .theme-btn {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  line-height: 2px;
  font-weight: 600;
  font-family: "PT Serif", serif;
  color: #fff;
  text-align: start;
  border-radius: 4px;
  padding: 11px 19px;
  border: 1px solid #fff;
  border-width: 1px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
  float: inline-start;
}
  
.carousel-caption p {
  text-align: start;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 11px;
  color: #fff;
  opacity: 0;
}
.carousel-caption h2{
     font-size: 25px;
}
  .offset-2 {
    margin-left: 0px;
    line-height:40px;
}
.cta-section .image-box {
      display:none;
}

.cta-section .text-box a {
  position: relative;
  display: inline-block;
  font-size: 42px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  /* border-bottom: 1px solid #fff; */
  text-decoration: none;
}
/* Tab Section */
   .tab-buttons li {
        margin-right: 0;
        margin-bottom: 5px;
    } 
.tab-buttons li {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    color: #000;
    transition: all 500ms ease;
    font-family: "PT Serif", serif;
    box-shadow: 1px 2px 2px #00000057;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 6px 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion .accordion-content p {
  font-size: 14px;
  font-weight: 400;
  margin: 1em 0;
  line-height: 22px;
}
.list-style-one li {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 28px;
  margin-bottom: 11px;
}
.service-section .content-box h2 {
  font-size: 25px;
  line-height: 30px;
  text-align:center;
  font-weight: 600;
  margin-bottom: 20px;
}
.service-section .tabs-content {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 20px 20px 0px 0px;
  padding: 57px 10px 0px 10px;
  margin-top: -60px;
}
.service-section .image-box .image-2 {
  position: relative;
  margin-top: 52px;
  margin-left: 29px;
}
.service-section .image-box {
  padding: 0px;
  text-align: center;
} 
/* Tab Ends */
.aboutusright h2 {
  font-size: 26px;
  font-weight: 700;
  font-family: "PT Serif", serif;
  color: #034778;
}
.processing-block-one .inner-box h3 {
  text-align: center;
}
.cta-section .big-text {
  font-size:50px;
}
.aboutusleft img {
  height:300px;
  object-fit: contain;
}
.cta-section .text-box h2 {
    display: block;
    font-size: 37px;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}
.cta-section .text-box a {
  position: relative;
  display: inline-block;
  font-size: 50px;
  line-height: 65px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.cta-style-two .text-box a {
  position: relative;
  display: inline-block;
  font-size: 50px;
  line-height: 43px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
.cta-style-two .text-box h2 {
  display: block;
  font-size: 33px;
  line-height: 42px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}
.testimonial-card .author i{
      color:#740505;
      font-size: 12px;
}
.testimonial-card .author-name{
     font-size: 14px;
     color:#03a9f4;
}
.accordion button .accordion-title {
  padding: 1em 1em 1em 1em;
  display: block;
  color: #000;
  font-size: 13px;
}
.navbar-brand{
     width:75px;
}
/* More Care */
.category-block-one1 .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 24px 20px 20px 20px;
  margin-bottom: 30px;
}
.category-block-one1 .inner-box .content-box h2 {
  font-size: 20px;
  line-height: 20px;
}
.category-block-one1 .inner-box .content-box p {
  margin-bottom: 15px;
  max-width: 100%;
  font-size: 14px;
}
.category-block-one1 .inner-box .list-style-one li {
  float: left;
  width: 52%;
  color: #fff;
}
/* More Care Ends*/

/* Page Header Started */
.page-header{
  object-fit: cover;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center; 
}
.banner-text{
  font-size: 40px;
  font-family: "PT Serif", serif;
  font-weight: 600;

}
.form-map-section {
  flex-direction: column;
  padding: 40px 15px;
}
.contact-box {
  width: 100%;
  text-align: center;
}

.form-container, .map-container {
  max-width: 100%;
}
.cta-style-two .image-layer .image-2 {
      display:none;
}
.contact-box .bubble-shape .bubble-1 {
  left: 280px;
  top: -13px;
  animation: 7s linear 0s infinite normal none running zoom-fade;
  animation: zoom-fade 7s infinite linear;
}
.cta-style-two .big-text {
  position: absolute;
  left: 0px;
  bottom: -48px;
  font-size: 78px;
  line-height: 95px;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.10);
}
.cta-style-two .bubble-shape .bubble {
  position: absolute;
  width: 262px;
  height: 262px;
  background: #fff;
  opacity: 0.10;
  border-radius: 50%;
}
} 