@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/



body {

  word-break: break-word;

  font-family: "Montserrat", sans-serif;

  color: #393939;

  overflow-x: hidden;

}



a {

  text-decoration: none;

  color: #28b16d;

  white-space: initial;

}



a:hover,

a:focus {

  text-decoration: none;

  color: #393939;

}



a:hover {

  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;

  -moz-transition: all 0.5s ease-in-out;

}



img {

  max-width: 100%;

}



input[type="text"]:focus,

textarea:focus,

input[type="password"]:focus,

select:focus,

input[type="email"]:focus,

input[type="url"]:focus,

input[type="tel"]:focus,

input[type="number"]:focus {

  transition: all 0.5s ease;

  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  outline: none;

}



select,

input[type="text"],

input[type="password"],

input[type="email"],

input[type="url"],

input[type="number"],

textarea,

input[type="tel"] {

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

}



ul {

  margin: 0 0 20px;

  padding: 0;

  list-style-type: none;

}



p {

  font-family: "Montserrat", sans-serif;

  font-weight: 500;

}





/***** Font Files *****/

@font-face {

  font-family: 'Balbek';

  src: url(../fonts/Balbek-Personal.otf);

  font-weight: 400;

  font-style: normal
}



/***** Custom Classes *****/



.container-fluid {

  padding: 0 3%;

}



.noPadding {

  padding: 0;

}



.noLeft {

  padding-left: 0;

}



.noRight {

  padding-right: 0;

}



.centerCol {

  float: none;

  margin: 0 auto;

}



.theme-btn {

  font-size: 14px;

  line-height: 20px;

  font-weight: 500;

  padding: 15px 40px;

  color: #fff;

  margin: 20px 20px 20px 0;

  border-radius: 50px;

  -webkit-border-radius: 50px;

  -moz-border-radius: 50px;

  text-transform: capitalize;

  border: 2px solid;

  text-transform: uppercase;

}



.theme-btn:hover {

  background-color: #fff;

  color: #28b16d;

  border-color: #28b16d;

}



.flexRow {

  display: -webkit-box;

  display: -moz-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  align-items: center;

}



.flexCol {

  -webkit-box-flex: 1;

  -moz-box-flex: 1;

  -webkit-flex: 1;

  -ms-flex: 1;

  flex: 1;

  align-items: center;

}



h1 {

  font-family: 'Balbek';

  font-size: 55px;

  line-height: 60px;

  color: #fff;

  font-weight: 500;

  margin: 0 0 17px;

}



h2 {

  font-family: 'Balbek';

  font-size: 55px;

  line-height: 60px;

  color: #393939;

  font-weight: 500;

  margin: 0 0 30px;

}



h3 {

  font-family: 'Balbek';

  font-size: 30px;

  line-height: 34px;

  color: #000000;

  font-weight: 600;

  margin: 0 0 28px;

}



h4 {

  font-family: 'Balbek';

  font-size: 24px;

  line-height: 29px;

  color: #393939;

  font-weight: 500;

  margin: 0 0 13px;

}



h5 {

  font-family: 'Balbek';

  font-size: 20px;

  line-height: 25px;

  color: #393939;

  font-weight: 500;

  margin: 0 0 20px;

}



h6 {

  font-family: "Montserrat", sans-serif;

  font-size: 18px;

  line-height: 23px;

  color: #393939;

  font-weight: 500;

  margin: 0 0 22px;

}



select {

  background: #fff url('../images/arrow.png') no-repeat right;

  padding: 0 40px 0 30px;



}



::-webkit-input-placeholder {

  color: #575757;

}



::-moz-placeholder {

  color: #575757;

  opacity: 1;

}



:-ms-input-placeholder {

  color: #575757;

}



:-moz-placeholder {

  color: #575757;

  opacity: 1;

}





/*header css start */



.menuSec {

  padding: 0px 0;

}



.menuSec img {

  margin: 0;

}



.menuSec ul {

  position: relative;

  list-style: none;

  padding: 0;

  margin: 0;

  text-align: right;

  text-transform: capitalize;

}



.menuSec ul li {

  position: relative;

  display: inline-block;

  margin: 0;

  padding: 0;

}



.menuSec li ul {

  display: none;

}



.menuSec ul li a {

  position: relative;

  display: inline-block;

  text-decoration: none;

  color: #393939;

  padding: 10px 23px;

  font-size: 13px;

}



.menuSec ul li a:after {

  content: '';

  position: absolute;

  top: 35%;

  right: 0;

  width: 1px;

  height: 13px;

  background-color: #393939;

}



.menuSec ul li:last-child a {

  padding-right: 0px;

}



.menuSec ul li:last-child a:after {

  display: none;

}



.menuSec ul li a:hover,

.menuSec ul li a.active {

  transition: all 0.5s ease;

  -webkit-transition: all 0.5s ease;

  -moz-transition: all 0.5s ease;

  color: #28b16d;

}



.menuSec li:hover>ul {

  display: block;

  position: absolute;

  z-index: 1000;

  background-color: #000000;

  left: 0px;

  width: 230px;

  text-align: left;

  top: 38px;

}



.menuSec li>ul>li>a {

  border: none;

  padding: 13px 20px !important;

  color: #fff !important;

  overflow: hidden;

  font-size: 13px;

  line-height: 20px;

}



.menuSec li>ul>li,

.menuSec li>ul>li>a {

  display: block;

  margin: 0;

}



.menuSec li>ul>li>a:before,

.menuSec li>ul>li>a:after {

  display: none;

}



.menuSec li:hover li {

  float: none;

}



.menuSec li:hover a {}



.menuSec li ul li a:hover {

  background-color: #ffffff;

  color: #000000 !important;

}



.menuSec ul ul ul {

  left: 100%;

  top: 0;

}



.menuSec ul:before,

.menuSec ul:after {

  content: " ";

  display: table;

}



.menuSec ul:after {

  clear: both;

}



.menuSec li>ul>li:hover>ul {

  left: 230px;

  top: 0px;

  width: 270px;

}



.droopdwon li:hover>ul {

  display: block;

  position: absolute;

  z-index: 1000;

  background-color: #000000;

  left: 0px;

  width: 230px;

  text-align: left;

  top: 40px;

}



.droopdwon {

  float: left;

}



.droopdwon li:hover li a:hover {

  background-color: #ffffff;

  color: #000 !important;

}



/*header css start */



.dropdown-menu {

  position: absolute !important;

  z-index: 1000;

  display: block;

  min-width: 10rem;

  padding: 0.5rem 0;

  margin: 0;

  font-size: 1rem;

  color: #212529;

  text-align: left !important;

  background-color: #fff;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 0.25rem;

}



/*banner css start */









.carousel-inner>.item>a>img,

.carousel-inner>.item>img {

  width: 100%;

}



.carousel-control.right,

.carousel-control.left {

  background: none;

  opacity: 1;

  width: 50px;

  height: 50px;

  top: initial;

  top: 40%;

  background: rgba(255, 255, 255, 0.1);

  text-shadow: none;

}



.carousel-control.right:hover,

.carousel-control.left:hover {

  background: rgba(255, 27, 27, 0.6);

  color: #fff;

}



.carousel-control.right .fa,

.carousel-control.left .fa {

  position: relative;

  top: 12px;

  font-size: 20px;

  color: #fff;

  opacity: 0.5;

}



.carousel-control.right {

  right: 0px;

}



.carousel-control.left {

  left: 0px;

}



.carousel-indicators {}



.carousel-indicators [data-bs-target] {

  box-sizing: content-box;

  flex: 0 1 auto;

  width: 10px;

  height: 12px;

  padding: 0;

  margin: 3px !important;

  text-indent: -999px;

  cursor: pointer;

  background-color: #fff;

  background-clip: padding-box;

  border: 0;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  opacity: 1;

  /* transition: opacity 0.6s ease; */

  border-radius: 20px;

}



.carousel-caption {

  position: absolute;

  top: 0;

  width: 100%;

  height: 100%;

  left: 0;

  right: 0;

  margin: 0;

  padding: 0;

  color: #fff;

  text-align: left;

  display: -webkit-box;

  display: -moz-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  align-items: center;

  background: rgba(0, 0, 0, 0.1);

}



.carousel-indicators li {

  border: none;

  border-radius: 100%;

  -webkit-border-radius: 100%;

  -moz-border-radius: 100%;

  background: #fff;

  width: 12px;

  height: 12px;

  margin: 0;

}



.carousel-indicators .active {

  margin: 0;

  background-color: #28b16d;

  width: 10px;

  height: 12px;

}



/*banner css end*/



/*contact start*/

.cont-txt h3 {

  font-size: 50px;

  line-height: 1;

  font-weight: 300;

  color: #000000;

  text-transform: uppercase;

  margin-bottom: 10px;

}



.cont-txt p {

  font-size: 14px;

  color: #a3a3a3;

  line-height: 24px;

}



.cont-txt form input {

  width: 100%;

  padding: 15px;

  border: 1px solid #cecece;

  border-radius: 5px;

  margin-bottom: 20px;

}



.cont-txt form textarea {

  width: 100%;

  padding: 15px;

  border: 1px solid #cecece;

  border-radius: 5px;

  margin-bottom: 20px;

  height: 200px;

  resize: none;

}



section.contact {

  padding: 100px 0px;

}



.cont-img img {

  width: 100%;

  height: 536px;

  object-fit: cover;

  border-radius: 5px;

}



button.btn-1 {

  display: flex;

  gap: 5px;

  width: fit-content;

  border: unset;

  background-color: unset;

}



button.btn-1 span {

  font-size: 14px;

  text-transform: uppercase;

  background-color: #003ca5;

  color: #fff;

  display: flex;

  align-items: center;

  padding: 14px 30px;

  justify-content: center;

  border-radius: 5px;

}



a.btn-1 {

  display: flex;

  gap: 5px;

  width: fit-content;

  border: unset;

  background-color: unset;

}



a.btn-1 span {

  font-size: 14px;

  text-transform: uppercase;

  background-color: #003ca5;

  color: #fff;

  display: flex;

  align-items: center;

  padding: 14px 30px;

  justify-content: center;

  border-radius: 5px;

}



/*contact end*/

/*project start */

section.project {

  padding: 100px 0px;

  background-size: cover;

  width: 100%;

  background-repeat: no-repeat;

  background-image: url(../images/ready-bg.jpg);

}



.project-txt {

  margin-left: 7%;

}



.project-txt h3 {

  font-size: 58px;

  line-height: 1;

  font-weight: 400;

  color: #000000;

  margin-bottom: 10px;

}



.project-txt h3 span {

  display: block;

}



.project-txt p {

  font-size: 14px;

  line-height: 23px;

  width: 90%;

}



section.past-projects .container-fluid {

  padding: unset;

}



section.past-projects .slick-slide {

  margin: 0px 10px;

}



.past-box img {

  width: 100%;

  height: 546px;

  object-fit: cover;

}



.past-overlay {

  display: none;

}



.past-item.slick-center .past-overlay {

  display: block;

  background-color: #003ca5;

  padding: 25px 20px;

  border-radius: 5px;

  width: 82%;

  margin-top: -130px;

  position: relative;

  margin-left: 20px;

}



.past-item.slick-center .past-overlay h4 {

  font-size: 30px;

  line-height: 1;

  margin-bottom: 10px;

  color: #fff;

}



.past-item.slick-center .past-overlay p {

  font-size: 14px;

  color: #fff;

  line-height: 23px;

  margin: unset;

}



section.past-projects .slick-slide {

  transition: all ease-in-out .3s;

  opacity: 1;

}



.past-item.slick-center .past-overlay::before {

  position: absolute;

  bottom: -24px;

  right: -40px;

  content: '';

  background-image: url(../images/dots.png);

  background-repeat: no-repeat;

  background-size: contain;

  width: 92px;

  height: 51px;

  z-index: 1;

}



section.past-projects .slick-track {

  margin-bottom: 30px;

}



section.past-projects .slick-dots li button:before {

  font-family: 'slick';

  font-size: 6px;

  line-height: 20px;

  position: absolute;

  top: 0;

  left: 0;

  width: 30px;

  height: 4px;

  content: '';

  text-align: center;

  opacity: 1;

  color: black;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  background-color: #e4e4e4;

}



section.past-projects .slick-dots li.slick-active button:before {

  opacity: 1;

  color: black;

  opacity: 1;

  background-color: #003ca5;

}



section.past-projects .slick-dots li {

  position: relative;

  display: inline-block;

  width: 20px;

  height: 20px;

  margin: 0 13px;

  padding: 0;

  cursor: pointer;

}



section.past-projects .slick-active {

  opacity: 1;

}



.past-head h2 {

  font-size: 50px;

  line-height: 1;

  margin-bottom: 10px;

  color: #000000;

}



/*project end */



/* about start */

.about-sec {

  padding: 80px 0;

  background-color: #fff;

}



.about-img {

  position: relative;

  border-radius: 5px;

  overflow: visible;

}



.about-img img {

  width: 100%;

  height: 555px;

  object-fit: cover;

  border-radius: 4px;

}



.about-blue {

  position: absolute;

  bottom: 20px;

  right: 15px;

  background-color: #1a4ab9;

  color: #fff;

  padding: 30px 20px;

  border-radius: 4px;

  width: 200px;

  text-align: center;

  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);

}



.about-blue h4 {

  font-size: 21px;

  font-weight: 400;

  color: #fff;

  line-height: 1.4;

  margin: 0;

  text-transform: uppercase;

}



.about-txt {

  padding-left: 20px;

}



.about-txt h2 {

  font-size: 50px;

  font-weight: 400;

  line-height: 1;

  color: #000;

  margin-bottom: 10px;

  text-transform: uppercase;

  font-family: 'Balbek';

}



.about-txt p {

  font-size: 13px;

  color: #555;

  line-height: 22px;

  margin-bottom: 15px;

  font-weight: 500;

}



.about-txt h3 {

  font-size: 26px;

  font-weight: 400;

  color: #1a4ab9;

  margin: 10px 0 5px;

  text-transform: uppercase;

}



@media (max-width: 1199px) {

  .about-blue {

    right: 0;

  }

}



@media (max-width: 991px) {

  .about-txt {

    padding-left: 0;

    margin-top: 60px;

  }



  .about-txt h2 {

    font-size: 32px;

  }



  .about-img img {

    height: 350px;

  }

}



/* about end */



/* choose start */

.choose-sec {

  padding: 0px 0 120px;

  background-color: #fff;

}



.choose-txt {

  background: #fff;

  padding: 60px 40px;

  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);

  position: relative;

  z-index: 2;

  margin-right: -182px;

  border-radius: 5px;

}



.choose-txt h2 {

  font-size: 50px;

  font-weight: 400;

  line-height: 1.1;

  color: #000;

  margin-bottom: 5px;

  text-transform: uppercase;

  font-family: 'Balbek';

}



.choose-txt p {

  font-size: 13.5px;

  color: #777;

  line-height: 22px;

  margin-bottom: 25px;

  font-weight: 500;

}



.choose-list {

  display: flex;

  flex-wrap: wrap;

  padding: 0;

  margin: 30px 0 40px;

  list-style: none;

}



.choose-list li {

  width: 45%;

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 14px;

  font-weight: 400;

  margin-bottom: 20px;

  color: #777;

}



.choose-list li img {

  width: 24px;

  height: auto;

}



.choose-img {

  position: relative;

  z-index: 1;

  width: 97%;

}



.choose-img .blue-bg {

  position: absolute;

  right: -26px;

  bottom: -50px;

  width: 130px;

  height: 720px;

  background: #1a4ab9;

  z-index: -1;

  border-radius: 5px;

}



.choose-img img {

  width: 100%;

  height: 717px;

  object-fit: cover;

  border-radius: 5px;

}



@media (max-width: 991px) {

  .choose-txt {

    margin-right: 0;

    padding: 40px 30px;

    margin-bottom: 60px;

  }



  .choose-txt h2 {

    font-size: 32px;

  }



  .choose-img .blue-bg {

    right: -20px;

    bottom: -20px;

    width: 150px;

    height: 240px;

  }

}



/* choose end */



/* Footer Start */

footer {

  background-color: #0c0c0c;

  padding: 60px 0 0;

  color: #ffffff;

  font-family: 'Montserrat', sans-serif;

}



.footer-top {

  padding-bottom: 30px;

}



.footer-right-top {

  padding-bottom: 30px;

}



.footer-widget h3 {

  font-size: 24px;

  color: #ffffff;

  font-weight: 400;

  margin-bottom: 25px;

  position: relative;

  padding-bottom: 10px;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  border-bottom: 2.5px solid rgba(255, 255, 255, 0.1);

  width: 80%;

}



.footer-widget h3::after {

  content: '';

  position: absolute;

  left: 0;

  bottom: -2.5px;

  width: 100px;

  height: 1.5px;

  background-color: #ffffff;

}



.footer-widget-first::before {

  position: absolute;

  top: -58px;

  right: 60px;

  height: 492px;

  width: 1px;

  content: '';

  background-color: #fff;

}



.footer-widget ul {

  margin: 0;

  padding: 0;

  list-style: none;

}



.footer-widget ul li {

  margin-bottom: 8px;

}



.footer-widget ul li a {

  color: #ffffff;

  font-size: 13px;

  transition: 0.3s;

  font-weight: 500;

}



.footer-widget ul li a:hover {

  color: #1a4ab9;

}



.footer-logo {

  display: block;

  margin-bottom: 25px;

}



.footer-logo img {

  max-width: 140px;

}



.contact-info li {

  color: #ffffff;

  font-size: 12px;

  margin-bottom: 6px !important;

  text-transform: uppercase;

  font-weight: 600;

  line-height: 1.4;

}



.contact-info li span {

  color: #ffffff;

  font-weight: 600;

  margin-right: 5px;

}



.contact-info li a {

  color: #ffffff;

  text-decoration: none;

}



.social-links {

  display: flex;

  gap: 10px;

  margin-top: 25px !important;

}



.social-links li a {

  width: 32px;

  height: 32px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #ffffff;

  font-size: 13px;

  transition: 0.3s;

}



.social-links li.active a,

.social-links li a:hover {

  background-color: #ffffff;

  color: #0c0c0c;

  border-color: #ffffff;

}



.newsletter-box {

  background-color: #151515;

  padding: 20px 30px;

  border-radius: 4px;

  margin-top: 10px;

}



.newsletter-box h3 {

  font-size: 22px;

  color: #ffffff;

  margin: 0;

  font-weight: 400;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  border: none;

  padding: 0;

}



.newsletter-form {

  display: flex;

  gap: 0;

  background-color: #1e1e1e;

  padding: 3px;

  border-radius: 4px;

  overflow: hidden;

}



.newsletter-form input {

  flex: 1;

  background: transparent;

  border: none;

  padding: 8px 15px;

  color: #ffffff;

  font-size: 12px;

}



.newsletter-form input::placeholder {

  color: #777777;

}



.newsletter-form button {

  background-color: #1a4ab9;

  color: #ffffff;

  border: none;

  padding: 12px 20px;

  border-radius: 3px;

  font-size: 14px;

  font-weight: 700;

  transition: 0.3s;

  text-transform: uppercase;

}



.newsletter-form button:hover {

  background-color: #133a92;

}



.footer-bottom {

  background-color: #0c0c0c;

  padding: 20px 0;

  border-top: 1px solid #fff;

  margin-top: 40px;

}



.footer-bottom p {

  text-align: center;

  color: #ffffff;

  font-size: 13px;

  margin: 0;

  font-weight: 600;

}



.footer-widget-first {

  padding-right: 40px;

  position: relative;

}



@media (max-width: 991px) {

  .newsletter-box {

    padding: 20px;

  }

}



@media (max-width: 767px) {

  .footer-widget-first {

    border-right: none;

    padding-right: 0;

    margin-bottom: 30px;

  }



  .footer-widget {

    margin-bottom: 30px;

  }



  .newsletter-box h3 {

    text-align: center;

    margin-bottom: 15px;

  }



  .footer-widget h3 {

    width: 100%;

  }

}



/*footer end*/

/*service start*/

.ser-slid .slick-active {

  opacity: 1;

}



.ser-img img {

  width: 100%;

  height: 630px;

  object-fit: cover;

}



.ser-bot-txt a img {

  width: 50px;

}



.ser-img {

  position: relative;

}



.ser-bot-txt {

  position: absolute;

  bottom: 20px;

  left: 0;

  right: 0;

  padding: 30px 20px;

  border: 1px solid #fff;

  margin: 0 auto;

  width: 90%;

  background-color: #6162668c;

}



.mai-ser-bx {

  position: relative;

}



.ser-bot-txt h4 {

  font-size: 30px;

  line-height: 1;

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 10px;

}



.ser-bot-txt p {

  font-size: 14px;

  color: #fff;

  line-height: 22px;

}



.ser-bot-txt h3 {

  font-size: 62px;

  line-height: 1;

  font-weight: 400;

  color: #fff;

  margin-bottom: 10px;

  margin-top: -60px;

}



.ser-bot-txt:hover {

  transition: 1s;

  background-color: #003ca5;

  border: unset;

}



.ser-bot-txt:hover a {

  border: 1px solid #fff;

}



.ser-txt-top h3 {

  font-size: 50px;

  line-height: 1;

  margin-bottom: 20px;

  font-weight: 400;

  color: #ffff;

}



section.service {

  margin-bottom: 100px;

  padding-top: 60px;

  position: relative;

  z-index: 1;

}



section.service::before {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  content: '';

  background-size: cover;

  background-repeat: no-repeat;

  height: 500px;

  background-image: url(../images/ser-bg.jpg);

  z-index: -1;

}





/* testimonials css start */

section.testimonials {

  padding: 100px 0;

}



.testimonials h2 {

  font-size: 50px;

  line-height: 1;

  font-weight: 400;

  color: #000;

  margin-bottom: 0px;

  text-transform: uppercase;

  font-family: 'Balbek';

}



.btn-review {

  background-color: #003ca5;

  color: #fff;

  padding: 15px 30px;

  border-radius: 5px;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  display: inline-block;

}



.btn-review:hover {

  background-color: #000;

  color: #fff;

}



.btn-arrow-box {

  background-color: #003ca5;

  color: #fff;

  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 5px;

}



.btn-arrow-box:hover {

  background-color: #000;

  color: #fff;

}



.testi-box {

  background-image: url(../images/test-txt-bg.jpg);

  background-size: cover;

  background-repeat: no-repeat;

  padding: 60px 40px;

  border-radius: 5px;

  position: relative;

  color: #fff;

}



.testi-box p {

  font-size: 14px;

  line-height: 24px;

  color: #fff;

  margin-bottom: 20px;

}



.stars {

  margin-bottom: 20px;

}



.stars i {

  color: #ffc107;

  font-size: 14px;

  margin-right: 5px;

}



.testi-profile {

  display: flex;

  align-items: center;

  margin-top: 30px;

}



.testi-profile img {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  object-fit: cover;

  margin-right: 15px;

}



.testi-profile h4 {

  font-family: 'Balbek';

  font-size: 20px;

  color: #fff;

  margin: 0;

  line-height: 1;

  text-transform: uppercase;

}



.testi-profile span {

  font-size: 12px;

  color: #fff;

  text-transform: uppercase;

}



.dots-bg {

  position: absolute;

  bottom: 8px;

  right: -11px;

  width: 80px !important;

}



.testi-img img {

  width: 100%;

  height: 600px;

  object-fit: cover;

  border-radius: 5px;

}



.testi-slider {

  margin-bottom: 100px;

  position: relative;

  z-index: 1;

}





.testi-slider .slick-arrow {

  position: absolute;

  bottom: -95px !important;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: 1px solid #003ca5;

  display: flex !important;

  align-items: center;

  justify-content: center;

  z-index: 10;

  cursor: pointer;

  font-size: 0;

  line-height: 0;

  background-color: transparent;

  background-repeat: no-repeat;

  background-position: center;

  transition: all 0.3s ease;

  color: transparent;

  top: auto;

}



.testi-slider .slick-prev {

  left: 33px;

  background-image: url(../images/test-arrows-img.png);

  transform: rotate(180deg);

  bottom: -70px !important;

  top: auto;

}



.testi-slider .slick-next {

  left: 88px;

  background-image: url(../images/test-arrows-img.png);

}



.testi-slider .slick-prev:before,

.testi-slider .slick-next:before {

  display: none;

}



.testi-slider .slick-prev:hover,

.testi-slider .slick-next:hover {

  background-color: #003ca5;

  border-color: #003ca5;

  /* Ensure the background image remains visible on hover */

  background-blend-mode: normal;

  background-image: url(../images/arrows-right.png);

}





/* testimonials css end */

.ser-slid .slick-next,

.ser-slid .slick-prev {

  top: -72px;

  position: absolute;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: 1px solid #fff;

  z-index: 10;

  display: flex !important;

  align-items: center;

  justify-content: center;

  background-color: transparent;

  background-repeat: no-repeat;

  background-position: center;

  transition: all 0.3s ease;

  cursor: pointer;

  font-size: 0;

  line-height: 0;

  color: transparent;

}



.ser-slid .slick-next {

  right: 12px;

  background-image: url(../images/arrows-right.png);

  top: -47px;

}



.ser-slid .slick-prev {

  left: auto;

  right: 75px;

  background-image: url(../images/arrows-right.png);

  transform: rotate(180deg);

}



.ser-slid {

  position: relative;

}



.ser-slid .slick-next,

.ser-slid .slick-prev {

  top: -95px;

}



.ser-slid .slick-next {

  right: 0;

  top: -59px;

}



.ser-slid .slick-prev {

  right: 65px;

  top: -83px;

}



.ser-slid .slick-prev:hover,

.ser-slid .slick-next:hover {

  background-color: #003ca5;

  border-color: #003ca5;

}



.ser-slid .slick-prev:before,

.ser-slid .slick-next:before {

  display: none;

}



/* Header New Styles */

header {

  background-color: #111;

  padding: 20px 0;

  position: relative;

  z-index: 1000;

  padding-bottom: 10px;

}



header .logo img {

  max-width: 260px;

  width: 160px;

}



#menu {

  margin: 0;

  display: flex;

  justify-content: space-between;

}



#menu li {

  display: inline-block;

}



#menu li a {

  color: #fff;

  font-size: 13px;

  font-weight: 500;

  text-transform: uppercase;

}



#menu li a:hover {

  color: #003ca5;

}



.user-icon {

  width: 40px;

  height: 40px;

  background-color: #222;

  border-radius: 50%;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

}



.user-icon:hover {

  background-color: #003ca5;

  color: #fff;

}



.btn-quote {

  background-color: #003ca5;

  color: #fff;

  padding: 12px 25px;

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  border-radius: 4px;

}



.btn-quote:hover {

  background-color: #fff;

  color: #003ca5;

}



.btn-arrow-header {

  width: 45px;

  height: 45px;

  background-color: #003ca5;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 4px;

}



.btn-arrow-header:hover {

  background-color: #fff;

  color: #003ca5;

}



/* Banner Styles */

.banner-sec {

  position: relative;

  padding-bottom: 0px;

  background-image: url(../images/banner-bg.jpg);

  background-size: cover;

  background-repeat: no-repeat;

}



.bg-black-banner {

  background-color: transparent;

  padding: 30px 50px 100px 15px;

  /* Reduced to standard 15px */

  height: 740px;

  position: relative;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start !important;

  align-items: flex-start !important;

}



.banner-txt h4 {

  font-size: 28px;

  color: #fff;

  font-weight: 300;

  margin-bottom: 10px;

  text-transform: uppercase;

  font-family: 'Balbek';

}



.banner-txt h2 {

  font-size: 84px;

  color: #fff;

  line-height: 0.9;

  font-weight: 300;

  margin-bottom: 10px;

  text-transform: uppercase;

  font-family: 'Balbek';

}



.banner-txt .sep-line {

  width: 520px;

  height: 2px;

  background-color: #fff;

  margin-bottom: 20px;

}



.banner-txt p {

  font-size: 14px;

  color: #999;

  line-height: 24px;

  margin-bottom: 40px;

  max-width: 75%;

}



.btn-view {

  background-color: #003ca5;

  color: #fff;

  padding: 15px 35px;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  border-radius: 4px;

}



.btn-view:hover {

  background-color: #fff;

  color: #003ca5;

}



.btn-arrow-banner {

  width: 50px;

  height: 50px;

  background-color: #003ca5;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 4px;

}



.btn-arrow-banner:hover {

  background-color: #fff;

  color: #003ca5;

}



.banner-img {

  position: relative;

  height: 100%;

}



.banner-img img {

  width: 100%;

  height: 740px;

  object-fit: cover;

  position: relative;

  z-index: 1;

  border-top-left-radius: 5px;

}



.exp-box {

  position: absolute;

  bottom: 20px;

  left: 15px;

  background-color: #003ca5;

  padding: 40px 40px;

  color: #fff;

  width: 180px;

  text-align: center;

  z-index: 2;

  border-radius: 5px;

}



.exp-box:after {

  content: '';

  position: absolute;

  bottom: 2px;

  right: 2px;

  border-bottom: 20px solid #fff;

  border-left: 20px solid transparent;

}



.exp-box h3 {

  font-size: 58px;

  font-weight: 400;

  margin: 0;

  line-height: 0.8;

  color: #fff;

  font-family: 'Balbek';

}



.exp-box span {

  font-size: 19px;

  font-weight: 400;

  display: block;

  line-height: 1.2;

  text-transform: uppercase;

  margin-top: 10px;

  font-family: 'Balbek';

}



.slide-count {

  display: flex;

  align-items: baseline;

}



.slide-count .current {

  font-size: 60px;

  font-weight: 700;

  color: #000;

  line-height: 1;

  font-family: 'Balbek';

}



.slide-count .total {

  font-size: 20px;

  color: #003ca5;

  font-weight: 700;

  margin-left: 5px;

}



/* Banner Slider Controls */

.slider-controls {

  position: absolute;

  bottom: 0;

  left: 0px;

  width: 50%;

  height: 100px;

  background-color: #fff;

  display: flex;

  align-items: center;

  padding-left: 30px;

  /* MATCHES .bg-black-banner padding-left */

  gap: 15px;

  z-index: 0;

}



/* Custom Navigation Arrows within Controls */

.slider-controls .slick-arrow {

  position: static;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex !important;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 0;

  line-height: 0;

  color: transparent;

  background-color: transparent;

  transition: all 0.3s;

  background-repeat: no-repeat;

  background-position: center;

  transform: none;

  margin: 0 5px;

  border: none;

  /* Ensure no default border */

  z-index: 10;

}



/* Hide default slick characters */

.slider-controls .slick-arrow:before {

  display: none !important;

}



.slider-controls .slick-prev {

  background-image: url(../images/arrows-right.png);

  background-color: #003ca5;

  border: 1px solid #003ca5;

  /* Add border back */

  transform: rotate(180deg);

  filter: invert(0);

  position: absolute;

  left: 520px;

  top: 23px;

}



.slider-controls .slick-next {

  background-image: url(../images/test-arrows-img.png);

  background-color: #fff;

  border: 1px solid #ddd;

  /* Add border back */

  /* filter: invert(1); */

  position: absolute;

  right: 150px;

  top: 20px;

}



.slider-controls .slick-next:hover {

  background-color: #003ca5;

  border-color: #003ca5;

  /* filter: invert(0); */

  background-image: url(../images/arrows-right.png);

}



/* Eliminate Space between Text and Arrows */

.slider-controls {

  justify-content: flex-start;

  /* Default, but explicit */

  gap: 15px;

  /* Use gap */

}



/* Reduce gap if needed, user said position sahi karo (fix position) */



/* Ensure wrapper doesn't have extra padding interfering */

.slide-count {

  margin-right: 10px;

}



/* Ensure Image sticks to Right */

.banner-item .container-fluid {

  padding: 0 !important;

}



.banner-item .row {

  margin-right: 0 !important;

  margin-left: 0 !important;

}



.banner-item .col-md-7 {

  padding-right: 0 !important;

  padding-left: 0 !important;

}





/* Slick overwrites */

.main-slider .slick-dots {

  display: none !important;

}



/* Mobile Menu Trigger */

#mobile-menu-trigger {

  color: #fff;

  font-size: 24px;

  cursor: pointer;

}

.main-slider.slick-initialized.slick-slider .slick-slide {

  margin: 0 0;

}

.banner-txt {

  padding-left: 4%;

}

input[type="number"]::-webkit-inner-spin-button,

input[type="number"]::-webkit-outer-spin-button {

  -webkit-appearance: none;

  margin: 0;

}



input[type="number"] {

  -moz-appearance: textfield;

}



/*inner-banner start*/

section.inner-banner {

  position: relative;

  height: 540px;

  width: 100%;

  background-image: url(../images/inn-ban.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  display: flex;

  align-items: center;

}

header.inn {

  background-color: unset;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1;

}



.inn-ban-txt h1 {

  font-size: 45px;

  line-height: 1;

  text-transform: uppercase;

}

.inn-ban-txt {

  margin-top: 50px;

}

.choose-txt.bot {

  box-shadow: unset;

  background-color: unset;

  margin: unset;

  padding-top: 50px;

}

section.choose-sec.inn {

  padding-bottom: unset;

}

section.testimonials.inn {

  padding-top: unset;

}

section.service.inn {

  padding: 100px 0px;

  margin: unset;

}



section.service.inn::before {

  display: none;

}

/*inner-banner end*/

.watch-video {

  padding-top: 4%;

  background-position: center;

  background-size: cover !important;

  background: url(../images/video-bg.png)no-repeat;

  padding-bottom: 6%;

}



.video-slide .slick-slide.slick-current.slick-active.slick-center {

  transform: scale(1.4);

}



.video-slide .slick-slide.slick-active img {

  width: 271px;

  height: 250px;

  object-fit: cover;

  margin: 0 auto;

  object-position: top;

}



.video-slide .slick-slide.slick-current.slick-active.slick-center img {

  width: 100%;

  height: 300px;

  object-fit: cover;

  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;

}



.video-slide .slick-track {

  display: flex;

  align-items: center;

}



.vido-img img:not(a img) {

  border: 5px solid #fff;

}



.vido-img {

  position: relative;

}



.vido-img a {

  position: absolute;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  top: 0;

}



.vido-img a img {

  width: 52px !important;

  height: 56px !important;

  object-fit: cover;

}



.video-slide .slick-slide.slick-current.slick-active.slick-center .vido-img:after {

  content: '';

  position: absolute;

  width: 92%;

  height: 19px;

  background: url(../images/cnetr-ply-scrol.png);

  background-size: cover;

  bottom: 7%;

  left: 4%;

  background-repeat: no-repeat;

}



.video-slide .slick-slide.slick-active .vido-img:after {

  content: '';

  position: absolute;

  width: 62%;

  height: 19px;

  background: url(../images/activ-ply.png);

  background-size: cover;

  bottom: 7%;

  left: 19%;

  background-repeat: no-repeat;

}



.video-slide .slick-prev:before {

  content: "\f053";

  font-family: 'Font Awesome 5 Free';

  font-weight: 900;

  color: #6785ff;

  font-size: 25px;

}



.video-slide .slick-next:before {

  content: "\f054";

  font-family: 'Font Awesome 5 Free';

  font-weight: 900;

  font-size: 25px;

  color: #6785ff;



}



.video-slide .slick-next:hover:before,

.video-slide .slick-prev:hover:before {

  color: #0062a6;

}



.video-slide .slick-slide {

  margin: 62px 20px;

}



.video-slide .slick-active {

  opacity: 1;

}



.watch-heading {

  text-align: center;

  margin-bottom: 4%;

}



.watch-heading h2 {

  color: #fff;

}



.watch-heading p {

  font-size: 18px;

  width: 50%;

  color: #fff;

  line-height: 25px;

  margin: 0 auto;

}

/*service -page end*/

/* Inner Contact Start*/



.contact1 p,

.contact2>p {

  margin-bottom: 30px;

  font-family: "Montserrat", sans-serif;

  font-weight: 600;

}



.contact2 ul {

  margin-top: 40px;

}



.contact1 input,

.contact1 textarea {

  width: 100%;

  margin-bottom: 20px;

  padding: 20px;

  background: #fff;

  border: 1px solid #000;

  color: #000;

}



.contact1 .theme_btn {

  width: 100%;

  border: 0;

  background: #f01414;

  color: #fff;

  padding: 10px;

  font-size: 23.64px;

  font-family: "Nunito";

  font-weight: 500;

  border-radius: 0;

  height: 60px;

}



.contact1 textarea {

  height: 200px;

}



.contact2 ul li {

  display: flex;

  align-items: center;

  margin-bottom: 50px;

  gap: 25px;

}



.contact2 ul li h4 {

  text-transform: capitalize;

  font-size: 30px;

  color: #000000;

  font-weight: 500;

  font-family: 'Balbek';

  margin-bottom: 8px;

  text-transform: uppercase;

}



.contact2 ul li p {

  color: #000;

  font-size: 18px;

  width: 100%;

  margin-bottom: 0;

  font-weight: 500;

}



.contact1 button {

  border: none;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  height: 50px;

  font-size: 20px;

  text-transform: uppercase;

  border-radius: 10px;

  color: #fff;

  display: flex;

  align-items: center;

  gap: 20px;

  background-color: unset;
}

.contact1 button span {
  width: 100%;
  padding: 12px 10px;
  background-color: #173da8;
  border-radius: 10px;
}

.contact2 .icon i {

  height: 90px;

  width: 90px;

  border-radius: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #003ca5;

}



.contact2 .icon i {

  font-size: 40px;

  color: #fff;

  font-family: 'FontAwesome';

  font-style: normal;

}



section.contact_us {

  padding: 80px 0;

  position: relative;

  width: 100%;

  height: 100%;

  background-size: cover;

  background-position: top;

}



section.contact_us::before {

  top: 55px;

  right: -24%;

  width: 56%;

  content: '';

  height: 800px;

  position: absolute;

  background-size: contain;

  background: url(../images/about-bg.png) no-repeat;

  /* filter: brightness(0) saturate(100%) invert(97%) sepia(32%) saturate(300%) hue-rotate(191deg) brightness(116%) contrast(80%); */

  opacity: 0.5;

}



.contact-before-after {

  position: relative;

}





.contact-left-right-img {

  position: relative;

}



.map {

  margin-top: 50px;

}



.contact1 input {

  /* border-radius: 30px; */

}



.contact1 textarea {

  /* border-radius: 30px; */

  resize: none;

}



.contact1 input::placeholder,

.contact1 textarea::placeholder {

  color: #000;



  font-weight: 500;

}



.contact1 {

  position: relative;

  width: 95%;

}



i.far.fa-phone-alt {

  transform: rotate(98deg);

}



.map iframe {

  box-shadow: 0 0 20px 0 #0000003d;

}



img.contact_img_1 {

  position: absolute;

  left: 0;

  top: -30px;

}



img.contact_img_2 {

  position: absolute;

  right: -20px;

  top: 30px;

}



.contact1 h2 {

  color: #000000;

  font-size: 50px;

  margin-bottom: 10px;

  font-weight: 500;

  text-transform: uppercase;

}



.contact2 h2 {

  color: #000000;

  font-size: 50px;

  margin-bottom: 10px;

  font-weight: 500;

  text-transform: uppercase;

}



/* Inner Contact End*/

/* Form Start */



.work-text h1 {

  text-align: center;

  font-size: 65px;

  position: relative;

  color: #673AB7;

}



.work-text h1 span {

  color: #ffffff;

  text-shadow: -3px 1px #000000;

}



.work-text h1::before {

  content: "";

  background: url(../images/work-ellipse.png);

  position: absolute;

  height: 120px;

  width: 100%;

  background-repeat: no-repeat;

  z-index: -1;

  top: -40%;

  left: 26%;

}



.form-control:disabled,

.form-control:read-only {

  background-color: #ffffff;

}



.input-group-text {

  background-color: #ffffff;

  border-left: 0;

}



.order-form input.form-control {

  border-right: 0;

}



.order-form textarea.form-control {

  border-right: 0;

}



.order-form .input-group>.form-control,

.order-form .input-group>.form-select {

  position: relative;

  flex: 1 1 auto;

  width: 1%;

  min-width: 0;

  padding: 15px;

  margin-bottom: 0;

}



.order-form .form-select {

  background-image: url(../images/arrow-icon.png);

  background-size: unset;

}



.input-group-text.plane {

  align-items: start;

}



.order-form textarea.form-control {

  resize: none;

}



.submit-btn button span {
  padding: 14px 20px;
  background: #173da8;
  border-radius: 5px;
}



.submit-btn {

  text-align: center;

  position: relative;

  display: flex;

  align-items: center;

  gap: 10px;
}



.submit-btn button::after {

  content: url(../images/btn-bottom.png);

  position: absolute;

  bottom: 1px;

  left: 48%;

}



.submit-btn span.text {

  margin-left: 19px;

}



form.order-form {

  margin-top: 0%;

}



form.order-form :is(input,

  select,

  textarea) {

  border: 1px solid #b3b3b3;

  border-radius: 10px;

}



.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {

  /* border: 1px solid #b3b3b3; */

  border-radius: 0px 10px 10px 0px;

  padding: 14px;
}



section.work-together.bg-effect:before {

  background-position: bottom;

}



.submit-btn button {

  /* background: #173da8; */

  color: #fff !important;

  border-radius: 25px;

  font-size: 18px;

  font-weight: 500;

  border: none;

  display: flex;

  align-items: center;

  gap: 10px;

  justify-content: center;

  margin: 0 auto;

  background-color: unset;
}



.work-together {

  margin-bottom: 100px;

  margin-top: 100px;

}

/*login start*/



section.login {

  padding: 100px 50px;

}



.login-txt form input {

  width: 100%;

  margin-bottom: 10px;

  outline: none;

  padding: 15px 15px;

  border: 1px solid #e2e2e2;

  color: #000;

  border-radius: 10px;

  background-color: #fff;

}



.login-txt h3 {

  font-size: 45px;

  text-align: center;

  line-height: 50px;

  text-transform: capitalize;

  font-weight: 400;

  color: #fff;

}



.login-txt {

  padding: 45px 25px 35px;

  border-radius: 10px;

  /* background-color: #fdfdfd; */

  /* border: 2px solid #e8e8e8; */

  background-color: #0a0a0a;

  box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.15);

}



.login-txt ul {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



li.head {

  color: #000;

  font-size: 17px;

  font-weight: 600;

}



.login-txt ul li {

  display: flex;

  gap: 7px;

  color: #fff;

}



.login-txt form button {

  width: 100%;

  color: #fff;

  border-radius: 0px;

  padding: 14px 0px;

  outline: none;

  border: none;

  margin-bottom: 20px;

  font-size: 18px;

  font-weight: 500;

  font-family: "Montserrat";

  box-shadow: -3.119px 14.672px 38px 0px rgba(21, 21, 23, 0.21);

  background-color: #003ca5;

  border-radius: 10px;

  text-transform: uppercase;

  font-family: 'Balbek';

  font-weight: 400;

}



.login-txt a {

  color: #fff;

  text-decoration: underline;

}



section.reviews.inn .client-box:hover * {

  color: #000;

}



section.reviews.inn .client-box .quotess {

  display: none;

}



section.reviews.inn {

  padding: 100px 0px 40px;

}



section.reviews.inn .client-ineer-box::before {

  display: none;

}





/*login end*/

.about-text-box h2 {

  font-size: 50px;

  line-height: 1;

  color: #000000;

  text-transform: uppercase;

  margin-bottom: 10px;

}



.about-text-box p {

  font-size: 14px;

  line-height: 22px;

}



.about-img-box img {

  height: 526px;

  object-fit: cover;

}

.faq-pg-sec {

  padding: 80px 0;

}



.faq-h h3 {

  font-size: 50px;

  text-transform: uppercase;

  color: #000;

}



section.faq.pt-8.pb-8 {

  /* background: url(../images/gallery.png); */

  background-size: cover !important;

  /* box-shadow: inset 0 0 0 2000px #367de2d6; */

  background: url(../images/ser-det-bg.jpg)no-repeat;

  padding: 100px 0px;

}



button.accordion-button.collapsed {

  color: #ffffff;

  font-size: 37px;

  font-weight: 500;

  background: #003ca5;

  border-radius: 10px !important;

  margin-bottom: 30px;

  text-transform: uppercase;

}



.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  /* border-top-right-radius: calc(0.25rem - 1px); */
  border-radius: 50px;
}



.accordion-item:last-of-type .accordion-button.collapsed {

  border-radius: 50px;

}



.accordion-button::after {

  background-image: url(../images/faq-arrow.2png.png);

  right: 7px;

  height: 20px;

  width: 34px;

  background-size: contain;

  position: absolute;

}

.ser-head {

  text-align: center;

  margin-bottom: 30px;

}



.ser-head h2 {

  font-size: 50px;

  line-height: 1;

  color: #fff;

  text-transform: uppercase;

  margin-bottom: 0;

}



.ser-head p {

  font-size: 14px;

  color: #fff;

  margin: 0 auto;

  width: 40%;

}

.accordion-item {

  border: 0;



}



.accordion-button:not(.collapsed)::after {
  height: 20px;
  width: 29px;
  background-size: cover;
  position: absolute;
  background-image: url(../images/faq-arrow.2png.png);
  object-fit: cover;
  top: 38px;
  right: 30px;
  background-size: contain;
  transform: rotate(-360deg);
  /* display: none; */
}



.accordion-button:not(.collapsed) {

  color: #ffffff;

  box-shadow: unset;

  font-size: 30px;

  font-weight: 500;

  border-radius: 10px;

  background: #173da8;
}



.accordion-header {

  margin-bottom: 0;

  background: #fff;

  border-radius: 50px 50px 50px 50px;

}



.accordion-body {

  padding: 0;

  font-weight: 400;

  font-size: 17px;

  color: #000;

  margin: 0% 0% 2% 0%;

  padding: 3% 2% 2% 2%;

  background-color: #fff;

  margin: 20px;

  border-radius: 15px;

}



.accordion-item .accordion-button:hover {

  /* background: linear-gradient(0deg, rgba(176,15,31,1) 10%, rgba(116,2,23,1) 100%); */

}



button.accordion-button span {

  margin-left: 2%;

  color: #ffffff;

  font-weight: 400;

  font-size: 45px;

  font-family: 'Raleway';

}



.accordion-button:not(.collapsed) span {

  color: #072366;

  font-size: 45px;

  font-weight: 400;

  font-family: 'Raleway';

}

.accordion-item {

  background-color: unset !important;

}

section.service.inn.tw {

  padding: unset;

  padding-bottom: 100px;

}

section.past-projects.inn {
  padding: 100px 0px 0px;
}

section.past-projects.inn ul.slick-dots {
  display: none !important;
}

/* Gallery Services Section */
.gal-services {
  padding: 0px 0 100px;
  background: #fff;
}

.gal-item {
  padding: 0 0px;
}

.gal-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
  background: #000;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gal-card:hover img {
  transform: scale(1.05);
}

.gal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Sirf neechy halka sa gradient taake heading saaf dikhe, baqi image clear rehe */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 40%);
  z-index: 1;
}

.gal-content {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 2;
}

.gal-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif !important;
}

.gal-content p {
  font-size: 12.5px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif !important;
  opacity: 0.9;
}

.more-detail-btn {
  background-color: #fff;
  color: #000;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px !important;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  font-family: 'Montserrat', sans-serif !important;
  transition: 0.3s;
}

.more-detail-btn .arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 38px;
  height: 30px;
  background: #fff;
  color: #333;
  font-size: 14px;
}

.more-detail-btn:hover {
  background-color: #003ca5;
  color: #fff !important;
}

.more-detail-btn:hover .arrow-box {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

/* Slick Dots Design */
.gal-slider .slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gal-slider .slick-dots li {
  margin: 0 4px;
  width: 40px;
  height: 4px;
  padding: 0;
}

.gal-slider .slick-dots li button {
  width: 40px !important;
  height: 4px !important;
  padding: 0 !important;
  background: #e5e5e5;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 2px;
}


.gal-slider .slick-slide {
    margin: 0px 10px;
}
.gal-slider .slick-dots li.slick-active button {
  background: #003ca5;
}

.gal-slider .slick-active {
    opacity: 1;
}



.gal-slider .slick-dots li button:before {

  font-family: 'slick';

  font-size: 6px;

  line-height: 20px;

  position: absolute;

  top: 0;

  left: 0;

  width: 30px;

  height: 4px;

  content: '';

  text-align: center;

  opacity: 1;

  color: black;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  background-color: #e4e4e4;

}



.gal-slider .slick-dots li.slick-active button:before {

  opacity: 1;

  color: black;

  opacity: 1;

  background-color: #003ca5;

}



.gal-slider .slick-dots li {

  position: relative;

  display: inline-block;

  width: 20px;

  height: 20px;

  margin: 0 13px;

  padding: 0;

  cursor: pointer;

}



.gal-slider .slick-active {

  opacity: 1;

}