@import url("https://b72a98.claudeassets.com/20260416133941cs_/https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Marcellus&display=swap");

:root {
  --primary-color:#000b7e;
  --secondary-color:#ffcb08;
  --secondary-light:#fffcf3;
  --body-color: #181818;
  --light: #f1f7ff;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --serif: "Marcellus", serif;
  --golden-gradient: radial-gradient(
    ellipse farthest-corner at right bottom,
    #dbffe5 0%,
    #063978 8%,
    #073875 30%,
    #063978 40%,
    transparent 80%
  ),
  radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #12488b 8%,
    #064491 25%,
    #0e4993 62.5%,
    #4588db 100%
  );
  --golden-gradient-hover: radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #a6fbbe 8%,
    #7ba587 25%,
    #425951 62.5%),
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #dbffe5 0%,
      #7ba587 8%,
      #425951 30%,
      #243b33 40%,
      transparent 80%
    );
}

html{
  scroll-behavior: smooth;
}

body {
  background-blend-mode: multiply;
  font: 400 .95rem "Open Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

svg:not([fill]) {
  fill: currentColor;
}

.font-weight-bolder{
  font-weight: 800 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-weight: 700;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}

.bg-primary{
  background-color: var(--primary-color) !important;
  color: #fff;
}

.bg-secondary{
  background-color: var(--secondary-color) !important;
}
.bg-secondary-light{
  background-color: var(--secondary-light) !important;
}
.bg-light{
  background-color: var(--light) !important;
}

.bg-dark{
  background-color: var(--body-color) !important;
  color: #fff;
}

.bg-primary-grad{
  background-image: radial-gradient(circle at 50% -100%, #0016ff, var(--primary-color));
  color: #fff;
}
.bg-primary-image{
  background: url(https://bce3d0.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/blue-bg-4k.jpg) center / cover no-repeat var(--primary-color);
  color: #fff;
}
small {
  font-size: 80%;
}
@media(max-width:2000px){
  .bg-primary-image{background-image: url(https://09ac75.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/blue-bg-hd.jpg);}
}
@media(max-width:1080px){
  .bg-primary-image{background-image: url(https://d2af3b.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/blue-bg.jpg);}
}

.bg-image{
  background: center / cover no-repeat fixed;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  z-index: -1;
}

.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
  color: var(--secondary-color) !important;
}

.text-serif{
  font-family: var(--serif);
}

html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/* Landing page */
.landingpage{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: block;
  z-index: 999999999999999;
  transition: all 2s ease;
}
.landingpage::before{
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: url(https://20f31f.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/lining-city.jpg) bottom center / 70% repeat-x;
  z-index: -1;
}

.landingpage.vanish{
  left: 101%;
  pointer-events: none;
}

.landing-section{
  width: 100%;
  height:100%;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skipBtn{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 10px 2rem;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  z-index: 9;
}

.skipBtn:hover{
  background: var(--secondary-color);
  color: var(--body-color);
}

.landing-img{
  z-index: 1;
  max-width: 250px;
  width: 80%;
  display: none;
}

.landing-img.go{
  top: 100%;
}
/* Landing page */

/*header*/
.header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  transition: all 300ms ease-in-out;
  flex-wrap: wrap;
}
.top-header{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}
.top-header ul{
  display: flex;
  justify-content: end;
  align-items: center;
}
.top-header .topLinks a{
  padding: 7px 10px;
  color: #fff;
  font-size: 12px;
  display: block;
}
.top-header .topLinks a:hover{
  color: var(--secondary-color);
}

.top-header .social-archive-btn{
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  width: 40px;
  height: 40px;
  padding: 10px;
  display: none;
  align-items: center;
  justify-content: center;
}

.top-header .topSocial{
  background-color: #fff;
}

.top-header .topSocial i{
  padding: 7px 10px;
  font-size: 14px
}

.fa-facebook-f{
  color: var(--facebook);
}
.fa-linkedin-in{
  color: var(--linkedin);
}
.fa-instagram{
  color: var(--instagram);
}
.fa-x-twitter{
  color: var(--twitter);
}
.fa-youtube{
  color: var(--youtube);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 1px;
  padding: 5px 0 5px 10px;
  transition: all 300ms ease-in-out;
}

.logo img{
  width: 190px;
}

.header .main-header{
  display: flex;
  align-items: center;
}

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
}

.header .nav > ul > li{
  height: 100%;
}

.header .nav > ul > li > a {
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  padding: 1rem;
  z-index: 1;
}

.header .nav ul li a i{
  font-size: 75%;
  transition: all 300ms ease-in-out;
}

.header .nav ul li:hover > a{
  color: var(--secondary-color);
}

.header .nav ul li:hover > a i{
  transform: rotate(180deg);
}

.header .nav > ul > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 300ms ease-in-out;
  transform: scaleX(0);
  z-index: -1;
}

.header .nav ul li > a.active::before,
.header .nav ul li:hover > a::before {
  transform: scaleX(1);
}

.header .nav ul li .dropdown{
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 10px 2rem rgb(0 0 0 / 15%);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  translate: 0 20px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.header .nav ul li:hover .dropdown{
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  pointer-events: all;
}

.header .nav ul li .dropdown.dropdown-sm{
  width: 250px;
  padding: 10px 20px;
  z-index: 9;
}

.header .nav ul li .dropdown.dropdown-sm ul li a{
  font-size: 15px;
  display: block;
  color: var(--body-color);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.header .nav ul li .dropdown.dropdown-sm ul li:last-of-type a{
  border-bottom: none;
}

.header .nav ul li .dropdown.dropdown-sm ul li a.active,
.header .nav ul li .dropdown.dropdown-sm ul li a:hover{
  color: var(--primary-color);
}

.header .nav ul li .dropdown.dropdown-sm ul li a.btn.disabled{
  font-size: 15px;
  border-radius: 0;
  border: none;
  line-height: normal;
}

.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  width: 40px; 
  height: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  z-index: 99999;
  padding: 10px;
  right: 0;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--body-color);
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span{
  background-color: maroon;
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

.menuContainer {
  position: fixed;
  inset: 0;
  padding: calc(55px + 1rem) 1rem 1rem;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, #0016ff, var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/*header*/

.banner{
  height: 100vh;
  position: relative;
  isolation: isolate;
  background-color: #000;
}

.banner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(0 0 0 / 50%), transparent 30%);
  z-index: 2;
}

.soundBtn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9;
}

.enqOffBtn{
  width: 40px;
    height: 40px;
    overflow: hidden;
    position: fixed;
    bottom: 43%;
    z-index: 998;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    word-break: break-all;
    -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.54);
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.54);
    -webkit-transition: 600ms all;
    transition: 600ms all;
    right: 0;
}
#enqBtn:hover{height:190px;}
#offerBtn:hover{height:190px;}
.enqOffBtn i{position:absolute;left:0;top:0;width:100%;height:40px;line-height:40px;font-size:20px;text-align:center;background:#ECECEC;border:solid #b1b1b1;border-width:1px 0 1px 1px;color:var(--primary-color);}
.enqForm, .enqForm *{-webkit-transition:600ms all; transition:600ms all;}
.enqOffBtn a:first-child {
  color: #fff;
  padding: 50px 15px 10px;
  display: block;
}
.carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.scrollDown {
  position: absolute;
  left:calc(50% - 15px);
  bottom: 2px;
  width: 30px;
  cursor: pointer;
  z-index: 9;
  animation: bounce 1s alternate infinite;
  filter: invert(1);
}
.carousel-indicators {
  right: auto;
  bottom: calc(50% - 30px);
  left: 3%;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
  display: block;
}
/* Fixed form */
.fixed-form {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  padding: 20px;
  border: 2px solid var(--primary-color);
  z-index: 1000;
  background-color: var(--light);
  box-shadow: 0 -10px 2rem rgb(0 0 0 / 40%);
  display: none;
}
.fixed-form .form-group{
  margin: 5px 0;
  flex-basis: auto;
}

.fixed-form .formFooter{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-form .formFooter button{
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  transition: all 300ms ease-in-out;
  outline: none;
}

.fixed-form .formFooter button:hover{
  background-color: var(--secondary-color);
  color: var(--body-color);
}
.closeForm {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  text-align: center;
  background-color: maroon;
  color: #fff;
  cursor: pointer;
}
.closeForm:hover{
  color: var(--body-color);
  background-color:var(--secondary-color);
}
.closeForm::before,
.closeForm::after{
  content: '';
  position: absolute;
  top: 0;
  border: 5px solid;
}
.closeForm::before{
  right: 100%;
  border-color: transparent #000 #000 transparent;
}
.closeForm::after{
  left: 100%;
  border-color:  transparent transparent #000 #000;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
}

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background: none;
  outline: none;
  height: auto;
  padding: 10px 0;
  border-radius: 0;
}
.form-control.bg-white {
  padding: 10px;
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}
/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 10 12 / 95%);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background: var(--secondary-color);
  border: none;
}
.modal-dialog {
  max-width: 700px;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}
.no-gutters .col-md-6:first-child {
  background: #0b0a08;
  border-radius: 1rem 0 0 1rem;
}
.no-gutters .col-md-6:first-child .modal-body {
  background-size: 100% !important;
}

.modal-body {
  padding: 25px;
}

.modal-details {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}
.modal-details h5 {
  font-weight: 400;
}
.modal-details .banner-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}
.formFooter.readmore .button {
  background: var(--body-color);
  color: #fff;
}
/* customize modal */

.padding
{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.position-relative{
  z-index: 1;
}

.headingContainer{
  margin-bottom: 1.5rem;
}

.headingContainer.d-flex{
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.heading {
  display: table;
  margin-bottom: 1.5rem;
}

.heading .h1 {
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  display: inline-table;
  /* padding-left: 50px; */
  padding-bottom: 10px;
  text-align: left;
}

.heading .h1::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 80px;
  height: 3px;
  background-image: linear-gradient(to left, #1eb256 33%, #ffcb08 33%, #ffcb08 67%, #1220b4 67%);
  z-index: 0;
  /* background: url(https://5d692e.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/logo-bars.svg) center / 100% no-repeat; */
  /* filter: grayscale(1) opacity(0.5); */
}

.heading.mx-auto .h1::before {
  left: 50%;
  transform: translateX(-50%);
}

.heading h4{
  font-weight: 700;
}

.heading.d-flex {
  justify-content: center;
  align-items: baseline;
  /* gap: 15px; */
  flex-wrap: wrap;
}

.heading.d-flex .headingToggleBtn{
  font-size: 2rem;
  color: rgb(0 0 0 / 25%);
  position: relative;
  padding: 0;
  border: 0;
  font-weight: 700;
  background-color: transparent;
  padding: 5px 8px;
  cursor: pointer;
  text-transform: uppercase;
}

.heading.d-flex .headingToggleBtn:last-of-type{
  /* padding-right: 0; */
}

.heading.d-flex .headingToggleBtn:hover{
  color: rgb(0 0 0 / 40%);
}

.heading.d-flex .headingToggleBtn::after{
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 1px;
  height: 70%;
  top: 15%;
  border-radius: 50%;
  background-color: #999292;
  transform: rotate(359deg);
}

.heading.d-flex .headingToggleBtn:last-of-type:after{
  display: none;
}

.heading.d-flex .headingToggleBtn.active{
  color: initial;
  /* font-size: 3rem; */
  margin: 10px;
  color: #ffc107 !important;!i;!;
}

.gap-row{
  row-gap: 30px;
}

/* overview */
.overview h2{
  color: var(--primary-color);
  border-bottom: 1px solid #dfdbdb;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 2rem;
}

.devsai-behind_text{
  font-size: 16vw;
  font-weight: 800;
  width: 100%;
  text-align: center;
  text-wrap: nowrap;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  color: rgb(0 0 0 / 4%);
  z-index: -1;
}

.city-img{
  position: absolute;
  inset: 0;
  background: url(https://20f31f.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/lining-city.jpg) left bottom / 50% repeat-x;
  opacity: 0.1;
  z-index: -1;
}
/* why choose us */
.whyusContainer{
  margin: 4rem 0;
}
.whyUsBox{
	text-align:center;
}

.whyUsBox section{
  height: 100%;
	padding: 0 20px 20px;
  font-size: 14px;
  background-color: var(--clr);
  box-shadow: inset 0 0 1rem rgb(0 0 0 / 15%);
}

.whyUsBox .imgBox {
  width: 70px;
  border-radius: 50%;
  padding: 10px;
  background-color: #fff;
  margin: 0 auto;
  transform: translateY(-50%);
  border: 2px solid var(--clr);
}

.whyUsBox section .imgBox svg path{
	fill:var(--primary-color);
	stroke-miterlimit:50;
	stroke-dasharray:2620;
	stroke-dashoffset:0;
  stroke-width: 10px;
}

.whyUsBox section:hover .imgBox svg path{
	fill:none;
	stroke:var(--primary-color);
	-webkit-animation:path 5s infinite;
	animation:path 5s infinite;
}

@-webkit-keyframes path{
	0%{stroke-dashoffset:2620;}
	100%{stroke-dashoffset:0; stroke:none;}
}

@keyframes path{
	0%{stroke-dashoffset:2620;}
	100%{stroke-dashoffset:0; stroke:none; fill: var(--primary-color);}
}

.whyUsBox .whyUsText {
  margin-top: -1rem;
}
.whyUsBox .whyUsText h6 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight:800;
  text-transform: uppercase;
}

.whyUsBox section p{
  margin-bottom: 0;
}
/* why choose us */

/*hm projects */
.projectBox .inner{
  position: relative;
  display: block;
  isolation: isolate;
}
.projectBox .inner > picture > img{
  opacity: 0.5;
}

.projectBox-detail{
  position: absolute;
  inset: 10px;
  border: 1px solid rgb(255 255 255 / 25%);
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.projectBox .inner:hover .projectBox-detail{
  background-color: rgb(0 0 0 / 50%);
  backdrop-filter: blur(4px);
}

.projectBox-detail .badge{
  position: absolute;
  right: 10px;
  top: 10px;
}

.projectBox-detail .project-title{
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.projectBox-detail li{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.projectBox-detail li:not(:last-of-type){
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(255 255 255 / 25%);
}
/*hm projects*/

/* inside project page */
.inside-projectImg .img-fluid{
  position: relative;
}
.inside-projectImg .badge{
  position: absolute;
  left: 10px;
  top: 10px;
}

.inside-projectBox-detail .inner{
  height: 100%;
  padding: 2rem;
  border: 1px solid rgb(0 0 0 / 10%);
}

.inside-projectBox-detail .inner h4{
  margin-bottom: 1.5rem;
}

.inside-projectBox-detail li{
  display: flex;
  justify-content: space-between;
}

.inside-projectBox-detail li:not(:last-of-type){
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
/* inside project page */

.fpHead{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.fpHead .fpBtn {
  background-color: transparent;
  color:rgb(255 255 255 / 75%);
  font-weight: 700;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border: 0;
}

.fpHead .fpBtn:hover{
  color: #fff;
}

.fpHead .fpBtn.active {
  background:var(--secondary-color);
  text-transform: uppercase;
  color: var(--body-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 25%);
}

.dinone{
  display: none;
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  padding: 10px;
  min-width: 130px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
}

.readmore .button:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: transparent;
}
.button.white{
  background-color: #fff;
  color: var(--body-color);
}

.button.white:hover{
  color: var(--body-color);
  background: var(--secondary-color);
}

.viewmore{
	width:100%;
	margin-top:30px;
}

.viewmore .button{
	position:relative;
	display:flex;
	color:var(--primary-color);
	align-items:center;
	font-size:14px;
  font-weight: 600;
	transition:all 300ms ease-in-out;
}

.viewmore button{
  background-color: transparent;
  border: 0;
  padding: 0;
}

.viewmore.circular .button{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--corp-color);
}

.project_box_details:hover .viewmore.circular .button,
.viewmore.circular .button:hover{
  background-color: var(--secondary-color);
}

.viewmore .button span{
	margin:0 5px;
}

.viewmore .button::before,
.viewmore .button::after{
	content:'';
	height:11px;
	width:30px;
	background:url(https://a3830e.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/arrow-right.png) center no-repeat;
	background-size:100%;
	transition:all 300ms ease-in-out;
}

.viewmore .button::before{
	width:0;
	opacity:0;
}

.viewmore .button:hover{
	color:var(--corp-color);
}

.viewmore .button:hover::before{
	opacity:1;
	width:30px;
}

.viewmore .button:hover::after{
	opacity:0;
	width:0;
}

.swiper-slide.blog-box-main{
  height: auto;
}

.blog-box {
  height: 100%;
  width: 100%;
  border: 1px solid rgb(0 0 0 / 15%);
  padding: 1rem;
}

.news .blog-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.blog-box-con small {
  margin-bottom: 10px;
  display: block;
  font-size: 10px;
  font-weight: 600;
}

.blog-box-con h6 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-box-con h6:hover{
  color: var(--secondary-color);
}

.blog-box-img {
  overflow: hidden;
  transition: 700ms all ease-in-out;
  width: 30%;
  margin-bottom: 10px;
}

.blog-box img {
  height: 170px;
  object-fit: cover;
}

.blog-box .blog-box-img:hover img {
  transform: scale(1.2);
  transition: 700ms all ease-in-out;
}

.news-box
{  
  display: flex;
  align-items: center;
}
.news-box-img
{
  width: 50%;
  margin: auto;
}
.blog-box-main
{
  display: flex;
  align-items: center;
}
.news-box-bx
{
  width: calc(100% - 80px);
}
.newsHead li
{
  display: grid;
  border-bottom:1px solid #d3caca;
}
.newsHead li:nth-last-child(1)
{
  border: none;
}
.newsHead li span {
  text-transform: uppercase;
  background: #fff;
  color: var(--body-color);
  padding: .5rem 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  isolation: isolate;
}
.newsHead span.active {
  background: var(--primary-color);
  color: #ffffff;
}
.newsHead li span::before{
  content: '';
  position: absolute;
  inset: 0;
  width: calc(100% + 20px);
  background-color: #fff;
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  z-index: -1;
}
.newsHead li span.active::before{
  background: var(--primary-color);
}

.newsBtn-img{
  width: 23px;
}
.newsHead span.active .newsBtn-img
{
  filter: invert(1);
}

/* Testimonails */
.testimonials .swiper-slide{
  height: auto;
}
.testimonials-box{
  height: 100%;
  background-color: #f7f7f7;
  padding: 2rem;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
  isolation: isolate;
}
.testimonials-box::before{
  content: '\275D';
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
  opacity: 0.15;
  z-index: -1;
}

.name-testi{
  display: flex;
  align-items: center;
  gap: 10px;
}

.name-testi .img-fluid{
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.name-testi p{
  font-weight: 700;
  margin-bottom: 0px;
}
.name-testi span{
  font-size: 12px;
}
/* Testimonails */

/* customize swiper */
.swiper{
  padding-bottom: 3rem;
}
.swiper-button-next, .swiper-button-prev{
  top: auto;
  bottom: 0;
  border: 1px solid var(--primary-color);
  height: 34px;
  width: 34px;
  margin-top: 0;
}
.swiper-button-next{
  right: calc(50% - 40px);
}
.swiper-button-prev{
  left: calc(50% - 40px);
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  background-color: var(--primary-color);
}

.swiper-button-next:after, .swiper-button-prev:after
{
  color: var(--body-color);
  font-size: 20px;
}
.swiper-button-next.white:after, .swiper-button-prev.white:after,
.swiper-button-next:hover:after, .swiper-button-prev:hover:after{
  color: #fff;
}
.swiper-button-next.white, .swiper-button-prev.white{
  border-color: #fff;
}
.swiper-button-next.white:hover, .swiper-button-prev.white:hover{
  background-color: #fff;
}
.swiper-button-next.white:hover:after, .swiper-button-prev.white:hover:after{
  color: var(--body-color);
}
.swiper-btn-sm{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-top: -12px;
  top: 50%;
  bottom: auto;
	background-color: var(--primary-color);
	transition: all 200ms ease-in-out;
  border: 0;
}
.swiper-btn-sm::after{
	color: #fff;
}
.swiper-btn-sm:hover{
	background: var(--secondary-color);
}
.swiper-btn-sm::after{
	font-size: 12px;
}
.swiper-btn-sm.swiper-button-prev{
	transform: translateX(-100px);
  left: 10px;
}
.swiper-btn-sm.swiper-button-next{
	transform: translateX(100px);
  right: 10px;
}
.swiper:hover .swiper-btn-sm{
	transform: translateX(0px) !important;
}
/* customize swiper */

.familyBox .inner{
  padding: 2rem;
}

.statsContainer{
  margin-top: 2rem;
}

.stats .insider{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stats:not(:last-of-type) .insider{
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}


/*Footer*/
.footer {
  background-color: var(--primary-color);
  background: radial-gradient(circle at 80% -50%, var(--primary-color), var(--body-color));
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
  padding-bottom: 10rem;
}

.footer::before{
  content: '';
  position: absolute;
  background: url(https://20f31f.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/lining-city.jpg) left bottom / 80% repeat-x #fff;
  background-blend-mode: multiply;
  filter: invert(1);
  inset: 0;
  opacity: 0.05;
  z-index: -1;
}

.footer a{
  color: #fff;
  font-size: 13px;
  display: inline-block;
}

.footer a:hover{color: var(--secondary-color);}

.main-footer{
  margin: 3rem 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-contact-info li a{
  display: flex;
  gap: 10px;
  align-items: center;
}

.foot-social{
  gap: 10px;
  justify-content: flex-end;
}

.foot-social li a{
  font-size: 1.25rem;
  padding: 0 8px;
}

.foot-social li a:hover i{
  color: var(--secondary-color);
}

.footer-menu .footer-title{
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-menu ul.d-flex{
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-menu ul li:not(:last-of-type){
  margin-bottom: 5px;
}

.footer-menu ul a{
  padding: 2px 0;
}

.second-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.second-footer p{
  font-size: 12px;
}

.ecis {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ecis img {
  width: 15px;
}

.ecis p {
  margin-bottom: 0;
}

.button-top {
  background-color: var(--secondary-color);
  position: fixed;
  right: 5px;
  bottom: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--body-color);
  font-size: 1rem;
  z-index: 9999;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background: var(--body-color);
  color: #fff;
}
/* Footer */

/* Inside pages */
.insideBanner{
  /* height: 370px; */
  position: relative;
  overflow: hidden;
}
.insideBanner::before{
  content: '';
  position: absolute;
  inset: 0;
  background:linear-gradient(171deg, #00000015, transparent);
  z-index: 1;
}

.pageHead{
  background-color: var(--primary-color);
  color: #fff;
}

.breadcrumb{
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
}

.breadcrumb li a, .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}

.breadcrumb li a:hover{
  color: var(--secondary-color);
}

.breadcrumb li.active{
  color: var(--secondary-color);
}

/* project header */
.product-inside-menu-wrapper{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background-color: #fff;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	transition: all 300ms ease-in-out;
	z-index: 99;
}
.product-inside-menu-wrapper.fixed{
  background-color: var(--secondary-light);
}

.product-tab {
	height: auto;
  border-right: 1px solid rgb(0 0 0 / 10%);
}
.product-tab a{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	padding: 10px 5px;
	text-transform: uppercase;
	color: var(--body-color);
	border-bottom: 5px solid transparent;
	transition: all 300ms ease-in-out;
}
.product-tab a .img-fluid{
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}
.product-inside-menu-wrapper.fixed .product-tab a{
	gap: 0;
	padding: 12px 0;
	border-bottom-width: 3px;
}
.product-inside-menu-wrapper.fixed .product-tab a .img-fluid{
  margin-top: -23px;
  transform: scale(0);
	overflow: hidden;
}
.product-tab a span{
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-tab.currentPage a,
.product-tab a:hover{
	border-bottom-color: var(--primary-color);
	color: var(--primary-color);
}

.productsChild{
	background-color: #fff;
	border-top: 1px solid rgb(0 0 0 / 10%);
	display: none;
}

.productsChild.active{
	display: block;
}

.productsChild ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px;
}

.productsChild ul li{
	flex-basis: 0;
	flex-grow: 1;
}

.productsChild ul li a{
	display: block;
	padding: 5px 10px;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--body-color);
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	transition: all 300ms ease-in-out;
}

.productsChild ul li.currentPage a,
.productsChild ul li a:hover{
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 400;
}
/* project header */

/* overview */
.overviewContent .inner {
  width: 100%;
  max-width: 90%;
  text-align: justify;
}

.project-logo{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.project-logo::after{
  content: '';
  position: absolute;
  width: calc(100% + 10px);
  height: 100%;
  inset: 0;
  z-index: -1;
  background-color: var(--primary-color);
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
}

.project-logo img{
  max-width: 300px;
  margin: 10px auto;
}

.moreDetails .inner{
  background-color: var(--light);
}

.moreDetails .iconBox .in {
  padding: 1rem;
}

.iconBox .in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.iconBox .in i {
  width: 30px;
}

.iconBox .in img {
  width: 40px;
}

.iconBox .in h6 {
  font-weight: 700;
}
/* overview */

/* floor plans */
.fpContainer .fbBox .inner {
  padding: 1.5rem;
  background-color: #fff;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

.fpContainer .fbBox .inner:hover {
  background-color: #fff9e3;
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
}
.fpContainer .fbBox:nth-child(2n) .inner:hover {
  background-color: #d8eaff;
}
.fpContainer .fbBox:nth-child(3n) .inner:hover {
  background-color: #e8fff3;
}

.planBase {
  margin-top: 1rem;
}

.fpDetails {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fpDetails .icon {
  width: 30px;
}

.planBase .fpDetails h5 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1rem;
}
/* floor plans */

/* Specifications */
.specification-box{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.specification-box .inner {
  padding: 1.25rem;
  background-color: rgba( 255, 255, 255, 0.10 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border: 1px solid rgba( 255, 255, 255, 0.10 );
  display: flex;
  /* margin-bottom: 10px; */
}
.specification-box .inner:last-of-type {
  margin-bottom: 0;
}

.specification-box .inner .img-fluid {
  max-width: 50px;
  flex-basis: 50px;
  filter: hue-rotate(185deg) brightness(13);
}
.specification-box .inner article {
  max-width: calc(100% - 50px);
  flex-basis: calc(100% - 50px);
  padding-left: 1.25rem;
}
.specification-box .inner article h6{
  color: var(--secondary-color);
  text-transform: uppercase;
}
/* Specifications */

/* amenities */
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 2rem;
  transition: all 300ms ease-in-out;
  background: url(https://789a2a.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/pattern.png) top right / 100% no-repeat #fff;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 15%);
  color: var(--body-color);
}
.iconsContainer .iconBox .in:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.iconsContainer .iconBox .in:hover img {
  filter: brightness(50);
}
.iconsContainer .iconBox .in h6{
  color: inherit;
}
/* amenities */

/* Downloads */
.iconsContainer .iconBox.downloadBox .in{
  color: var(--secondary-color);
  background-color: var(--primary-color);
}
.iconsContainer .iconBox.downloadBox .in:hover{
  color: var(--body-color);
  background-color: var(--secondary-color) !important;
}
/* Downloads */

/* Gallery */
.toggle-header{
  gap: 5px;
}
.btn.toggleBtn{
  border-radius: 0;
  border-color: rgb(0 0 0 / 10%);
}
.btn.toggleBtn:hover,
.btn.toggleBtn.activeBtn{
  background-color: var(--primary-color);
  color: #fff;
}
.galleryContainer:not(.display),
.monthwise:not(.display){
  display: none;
}

.more-galBox{
  display: none;
}

.galBox .inner{
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.galBox .inner img{
  height: 100%;
}

.galBox .inner:hover{
  color: var(--primary-color);
}

.galBox .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3), #fff) 0 0 / 100% 200%;
  z-index: 2;
  transition: all 300ms ease-in-out;
}

.galBox .inner:hover::before{
  background-position: 0 98%;
}

.galBox .inner small{
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 10px;
  z-index: 3;
}

.galBox .inner .title{
  position: absolute;
  bottom: 5px;
  left: 10px;
  z-index: 3;
  font-weight: 700;
}

.vidframe{
  width: 100%;
  height: 400px;
  display: block;
}
/* Gallery */

/* location */
.locationWrapper {
  color: var(--body-color);
  position: relative;
  z-index: 1;
}
.locationWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(https://f576ef.claudeassets.com/20260416133941im_/https://www.devsaigroup.org/images/dotted-map-bg.png) center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}

.loc-container .loc-text ul {
  overflow: auto;
  padding-right: 10px;
}

.loc-container .loc-text ul::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.loc-container .loc-text ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000;
  border-radius: 10px;
}

/* Handle */
.loc-container .loc-text ul::-webkit-scrollbar-thumb {
  background: var(--body-color);
  border-radius: 10px;
}

/* Handle on hover */
.loc-container .loc-text ul::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.loc-container .loc-text ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-container .loc-text ul li .loc-row {
  display: flex;
  align-items: center;
}

.loc-container .loc-text ul li .loc-row img {
  flex: 0 0 25px;
  max-width: 25px;
}

.loc-container .loc-text ul li .loc-row p {
  margin-bottom: 0;
  padding-left: 10px;
}

.loc-container .loc-text ul li .loc-dist {
  color: var(--primary-color);
}

.loc-container .loc-text ul li .loc-dist small {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  margin-left: 5px;
}
/* location */

/* ads & media */
.galBox.adsBox .img-fluid img{
  height: 270px;
}

.date-filter{
  width: 120px;
}

.date-filter .form-control{
  font-weight: 700;
}
/* ads & media */

/* Consultation Form */
/* Consultation Form */

/* About us */
.insideStats {
  text-align: center;
}

.insideStats .stats p {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.teamWrapper{
  background-image: linear-gradient( transparent 60%, var(--body-color) 40% );
}

.teamBox .card {
  transition: all 300ms ease-in-out;
}

.teamBox .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}

.teamBox .card:hover {
  background-color: var(--light);
}

.card-img,
.card-img-top {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.teamBox .card > a.card-img-top {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.teamBox .card > a.card-img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.teamBox .card:hover > a.card-img-top::after {
  opacity: 1;
}

.teamBox .card > a.card-img-top .card-btn {
  content: "Read more";
  position: absolute;
  left: 50%;
  top: 60%;
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 30%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.teamBox .card:hover > a.card-img-top .card-btn {
  top: 50%;
  opacity: 1;
}

.teamBox .card > a.card-img-top .card-btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.teamBox .card .card-body .small-heading a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}
.teamBox .card .card-body .small-heading a:hover {
  color: var(--primary-color);
}

.teamBox .card .card-body p {
  color: var(--primary-color);
  width: 60%;
  font-size: 14px;
}

.teamBox .card .card-body .socialIcons {
  gap: 5px;
}

.socialIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.socialIcons a i {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.socialIcons.solid a i {
  border: none;
}

.socialIcons.stroke a:hover .fa-facebook-f,
.socialIcons.solid a .fa-facebook-f {
  background-color: var(--facebook);
}
.socialIcons.stroke a:hover .fa-linkedin-in,
.socialIcons.solid a .fa-linkedin-in {
  background-color: var(--linkedin);
}
.socialIcons.stroke a:hover .fa-twitter,
.socialIcons.solid a .fa-twitter {
  background-color: var(--twitter);
}
.socialIcons.stroke a:hover .fa-youtube,
.socialIcons.solid a .fa-youtube {
  background-color: var(--youtube);
}
.socialIcons.stroke a:hover .fa-whatsapp,
.socialIcons.solid a .fa-whatsapp {
  background-color: var(--whatsapp);
}
.socialIcons.stroke a:hover .fa-instagram,
.socialIcons.solid a .fa-instagram {
  background-color: var(--instagram);
}

.socialIcons.stroke a .fa-facebook-f {
  border-color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in {
  border-color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter {
  border-color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube {
  border-color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp {
  border-color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram {
  border-color: var(--instagram);
}

.socialIcons.solid a:hover i,
.socialIcons a:hover i {
  background-color: #fff;
}

.socialIcons.stroke a .fa-facebook-f,
.socialIcons a:hover .fa-facebook-f {
  color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in,
.socialIcons a:hover .fa-linkedin-in {
  color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter,
.socialIcons a:hover .fa-twitter {
  color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube,
.socialIcons a:hover .fa-youtube {
  color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp,
.socialIcons a:hover .fa-whatsapp {
  color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram,
.socialIcons a:hover .fa-instagram {
  color: var(--instagram);
}
.socialIcons.stroke a:hover i {
  color: #fff;
}

/* chairmans message */
.messageText{
  position: relative;
  padding: 2rem;
  border: 4px double var(--primary-color);
  text-align: justify;
}

.messageText span{
  width: 60px;
  line-height: 0.5;
  position: absolute;
  color: var(--primary-color);
  opacity: 0.3;
  z-index: -1;
}
.messageText span.quote-left{
  left: 1rem;
  top: 1rem;
}
.messageText span.quote-right{
  right: 1rem;
  bottom: 1rem;
}

.moreText, .moreText1 {
  display: none;
}
/* chairmans message */
/* About us */

/* news details */
.emptyBox{
  height: 69px;
  background-color: var(--primary-color);
}

.heading .date {
  font-weight: 400;
  font-size: 13px;
  color: var(--primary-color);
  margin-top: 10px;
}

.blogContainer article .imgBox {
  margin: 5px 0 10px;
}

.blogContainer article .imgBox em {
  font-size: 12px;
}

.blogContainer article h5 {
  display: block;
  margin-top: 10px;
  color: #425e73;
  font-size: 21px;
}
/* news details */

/* Contact */
.contactBox .inner {
  background: radial-gradient(circle at 80% -50%, var(--primary-color), var(--body-color));
  color: #fff;
  height: 100%;
  padding: 2.5rem;
}

@media only screen and (min-width: 1920px) {
  .contactBox .inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media only screen and (max-width: 360px) {
  .contactBox .inner {
    padding: 20px 10px;
  }
}

.contactBox h4 {
  margin-bottom: 1rem;
}

.contactBox ul li{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.contactBox ul li:last-child{margin-bottom: 0;}

.contactBox ul li i{
  color: var(--secondary-color);
}

.contactBox ul li a{
  color: #fff;
}

.contactBox ul li a:hover{
  text-decoration: underline;
}
/* Contact us */

/* Careers */
.form-details .inner {
  background-color: #fff;
  padding: 2rem;
}
/* Careers */
/*--faqs--*/
.faqs-box .faqs_question {
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-bottom: 5px;
}
.faqs-box .faqs_question.active{
  margin-bottom: 0;
}
.faqs-box .faqs_question::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  opacity: 0;
  pointer-events: none;
  transition: all 200ms ease-in 0ms;
  z-index: -1;
}
.faqs-box .faqs_question.active::after {
  opacity: 1;
  transition-delay: 300ms;
}

.faqs-box .faqs_question h6 {
  padding: 12px 35px 12px 15px;
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 15%);
  font-weight: 700;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.faqs-box .faqs_question:hover h6 {
  background-color: var(--light);
  border-color: var(--primary-color);
}

.faqs-box .faqs_question.active h6 {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.faqs-box .faqs_question i {
  position: absolute;
  right: 15px;
  top: 15px;
}
.faqs-box .faqs_question.active i {
  transform: rotate(180deg);
}

.faqs-box .faqs_answer {
  background: var(--light);
  margin-bottom: 20px;
}
.faqs-box .faqs_answer:not(.show) {
  display: none;
}

.faqs-box .faqs_answer .inner {
  padding: 1.5rem 1.5rem 1.5rem;
  color: var(--body-color);
}
.faqs-box .faqs_answer .inner p:last-of-type {
  margin-bottom: 0;
}
.faqs-box .faqs_answer ul li {
  display: block;
  position: relative;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 22px;
  color: #212121;
}
.faqs-box .faqs_answer ul li:before {
  content: "\00BB";
  margin-right: 7px;
  font-size: 21px;
}
.faqs-box > h4 {
  color: #212121;
  letter-spacing: 1px;
  width: 100%;
  float: left;
  margin: 30px 0 10px;
  padding-left: 10px;
  border-left: 5px solid #212121;
}
/*--faqs--*/

/* Inside pages */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

/*transformation Animation*/

.closePop{cursor:pointer;color:#ffffff;width:100px;display:table;margin:0 auto;font-size:12px; text-transform:uppercase;  
  padding: 12px 11px 10px;
  border-radius: 5px;
  background: #033977;
  background: -webkit-linear-gradient(#033977, #005dc7);
  background: linear-gradient(#033977, #005dc7);
  text-align: center;
  float: none;
  opacity: 1;
  text-shadow: none;}
.closePop:hover{background:#7BA726;background:-webkit-linear-gradient(#d7ab03, #ffcb05); background:linear-gradient(#d7ab03, #ffcb05); color: #000;}

.closePop:not(:disabled):not(.disabled):hover {
  color: #000000;
}





/*
     FILE ARCHIVED ON 09:19:26 Mar 11, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:03:27 Jul 16, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.79
  exclusion.robots: 0.052
  exclusion.robots.policy: 0.042
  esindex: 0.005
  cdx.remote: 5.427
  LoadShardBlock: 86.527 (3)
  PetaboxLoader3.resolve: 308.958 (3)
  PetaboxLoader3.datanode: 95.925 (4)
  load_resource: 322.76
*/