/* Start Global Variables */
:root {
  --main-color: #DA2625;
  --secondary-color: #2c4755;
  --tertiary-color: #f6f6f6;
  --section-padding: 50px 0;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #2a2828;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #DA2625;
  border-radius: 10px;
  border: 2px solid #DA2625;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #DA2625;
}

br::selection,
label::selection,
select::selection,
table::selection,
th::selection,
td::selection,
time::selection,
button::selection,
input::selection,
textarea::selection,
main::selection,
section::selection,
a::selection,
li::selection,
img::selection,
p::selection,
div::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
span::selection,
body::selection {
  background-color: #da25254f;
  color: white;
}

html {
  /* scroll-behavior: smooth; */
}

a{
  text-decoration: none;
}
/* End Global Variables */
/* Start Components */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/product-sans/product-sans-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/product-sans/product-sans-italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/product-sans/product-sans-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/product-sans/product-sans-bold-italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
html, body {
    font-family: 'Product Sans', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: #f6f6f6;
  font-family: 'Product Sans', sans-serif;
}

.container {
  padding: 0 15px;
}

.main-sec {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.special-heading {
  margin: 0;
  color: #ee3a3a;
  color: #266bd1;
  text-align: center;
  /* font-size: 5.25rem; */
  font-size: 3.25rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  .special-heading {
    font-size: 32px;
  }
  .contact-sec .head .subtitle{
    font-size: 16px;
  }

  nav .nav-lnks {
    display: none;
  }

  nav .dropdown {
    display: block;
  }
}

.special-heading+p {
  text-align: center;
  margin: -4px 0 0;
  font-size: 1.25rem;
}


.btn-row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.btn-row.start {
  justify-content: flex-start;
}

.btn-row.center {
  justify-content: center;
}

.btn-row.end {
  justify-content: flex-end;
}

.btn-st-one {
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-decoration: none;
}

/* Primary Button */
.btn-st-one.primary {
  /* background: linear-gradient(135deg, #DA2625, #0c1224); */
  background: #e11b14;
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px #da25253f;
}
.btn-st-one.primary.blu {
  /* background: linear-gradient(135deg, #266bd1, #0c1224); */
  background: #266bd1;
  box-shadow: 0 5px 15px #266ad14f;
}

.btn-st-one .icon {
  font-size: 20px;
}

/* .btn-st-one.primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.7s ease;
}

.btn-st-one.primary:hover::before {
  top: -20%;
  left: -20%;
} */

/* small */
@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}

/* medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* large */
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1400px;
  }
}

/* End Components */
/* start header */
.header {
  padding: 6px 20px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
    left: 0;
    right: 0;
  /*width: 100vw;*/
  z-index: 10000000;
  background-color: #e6e6e609;
  backdrop-filter: blur(4px);
  transition: all 300ms ease-in-out;
  border-bottom: 1px solid #ffffff13;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
}



.header.scrolled {
  padding: 12px 20px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
}

.header .btn-st-one {
  padding: 12px 24px;
}

.header.scrolled .btn-st-one {
  padding: 16px 28px;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

/* header: start logo */
.header .logo img {
  width: 140px;
  height: auto;
  transition: all 300ms ease-in-out;
}

.header.scrolled .logo img {
  width: 160px;
}

/* header: end logo */

.header .links {
  position: relative;
  background-color: transparent;
  border: none;
}

/* header: start icon */
.header .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 45px;
  background: #266bd1;
  padding: 10px 10px 6px;
  border-radius: 6px;
}

.header .icon span {
  display: inline-block;
  height: 2px;
  margin-bottom: 5px;
  background-color: #ffffff;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

/* .header.scrolled .icon span {
  background-color: var(--secondary-color);
} */

.header .icon span:first-child {
  width: 100%;
}

.header .icon span:nth-child(2) {
  width: 60%;
}

.header .links:hover .icon span:nth-child(2) {
  width: 100%;
}

.header .container .links .icon span:last-child {
  width: 100%;
}

/* header: start ul links */
.header .links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 200px;
  background-color: var(--tertiary-color);
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 1;
  display: none;
}

.header.scrolled .links ul {
  top: calc(100% + 18px);
}

nav .nav-lnks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 16px;
  list-style: none;
}

nav .nav-lnks a {
  text-decoration: none !important;
  color: var(--secondary-color);
  transition: all 300ms ease;
}

nav.header.scrolled .nav-lnks a:not(.btn-st-one.primary) {
  color: var(--secondary-color);
}

nav .nav-lnks a:hover:not(.btn-st-one.primary) {
  color: var(--main-color) !important;
}

nav .dropdown {
  display: none;
}

@media screen and (max-width: 1025px) {
  .header .links:focus ul {
    display: block;
  }

  .header .links ul:hover {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .header .links:hover ul {
    display: block;
  }
}

.header .links ul::before {
  content: '';
  display: inline-block;
  position: absolute;
  border: 10px solid;
  border-color: transparent transparent var(--tertiary-color) transparent;
  top: 0;
  right: 5px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header .links ul li {
  padding: 15px;
  font-size: 1.2rem;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-align: left;
}

.header .links ul li:hover {
  padding-left: 25px;
}

.header .links ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.header .links ul li a {
  text-decoration: none;
  color: var(--secondary-color);
}

/* New Menu */
.mobile-menu{
  position: absolute !important;
  width: 100%;
  top: calc(100%);
  background-color: var(--tertiary-color);
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10000000000000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 300ms ease-in-out;
  max-height: 0px;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu::-webkit-scrollbar{
  /* width: 10px !important; */
}
.header.scrolled .mobile-menu{
  top: calc(100% + 12px);
}
.mobile-menu ul{
  padding-left: 0px;
  list-style: none !important;
}
.mobile-menu ul.main-list{
  display: flex;
  flex-flow: column nowrap;
}
.mobile-menu a{
  width: 100%;
  padding: 12px 16px;
  display: flex;
  text-decoration: none;
  color: var(--secondary-color);
}
.mobile-menu ul.main-list li{
  border-bottom: 1px solid #dddddd9e;
}
.mobile-menu ul.main-list li:last-child {
  border-bottom: 0px;
}
ul.submenu{
  padding-left: 0px;
  overflow-y: auto;
}
ul.submenu a{
  padding: 10px 16px 10px 24px;
  font-size: 14px;
}
ul.submenu a i{
  margin-right: 10px;
}
ul.submenu a:hover i{
  margin-right: 16px;
}
/* .mobile-menu, */
.submenu {
    display: none;
}

.mobile-menu.open{
    /* display: block; */
    /* max-height: 1000px; */
    overflow-y: auto;
    max-height: calc(100dvh - 80px);
    box-shadow: 0px 10px 10px 1px #00000066;
}
.submenu.open {
    display: block;
}
.submenu-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    color: var(--secondary-color);
}

.submenu-toggle i {
    transition: transform 0.25s ease;
}

.submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.has-submenu.open > .submenu {
    display: block;
}

.has-submenu.open .submenu-toggle i {
    transform: rotate(180deg);
}

.submenu-toggle i {
    transition: transform 0.25s ease;
}


.nav-item {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 36px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    list-style: none;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}
.header.scrolled .dropdown-menu {
    top: calc(100% + 46px);
}
.dropdown-menu:before {
  content: "";
  width: 100%;
  height: 42px;
  bottom: 100%;
  left: 0px;
  position: absolute;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-item:hover i,
.nav-item:focus-within i {
    transform: rotate(180deg);
}

.nav-item i {
    transition: transform 0.2s ease;
}

/* header: end ul links */
@media (max-width: 800px) {
  nav .nav-lnks {
    display: none;
  }
  nav .dropdown {
    display: block;
  }
  .header.scrolled .logo img {
    width: 140px;
  }
  .header .links ul{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
  }
}



/* end header */
/* landing start */
.landing {
  position: relative;
  width: 100%;
  height: calc(100vh);
  background: url('../images/hero-larg.jpg') no-repeat bottom center;
  background-size: cover !important;
  background-attachment: fixed;
  z-index: 1;
}
@media (max-width: 687px) {
  .landing {
    background: url('../images/hero-mob.jpg') no-repeat bottom center;
  }
}

.landing:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000029;
  z-index: -1;
}

.landing .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 850px;
  text-align: center;
}

.landing h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  color: #ffffff;
}

.landing p {
  margin: 15px 0;
  line-height: 1.8;
  font-size: 16px;
  color: #c2c2c2;
  color: #ffffff;
}
/* landing end */

/* feature start */
.feature {
  background-color: var(--tertiary-color);
  padding: 100px 0px 60px;
}

.feature .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 16px;
}

.feature .special-heading {
  width: 100%;
}

.feature .subtitle {
  width: 100%;
  text-align: center;
}

.feature .feat {
  width: calc((100% / 3) - 16px);
  max-width: 400px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 24px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid #da252500;
  transition: all 300ms ease-in-out;
}
.feature .feat:hover {
  border-color:  #DA2625;
  transform: scale(1.05);
}

.feature .feat i {
  font-size: 3rem;
  color: var(--main-color);
}

.feature .feat h2 {
  margin-top: 25px;
  font-size: 28px;
  font-weight: 800;
}

.feature .feat p {
  margin-top: 25px;
  line-height: 1.9;
}



.org-structure {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: url('../images/backuae1.jpg') no-repeat center center; */
  /* background: url('../images/vi/structure.jpeg') no-repeat center center; */
  background-size: cover;
  /*background-attachment: fixed;*/
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
#structure{
  padding: 40px 0px;
  width: 100%;
}

.org-structure:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  /* background-color: rgba(0, 0, 0, 0.103); */
  /* backdrop-filter: blur(3px); */
  z-index: -1;
}
.org-structure:after {
  content: "";
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  position: absolute;
  top: 16px;
  left: 16px;
  /* border: 1px solid #ee3a3a54; */
  border-radius: 32px;
  z-index: -1;
}

.org-structure .cont {
  padding: 80px 15px;
  max-width: 1150px;
  
}

.org-structure .head {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.org-structure .head .org-title {
  margin: 0;
  color: #ee3a3a;
  /* color: #ffffff; */
  color:#266bd1;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  text-shadow: 0px 0px 1px #ffffffa6;
}


.org-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.org-sub {
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.org-structure .cont-body{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  /* align-items: center; */
  gap: 40px;
}
.org-structure .cont-body .org-img{
  flex: 1 1 400px;
  max-width: 500px;
  min-width: 300px;
  padding-top: 24px;
}
.org-structure .cont-body .org-img img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px #00000075;
}

.accordion {
  padding: 40px 24px;
  /* background-color: #00000031; */
  border-radius: 12px;
  backdrop-filter: blur(13px);
  max-width: 700px;
}

.accordion-item {
  border: 1px solid #dbdbdb;
  background-color: #dd2821;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  transition: all 800ms ease;
}
.accordion-item:nth-child(2) {
  bottom: 14px
}
.accordion-item:nth-child(3) {
  bottom: 28px
}
.accordion-item:nth-child(4) {
  bottom: 42px
}
.accordion-item:nth-child(5) {
  bottom: 56px
}
.org-structure .accordion-item:last-child {
  border-bottom: none !important;
  padding-bottom: 32px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.org-structure .accordion-item.active {
  /*background-color: #292727;*/
  background-color: #e5e2e2;
}

.accordion-header {
  width: 100%;
  padding: 16px 16px 32px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  background: none;
  color: #ffffff;
  border: none;
  cursor: pointer;
  position: relative;

}

.accordion-item.active .accordion-header {
  color: #266bd1;
}

.accordion-header .icn {
  /* color: #ee3a3a; */
  /*color: #266bd1;*/
  color: #fff;
  margin-right: 8px;
  font-size: 24px;
  transition: all 300ms ease;
    
}
.accordion-item.active .accordion-header .icn{
  color: #266bd1;
}

.accordion-header:after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 22px;
}

.accordion-item.active .accordion-header:after {
  content: "–";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #161616;
  line-height: 1.7;
}

.accordion-item .accordion-body {
  margin-top: 0px;
  padding: 0px 16px 0px 49px;
}
.accordion-item.active .accordion-body {
  max-height: 800px;
  margin-top: 8px;
  padding: 0px 16px 16px 49px
}

@media (max-width: 950px) {
  .org-structure .cont-body {
    flex-flow: column nowrap;
    align-items: center;
  }
}
@media screen and (min-width: 951px) and (max-width: 1150px) {
  .accordion {
      max-width: 600px;
  }
}



.services {
  padding: 100px 0px;
  background: #f6f6f6;
}

.services .container {
  position: relative;
}

.services .services-content {
  display: grid;
  margin-top: 60px;
}

.services .services-content .cards-cont {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

.services .services-content .cards-cont:before,
.services .services-content .cards-cont:after {
  content: "";
  width: 150px;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 2;
  pointer-events: none;
}

.services .services-content .cards-cont:before {
  left: -1px;
  background: linear-gradient(to right, #f6f6f6, #ffffff00);
}

.services .services-content .cards-cont:after {
  right: -1px;
  background: linear-gradient(to left, #f6f6f6, #ffffff00);
}

.cards-scroll {
  width: fit-content;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  padding: 16px 0px 0px;
  animation: scrollLTR 90s linear infinite;
}

.cards-cont:hover .cards-scroll {
  animation-play-state: paused !important;
}

.cards-cont.reverse .cards-scroll {
  animation: scrollRTL 90s linear infinite;
}

@keyframes scrollLTR {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Keyframes for Right → Left */
@keyframes scrollRTL {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.services .services-content .cards-cont .sevices_card {
  /* width: calc((100% / 3) - 16px); */
  width: 350px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 6px;
  z-index: 1;
  border: 2px solid #ee3a3a70;
  transition: all 300ms ease-in-out;
}

.services .services-content .cards-cont .sevices_card:hover {
  transform: translatey(-10px);
}

.services .services-content .cards-cont .sevices_card .card-lnk {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  z-index: 10;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.services .services-content .cards-cont .sevices_card .card-lnk .icn{
  font-size: 28px;
}
.services .services-content .cards-cont .sevices_card:hover .card-lnk {
  opacity: 1;
}

.services .services-content .cards-cont .sevices_card .img {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 6px;
  overflow: hidden;
}

.services .services-content .cards-cont .sevices_card .img.privat-funds {
  background-image: url('../images/vi/private-funds-investment.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.invst-oil {
  background-image: url('../images/vi/investment-in-oil-and-natural-gas.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.power-enterprises {
  background-image: url('../images/power-enterprises.jpg');
}

.services .services-content .cards-cont .sevices_card .img.industrial-enterprises {
  background-image: url('../images/vi/industrial-enterprises.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.real-estate-enterprises {
  background-image: url('../images/vi/real-estate-enterprises.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.real-estate-purchase {
  background-image: url('../images/vi/real-estate-purchase-and-sale.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.health-services {
  background-image: url('../images/vi/health-services-enterprises.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.commercial-enterprises {
  background-image: url('../images/vi/commercial-enterprises.jpeg');
}

.services .services-content .cards-cont .sevices_card .img.commercial-brokers {
  background-image: url('../images/commercial-brokers.jpg');
}

.services .services-content .cards-cont .sevices_card .img.companies-representation {
  background-image: url('../images/vi/companies-representation.jpeg');
}

.services .services-content .cards-cont .sevices_card .img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  /* background-color: #00000063; */
}
.services .services-content .cards-cont .sevices_card .img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #ee3a3a50;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.services .services-content .cards-cont .sevices_card:hover .img:after {
  opacity: 1;
}

.services .services-content .cards-cont .sevices_card .title {
  width: 100%;
  position: absolute;
  bottom: 16px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding: 0px 16px;
  margin: 0px;
}

.services .services-content .cards-cont .sevices_card .title .bx {
  background: #00000056;
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 16px;
  margin-bottom: 0px;
  border-radius: 6px;
}




.services .services-content .srv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services .services-content .srv i {
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
  color: var(--main-color);
}

.services .services-content .srv .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.services .services-content .srv .text h3 {
  margin-top: 0;
}

.services .services-content .srv .text p {
  line-height: 1.8;
}

.services .services-content .image {
  text-align: center;
  position: relative;
}

.services .services-content .image::before {
  content: '';
  position: absolute;
  width: 26%;
  height: calc(100% + 80px);
  background-color: #ee3a3a;
  top: -40px;
  right: 0;
  z-index: -1;
}

.services .services-content .image img {
  border-style: none;
  width: 235px;
}

@media (max-width: 992px) {
  .image-column {
    display: none;
  }
}

@media (max-width: 768px) {
  .services .services-content .srv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

/* services end */
/* start about */
.about {
  padding: var(--section-padding);
  width: 100%;
  overflow-x: hidden;
  padding-top: 100px;
}

.about .about-section {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about .about-section h3{
  color: #266bd1;
  font-size: 24px;
}

.about .image {
  position: relative;
  /* width: 250px; */
  /* height: 375px; */
    width: calc(100%);
    max-width: 400px;
}

/* .about .image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -20px;
  width: 40%;
  height: calc(100% + 60px);
  background-color: #ebeced;
  z-index: -1;
}

.about .image::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -150px;
  width: 120px;
  height: 300px;
  border-left: 80px solid var(--main-color);
  border-bottom: 80px solid var(--main-color);
  z-index: -1;
} */

.about .image.second::before {
  left: unset;
  right: -20px;
}

.about .image.second::after {
  right: unset;
  left: -150px;
  border-left: 0px;
  border-right: 80px solid var(--main-color);
}


.about .image img {
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0px 5px 30px #00000042;
}

.about .text {
  width: calc(100% - 500px);
  font-size: 1rem;
  line-height: 1.8rem;
}

.about .text p:first-child {
  font-weight: 700;
}

.about .text hr {
  width: 40%;
  margin: 40px 0;
  border-color: var(--main-color);
}


:root {
  --card-gap: 24px;
  --card-radius: 12px;
  --card-min-height: 320px;
  --content-max-width: 560px;
}

.vm-section {
  padding: 32px 20px;
  background: linear-gradient(180deg, #fafafc 0%, #DA2625 100%);
  background: #ebeced;
}

.vm-section__title {
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: #0b1220;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.vm-cards {
  display: flex;
  gap: var(--card-gap);
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card --- */
.vm-card {
  position: relative;
  flex: 1 1 48%;
  min-height: var(--card-min-height);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .45s cubic-bezier(.2, .9, .2, 1), box-shadow .45s;
  box-shadow: 0 8px 30px rgba(8, 15, 30, 0.08);
}

.vm-card.vis {
  background-image: url('../images/vi/vision.jpeg');
}

.vm-card.mis {
  background-image: url('../images/vi/mission2.jpeg');
}

/* overlay gradient for legibility */
.vm-card__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(6, 10, 22, 0.28) 0%, rgba(6, 10, 22, 0.48) 65%, rgba(6, 10, 22, 0.65) 100%); */
  /* mix-blend-mode: multiply; */
  pointer-events: none;
}

.vm-card__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  max-width: var(--content-max-width);
  color: #fff;
  transform: translateY(0);
  transition: transform .35s ease;
}

.vm-card__title {
  margin: 0 0 12px 0;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ff1c1b;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.35);
}

.vm-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.514);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* subtle decorative accent on left of text */
.vm-card__content::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 35px;
  width: 6px;
  height: 66px;
  border-radius: 6px;
  background: linear-gradient(180deg, #266bd1, #1b5bbb);
  filter: blur(0.2px);
  opacity: 0.95;
}

/* hover / focus effects */
.vm-card:hover,
.vm-card:focus-within {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 18px 50px rgba(8, 15, 30, 0.14);
}

.vm-card:hover .vm-card__content,
.vm-card:focus-within .vm-card__content {
  transform: translateY(-6px);
}

@media (max-width: 820px) {
  .vm-cards {
    flex-direction: column;
  }

  .vm-card {
    width: 100%;
    min-height: 280px;
  }

  .vm-card+.vm-card {
    margin-top: var(--card-gap);
  }

  .vm-card__content {
    padding: 20px;
  }

  .vm-card__content::before {
    left: -11px;
    top: 43px;
    transform: rotate(90deg);
    width: 46px;
    height: 6px;
    border-radius: 6px;
  }
  .about .about-section h3{
    font-size: 32px;
  }
}

/* smaller phones: tighten spacing */
@media (max-width: 420px) {
  .vm-section {
    padding: 80px 14px;
  }

  .vm-section__title {
    font-size: .95rem;
  }

  .vm-card__title {
    font-size: 32px;
  }

  .vm-card__text {
    font-size: .95rem;
  }
}



@media (max-width: 992px) {
  .about .about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about .about-section.second {
    gap: 40px;
  }

  .about .about-section.second .text {
    order: 2;
  }

  .about .about-section.second .image {
    order: 1;
  }

  .about .text {
    width: 100%;
    text-align: center;
  }

  .about .text hr {
    margin: 40px auto;
  }

  .about .image {
    margin: 0 auto 40px;
  }


  .about .btn-row.start {
    justify-content: center;
  }
}

/* end about */

.footer {
  background-color: var(--secondary-color);
  padding: 16px;
}

.footer .container {
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
}

.footer .container span {
  color: var(--main-color);
}

/* end contact */


/* Custom */
.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.faq-section.pg .faq-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
/* Left */
.faq-title {
  font-size: 42px;
  font-weight: 700;
  max-width: 350px;
  margin-bottom: 15px;
  margin-top: 0px;
  /* color: #ee3a3a; */
  color: #266bd1;
}

.faq-subtitle {
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-section.pg .faq-left{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center !important;
  max-width: 500px;
}

/* Right Column (Accordion) */
.faq-item {
  margin-bottom: 18px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(45deg, #da252554, #cccccc49);
  background: linear-gradient(45deg, #c6dcfb, #cccccc49);
  transition: all 0.3s ease-in-out;
}

.faq-item.active {
  background: linear-gradient(45deg, #ffffff00, #03030300);
}
.faq-item .first{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 12px;
}
.faq-item .first .icn i{
    font-size: 28px;
    color: #DA2625;
    text-shadow: 0px 0px 10px #ffffff3f;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
}

.faq-question i {
  margin-right: 10px;
  font-size: 20px;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  padding-left: 50px;
  margin-top: 10px;
  color: #414141;
}

.faq-section.pg .faq-right{
  width: 100%;
  max-width: 900px;
}
/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-item .first .icn i{
    font-size: 22px;
  }
  .faq-item{
    padding: 15px 16px;
  }
  .faq-item .first{
    gap: 4px;
  }
  .faq-title{
    text-align: center;
    font-size: 32px;
    max-width: 100%;
  }
  .faq-subtitle{
    font-size: 16px;
    text-align: center;
  }
}




.contact-sec{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: url('../images/banner-contact.jpg') no-repeat center, #ffffff9a; */
  /* background: url('../images/vi/contact.jpeg') no-repeat center, #ffffff9a; */
  background-size: cover !important;
  position: relative;
  z-index: 1;
}
.contact-sec.pg{
  /* background: url('../images/banner-contact.jpg') no-repeat center, #ffffff9a; */
  width: calc(100% - 100px);
  /* bottom: 100px; */
  margin: auto;
}
.padding-sec{
  padding-top: 70px;
}
@media (max-width: 768px) {
  .contact-sec,
  .contact-sec.pg{
    /* background: url('../images/vi/contact.jpeg') no-repeat center, #ffffff9a; */
  }
}
.contact-sec.home{
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-radius: 32px;
  overflow: hidden;

}
.contact-sec::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  /* backdrop-filter: blur(4px); */
  background-color: #0000005e;
  background-color: #ffffff29;
}
.contact-sec .main-cont {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 40px;
}
.contact-sec .main-cont .img{
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 250px;
  padding-top: 24px;
}
.contact-sec .main-cont .img img{
  width: 100%;
  border-radius: 12px;
    box-shadow: 0 8px 30px #00000075;
}
.contact-sec .custom-cont{
  width: 100%;
  max-width: 1200px;
  padding: 100px 16px;
}
.contact-sec .special-heading.contact{
  color: #266bd1 !important;
}
.contact-sec .head{
  padding-bottom: 24px;
}
.contact-sec .head .subtitle{
  max-width: 600px;
  margin: auto;
  color: #000000;
}

.contact-sec .contact-form{
  max-width: 700px;
  flex-grow: 1;
}
.contact-sec .contact-content{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
  flex: 1;
  position: relative;
  padding-left: 40px;
}
.contact-sec .contact-dtls{
  padding: 40px 0px 40px 0px;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  min-width: 300px;
  max-width: 300px;
  position: relative;
}
.contact-sec .contact-content:before{
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, #c2c2c200, #000000e3, #c2c2c200);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.contact-sec .contact-dtls .row a{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 8px;
  color: #161616;
  text-decoration: none;
  border: 1px solid #8d8d8d;
  border-radius: 6px;
  padding: 16px 10px;
  background: linear-gradient(45deg, #fffbfb82, #c2c2c249);
  backdrop-filter: blur(10px);
  transition: all 300ms ease-in-out;
}
.contact-sec .contact-dtls .row a:hover{
  transform: scale(1.07);
}
.contact-sec .contact-dtls .row a .icon{
  font-size: 24px;
  color: #DA2625;
  text-shadow: 0px 0px 10px #ffffff3f;
}
.contact-sec .contact-dtls .row a .icon img{
  width: 24px;
  height: auto;
}
.contact-sec .contact-dtls .row a .icon.phone img{
  width: 20px;
  height: auto;
}






/* form starting stylings */
.row-two{
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}
.contact-form .error {
    max-width: 100%;
    color: #fc440d;
    font-size: 14px;
    width: fit-content;
    position: absolute;
    bottom: -20px;
    left: 0px;
    display: none;
    opacity: 0;
    transition: all 300ms ease;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    /* text-shadow: 1px 1px 4px #00000052; */
}
.contact-form .error.act {
    display: block;
    bottom: 12px;
    opacity: 1;
}

.form-group {
    width: 100%;
    position: relative;
    padding-bottom: 32px;
}
.input-st-one{
  --bor-col-one: #5f5f5f9e;
  --bor-col-two: #5f5f5f9e;
  --shad-col-one: #5f5f5f9e;
}
.input-st-one.st-err{
  --bor-col-one: #fc440d;
  --bor-col-two: #fc440d;
  --shad-col-one: #fc440d;
}
.input-st-one {
  /* background: linear-gradient(45deg, #2525257e, #c2c2c249); */
  /* background: linear-gradient(45deg, #25252561, #c2c2c249); */
  background: linear-gradient(45deg, #ffffff4d, #c2c2c249);
  backdrop-filter: blur(2px);
	font-size: 18px;
	padding: 16px 16px;
	width: 100%;
	border: 1px solid var(--bor-col-one);
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
	color: #000000;
}
textarea.input-st-one {
  min-height: 180px;
  max-height: 180px;
  resize: none;
}
textarea.input-st-one::-webkit-scrollbar {
  width: 0px;
  background-color: transparent;
}
textarea:focus,
input:focus {
	outline: none;
}
form .bx-two{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.label-st-one {
	color: #c4c4c4;
	color: #000000;
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 16px;
	top: 15px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
	border-radius: 4px;
	padding: 0px 12px;
  z-index: 1;
  user-select: none;
}

.input-st-one:focus{
	border: 1px solid var(--bor-col-two);
  box-shadow: 0 -1.5px var(--shad-col-one) inset;
}
.input-st-one:focus~.label-st-one,
.input-st-one:valid~.label-st-one {
  padding: 2px 16px;
	top: -9px;
	font-size: 14px;
	color: #ffffff;
  background-color: #DA2625;
}
.input-st-one:focus~.asterisk {
    opacity: 0;
}


.astr {
  color: #DA2625;
  font-size: 14px;
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
}




/* popup */
/* PopUp */
.popup{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999999999999999999999999999999999999999;
    justify-content: center;
    align-items: center;
    padding: 40px 10px 0px;
}

.popup .box{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000027;
    position: relative;
    bottom: 200px;
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.popup.act .box{
    bottom: 0px !important;
    opacity: 1 !important;
}
.popup.success .box{
    background-color: #04be74;
}
.popup.erorr .box{
    background-color: #e03237;
}
.popup .box .icon{
  font-size: 32px;
}
@media screen and (min-width: 951px) and (max-width: 1300px) {
    .input-st-one {
        padding: 12px 16px;
    }
}
@media (max-width: 950px) {
    form .bx-two{
        flex-flow: column nowrap;
        gap: 0px;
    }
    form .btn-st-one {
        width: 100%;
    }
    .popup .box{
        padding: 24px 16px;
        font-size: 14px;
    }
}


/* Footer */
.custom-footer{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 16px 24px;
  position: relative;
  z-index: 1;
}
.custom-footer:before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background: url('../images/backfooter.png') bottom center;
  background-repeat: repeat-x;
  background-size: 650px;
  opacity: 0.5;
}
.custom-footer .footer-cont{
  width: 100%;
  max-width: 1200px;
  background: rgba(255,255,255,0.08);
  background: rgba(102, 102, 102, 0.08);
  backdrop-filter: blur(6px);
  border-top: 1px solid #ffffff33;
  color: #000000;
  padding: 80px 24px 40px;
  border: 1px solid #b9b9b9;
  border-radius: 32px;

}

/* First row */
.footer-top{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Each column */
.footer-col h4{
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 18px;
  color: #DA2625;
  color: #266bd1;
}

.footer-col a{
  display: block;
  text-decoration: none;
  color: #161616;
  margin: 6px 0;
  transition: all .3s ease;
}

.footer-col a:hover{
  color: #ee3a3a;
}

.footer-col p{
  margin: 6px 0;
  color: #141313;
}
.footer-col .inf-lnk a{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 6px;
}

.footer-top .footer-col .inf-lnk.phone .txt{
  color: #DA2625 !important;
}
.footer-col .inf-lnk img{
  width: 24px;
  height: auto;
}
.footer-col .inf-lnk .icon.phone img{
  width: 20px;
  height: auto;
}
.footer-col .inf-lnk i{
    color: #DA2625;
    font-size: 18px;
}

.footer-logo{
  width: 160px;
}


/* Second row */
.footer-middle{
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #5c5c5c33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social a{
  margin-right: 12px;
  font-size: 20px;
  color: #161616;
  text-decoration: none;
}

.footer-social a:hover{
  color: #DA2625;
}

.footer-links a{
  margin-left: 15px;
  text-decoration: none;
  color: #DA2625;
  transition: all 200ms ease;
}
.footer-links a:first-child{
  margin-left: 0px;
}
.footer-links a:hover{
  color: #DA2625;
}


/* Bottom */
.footer-bottom{
  margin-top: 40px;
  text-align: center;
  color: #161616;
  padding-top: 25px;
  border-top: 1px solid #5c5c5c33;
}


/* Responsive */
@media(max-width: 950px){
  .footer-top{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 687px){
  .footer-top{
    grid-template-columns: 1fr;
  }
}







@media(max-width: 950px){
  .landing h1{
    font-size: 19px;
  }
  .landing p{
    line-height: 1.4;
  }
  .feature .container{
    flex-flow: column nowrap;
    align-items: center;
  }
  .feature .feat{
    width: 100%;
    margin: 0px;
  }
  .org-structure{
    border-radius: 18px;
  }
  .org-structure:after{
    border-radius: 12px;
  }
  .org-structure .head .org-title{
    font-size: 30px;
  }
  .accordion{
    padding: 40px 0px 0px;
  }
  .accordion-header{
    font-size: 18px;
  }
  .accordion-header .icn{
    font-size: 22px;
  }
  .org-structure .cont-body .org-img{
    padding-top: 0px;
  }
  .services .services-content .cards-cont:before, .services .services-content .cards-cont:after{
    width: 50px;
  }
  .contact-sec.pg{
    width: calc(100% - 32px);
    bottom: 40px;
  }
  .contact-sec .contact-content{
    flex-flow: column nowrap;
    align-items: center;
  }
  .contact-sec .contact-dtls:before{
    display: none;
  }
  .row-two{
    flex-flow: column nowrap;
    gap: 0px;
  }
  .contact-sec .contact-form{
    width: 100%;
  }
  .contact-sec .contact-dtls{
    max-width: 100%;
    max-width: 400px;
    padding: 40px 0px;
  }
  .fo-logo{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-middle{
    justify-content: center;
  }
}
@media screen and (min-width: 700px) and (max-width: 950px){
  .feature .container{
    flex-flow: row wrap;
  }
}




/* Pages */
.sec-hero{
  width: 100%;
  height: 450px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  border-bottom: 1px solid #333;
  background: url('../images/hero-about1.jpg') no-repeat center;
  background-position: center !important;
  background-size: cover !important;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-hero{
    background: url('../images/hero-about1-mob.jpg') no-repeat center;
    background-position: top center !important;
    background-size: cover !important;
  }
}
.sec-hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  /* backdrop-filter: blur(4px); */
    z-index: -1;
}

.sec-hero:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* background: linear-gradient(to bottom, #1616167c, #70707041); */
    background: linear-gradient(to bottom, #ffffff38, #70707041);
    z-index: -1;
}
.sec-hero .cont{
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  z-index: 10;
  padding: 16px;
}
.sec-hero .logo-bx{
    width: 400px;
    height: auto;
    /* animation: logoShine 3s ease-in-out infinite; */
  }
  .sec-hero .logo-bx img{
    /* filter: brightness(0) invert(1); */
    width: 300px;
    height: auto;
}

@keyframes logoShine {
    0%, 100% { 
    filter: brightness(1) drop-shadow(0 0 0px rgba(255, 138, 3, 0));
    }
    50% { 
    filter: brightness(1.2) drop-shadow(0 0 15px #da25256c);
    }
}

.sec-hero h1.title {
    font-size: 42px;
    text-align: center;
    margin: 8px 0px;
    padding-top: 8px !important;
    color: #dfdfdf;
}


@media (max-width: 950px) {
    .sec-hero {
        height: 400px;
    }
    .sec-hero .logo-bx img{
      width: 200px;
    }
    .sec-hero h1.title{
      font-size: 32px;
    }
    .sec-hero:before {
        background-size: 100% !important;
    }
    .contact-sec .main-cont{
      flex-flow: column nowrap;
      gap: 24px;
    }
    .contact-sec .contact-content{
      padding-left: 0px;
    }
    .contact-sec .contact-content:before{
      display: none;
    }
    .contact-sec .main-cont .img{
      order: 2;
      margin: auto;
    }
}

body.home .header{
  transform: translateY(0); 
  opacity: 0;
}
body.home .landing {
  border-radius: 30px;
  overflow: hidden;
}
body.home .landing h1,
body.home .landing p,
body.home .landing .btn-cta-hero{
  opacity: 0;
}



.mainsec-title{
  padding: 40px 16px 24px;
  text-align: center;
  color: #DA2625;
  font-size: 32px;
}
.mainsec-title h1{
  margin: 0px;
}
.fst{
  padding-top: 85px;
  display: block;
}

@media (max-width: 768px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  body {
    scrollbar-width: none;
  }
  
  body::-webkit-scrollbar {
    display: none;
  }
  
  .special-heading+p{
    font-size: 16px;
  }
  .org-sub,
  .feature .feat p,
  .about .text p,
  .landing p,
  .landing h1 {
    text-align: justify;
    text-align-last: center;
  }
  .header .container{
    padding: 0px
  }
  .org-structure:after {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    top: 11px;
    left: 11px;
  }
  .mainsec-title{
    font-size: 24px;
  }
  .fst{
    padding-top: 60px;
  }
  
}
