@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-size: 13.9px;
  font-weight: 400;
  visibility: visible;
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 24px;
  background: white;

}

section.section_top.about_div {
  background: #ffff;
}


p:last-child {
  margin-bottom: 0;
}

a,
button {
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

*:focus {
  outline: none !important;
}


a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 3px !important;
}


/* ****************top-nav-bar-css************************** */

/* Top Navigation Bar */
.top-nav-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 30px;
  background-color: #7E5FB0;
  /* background-color: #7b4ab4; */
  gap: 20px;
}

.top-nav-bar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.top-nav-bar a:hover {
  color: #f39c12;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.search-box {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 15px 50px 15px 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
}

.search-box button.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  border: none;
  background: #f39c12;
  color: white;
  font-size: 18px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.search-box .close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
  .top-nav-bar {
    flex-direction: column;
    gap: 10px;
  }

  .search-box input {
    font-size: 16px;
    padding: 12px 45px 12px 12px;
  }

  .search-box button.search-btn {
    width: 45px;
  }
}

a#searchToggle {
  color: #ffff;
}






.dropdown_currency,
.dropdown_language,
.dropdown_links {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  text-align: left;
  top: 125%;
  right: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
  z-index: 9999;
  padding: 9px 18px 8px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #f0f0f0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {

  .dropdown_currency,
  .dropdown_language,
  .dropdown_links {
    right: 0;
    left: auto;
    min-width: 200px;
    padding: 0 6px;
  }

  .dropdown_links {
    right: 0px !important;
  }
}


.dropdown_language {
  right: 0;
}

.dropdown_language li a img {
  margin-right: 4px;
}

.dropdown_links {
  right: -114px;
}




@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main_menu {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main_menu {
    display: none;
  }
}

.main_menu nav>ul>li {
  display: inline-block;
  position: relative;
}

.main_menu nav>ul>li:hover ul.sub_menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) rotateX(0deg);
}

.main_menu nav>ul>li:hover .mega_menu {
  opacity: 1;
  visibility: visible;

  transform: perspective(600px) rotateX(0deg);
}

.main_menu nav>ul>li:hover>a {
  color: #684999;
}

.main_menu nav>ul>li:first-child>a {
  padding-left: 0;
}

.main_menu nav>ul>li>a {
  display: block;
  padding: 0px 14px;
  font-size: 13px;
  line-height: 24px;
  text-transform: initial;
  font-weight: 600;

}

@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .main_menu nav>ul>li>a {
    font-size: 13px;
    padding-left: 4px;
  }
}

.main_menu nav>ul>li>a i {
  margin-left: 3px;
}

.main_menu nav>ul>li ul.sub_menu {
  position: absolute;
  padding: 10px;
  background: #fff;
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: 100%;
  width: 300px;
  border-radius: 0px;
  padding: 10px;
  border: none;
  backdrop-filter: blur(14px);

  text-align: left;


  transition: all 0.35s ease-in-out;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.main_menu nav>ul>li ul.sub_menu li a {


  font-size: 14px;
  display: block;
  padding: 7px 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.25s ease;
  color: #333;
  text-decoration: none;

}

.main_menu nav>ul>li ul.sub_menu li a:hover {
  background: linear-gradient(135deg, #312150, #684999ba);
  color: #fff !important;
  transform: translateX(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.main_menu nav>ul>li ul.sub_menu li.home7new {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.main_menu nav>ul>li.mega_items {
  position: static;
}

.main_menu nav>ul>li .mega_menu {
  position: absolute;
  min-width: 630px;
  padding: 25px 30px 30px 30px;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
  top: 100%;
  text-align: left;
}



.main_menu nav>ul>li .mega_menu .banner_static_menu a img:hover {
  opacity: 0.7;
}

.mega_menu_inner {
  display: flex;
  justify-content: space-between;
}

.mega_menu_inner>li>a {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  display: block;
  margin-bottom: 8px;
}

.mega_menu_inner>li>a:hover {
  color: #0070a6;
}

.mega_menu_inner>li ul li {
  display: block;
}

.mega_menu_inner>li ul li a {
  font-weight: 400;
  display: block;
  line-height: 28px;
  text-transform: capitalize;
}

.mega_menu_inner>li ul li a:hover {
  color: #0070a6;
}



.main-wrapper.header-transparent {
  padding: 0 !important;
  margin: 0 !important;
}



.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #333;
  top: 0;
}

.off_canvars_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.Offcanvas_menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .Offcanvas_menu {
    display: block;
    /* margin-bottom: 30px; */
  }


}

@media only screen and (max-width: 767px) {
  .Offcanvas_menu {
    display: block;
    /* margin-bottom: 25px; */
  }
}

.Offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #538234;
  z-index: 99;
  top: 0;
  height: 100vh;
  transition: .5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 20px 30px;
  overflow-y: auto;
}

.Offcanvas_menu_wrapper.active {
  margin-left: 0;
}



.Offcanvas_menu_wrapper .top_right {
  display: block;
  margin-bottom: 18px;
  text-align: center !important;
}

.Offcanvas_menu_wrapper .top_right>ul>li {
  padding-right: 4px;
  margin-right: 4px;
}

.Offcanvas_menu_wrapper .top_right>ul>li::before {
  display: none;
}

.Offcanvas_menu_wrapper .top_right>ul>li>a {
  font-size: 14px;

}


.offcanvas_main_menu li {
  position: relative;
}

.offcanvas_main_menu li:last-child {
  margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
  font-size: 30px;
  margin-left: 30px;
  color: #ffff;
}

.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e7f3fa;
  color: #ffff;
}




.canvas_close {
  position: absolute;
  top: 7px;
  right: 13px;
}

.canvas_close a {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 200;
  width: 35px;
  background: #fff;
  height: 35px;
  display: block;
  text-align: center;
  border-radius: 50%;
}




img.mob_logo {
  width: 140px;
}

.canvas_close a:hover {
  color: #1d5cb2;
}

.canvas_open {
  display: flex;
  justify-content: space-between;
  margin: 0px 10px;
  align-items: center;
}

.canvas_open span {
  font-size: 18px;
  font-weight: 500;

}

.canvas_open a {
  font-size: 28px;
}



.sticky-header.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  padding: 4px;
  background: #2c6f9d;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}


i.bi.bi-x-circle {
  padding: 6px;
  position: relative;
  top: 7px;
}

.header_bottom {
  padding: 0px 20px;
}


a.logo img {
  width: 80px;
}



/* =================================banner =============================*/


.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/new-background.png");
  /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  overflow: hidden;
}

.banner-content h1 {
     font-weight: 600;
    margin: 20px;

}


/* 🔹 Overlay */
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 74%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  /* keeps text above overlay */
  max-width: 1200px;
text-align: center;
  padding: 0 20px;
}


.banner p {
  font-size: 17px;
  margin-bottom: 30px;
}

/* 🔹 Buttons */
.banner-buttons .btng-1 {
  padding: 12px 28px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-btn-primary {
  background: linear-gradient(135deg, #312150, #684999ba);
  color: #fff;
}

.btn-btn-primary:hover {
  background-color: #574fd6;
}

.btn-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 1.5rem;
  }

  .banner p {
    font-size: 1rem;
  }

  .banner-buttons .btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}


.str-box-inner h6 {
  font-size: 15px;
}

/* Floating WhatsApp & Call Icons */
.contact-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.contact-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.call {
  background-color: red;
}

.whatsapp {
  background-color: #25D366;
}

section.about-section {
  padding: 50px;
}


a.about-heading h2 {
  font-size: 28px;
  font-weight: 600;
}


section.owl-section h3 {
  text-align: center;
  color: #fff;
  padding: 8px;
  font-size: 27px;
  font-weight: 600;
}

section.owl-section {
  padding: 20px;
  background: #7e5fb0;
}

.about-image img {
  border-radius: 20px;
}

a.btn-read {
  border: 2px solid #848181;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 15px;
  position: relative;
  top: 10px;
}

.caption-owltext {
  position: relative;
  top: 9px;
  color: #ffff;
  font-size: 15px;
  font-weight: 500;
  line-height: initial;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  top: -224px;
}

.owl-theme .owl-nav {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  margin: 22px 0px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #181515 !important;
  font-size: 14px;
  margin: 5px;
  padding: 6px 9px !important;
  background: #ffffff !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-carousel .item {
  text-align: center;
  padding: 10px;
}

.owl-carousel .item img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  border-radius: 75px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.owl-carousel .item img:hover {
  transform: scale(1.05);
}

section.our-srever {
  padding: 50px;
}

section.our-srever h4 {
  text-align: center;
  font-size: 31px;
  font-weight: 600;
}

ul.sector-serv {
  text-align: center;
  margin: 45px 0px;
}

ul.sector-serv h6 {
  font-size: 19px;
  font-weight: 700;
}

.sraver-top {
  margin: 31px 0px;
}

/* ul.sector-servope h6 {
  margin: 8px 0px;
  font-size: 15px;
  font-weight: 700;
} */

section.our-Partner h4 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;

}

section.our-srever h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}


.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;

}

/* Grid */
.cards-box1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: center;
  max-width: 1388px;
  margin: 0 auto;
}

.card-boxz {
  background: #fff;
  border-radius: 10px;
  padding: 50px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-boxzd:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* First card different background */
.card-boxz:hover {
  background: #6b21a8;
  color: #fff;
}

.icon-box {
  font-size: 32px;
  margin-bottom: 12px;

}



.card-boxz h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 5px;
  margin-bottom: 10px;
}

.card-boxz p {
  font-size: 14px;
  line-height: 1.6;

}



@media (max-width: 600px) {
  .section-title {
    font-size: 20px;
  }

  .card-boxz h3 {
    font-size: 15px;
  }

  .card-boxz p {
    font-size: 13px;
  }
}

section.our-Project h4 {
  font-size: 31px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;

}

section.our-Project {
  padding: 50px;
  text-align: center;
}

.card-contenting {
  padding: 30px;
}

.card-contenting h5 {
  font-size: 21px;
  font-weight: 600;
}

.filter-buttons {
  margin-bottom: 20px;
}

.filter-buttons .btn {
  border: none;
  padding: 4px 10px;
  margin: 5px;
  border-radius: 0px;
  font-weight: 600;
  /* background: #ddd; */
  cursor: pointer;
  transition: background 0.3s;
}

.filter-buttons .btn.active,
.filter-buttons .btn:hover {
  border-bottom: 3px solid #7e5fb0;

}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.filter-item {
  display: none;
  transition: all 0.3s ease;
  border: 1px solid #d0d9e7;
  border-radius: 10px;
}

.filter-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

section.our-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}



.clients-sectionion {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.clients-sectionion h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 20px;
  font-size: 32px;
  color: rgb(29, 53, 87);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}



.slideingr {
  overflow: hidden;
  position: relative;
  width: 100%;

  margin: auto;
}

.slideing-track {
  display: flex;
  width: calc(200px * 14);
  animation: scroll 25s linear infinite;
}

.slideing {
  width: 200px;
  height: 100px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.slideing img {
  max-width: 100%;
  max-height: 80px;
  transition: filter 0.3s ease-in-out;
}

.slideing:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 7));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slideing {
    width: 140px;
    height: 80px;
  }

  .slideing-track {
    width: calc(140px * 14);
  }
}

.clients-sectionion {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.clients-sectionion h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block;
}



.slideingr {
  overflow: hidden;
  position: relative;
  width: 100%;

  margin: auto;
}

.slideing-track {
  display: flex;
  width: calc(200px * 14);
  animation: scroll 25s linear infinite;
}

.slideing {
  width: 200px;
  height: 100px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.slideing img {
  max-width: 100%;
  max-height: 80px;
  transition: filter 0.3s ease-in-out;
}

.slideing:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 7));
  }
}


.cta-section {
  background: #6a4dad;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin: 50px 0px;
}

.cta-section h2 {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta-section .cta-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.cta-section .cta-btn:hover {
  background: #fff;
  color: #6a4dad;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 18px;
  }

  .cta-section .cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}


.text-input::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.contact-footer {
  background: #6a4dad;
  color: #fff;
  padding: 25px 0px;
}

.contact-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

.contact-footer .footer-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #f2f2f2;
}

.contact-footer .footer-item i {
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}


.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 20px;
  align-items: center;
}

/* Left Side Info */
.contact-info h4 {
  color: #6a4dad;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-info h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  border-bottom: 2px solid #6a4dad;
  display: inline-block;
  padding-bottom: 6px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.contact-info .author {
  font-weight: bold;
  margin-top: 20px;
  color: #222;
}

.contact-info .role {
  font-size: 14px;
  color: #777;
}

/* Right Side Form */
.contact-form {
  background: #6a4dad;
  color: #fff;
  padding: 35px;
  border-radius: 6px;
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 4px 10px;
  margin-bottom: 15px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  outline: none;
  background: #6a4dad;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: #fff;
  color: #6a4dad;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form button:hover {
  background: #f3f3f3;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 20px;
  }
}

.contact-icon-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* space between buttons */
  z-index: 9999;
}

/* Common styles for both buttons */
.contact-icon-box a {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  /* square with rounded edges */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Hover effect */
.contact-icon-box a:hover {
  transform: scale(1.1);
}

/* Specific colors */
.contact-icon-box .call {
  background-color: #e74c3c;
  /* Red */
}

.contact-icon-box .whatsapp {
  background-color: #25D366;
  /* Green */
}

/* =============================about page css================================== */
.av-about-section {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay */
.av-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 78%);
  z-index: 1;
}

.av-about-content {
  max-width: 900px;
  padding: 20px;
  position: relative;
  z-index: 2;
  /* Keep text above overlay */
}

.av-about-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.av-about-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #1e90ff;
  margin: 10px auto 0;
}

.av-about-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.av-about-content p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .av-about-section {
    height: auto;
    padding: 60px 20px;
  }

  .av-about-content h2 {
    font-size: 30px;
  }

  .av-about-content h3 {
    font-size: 18px;
  }

  .av-about-content p {
    font-size: 14px;
  }
}

.ab-section {
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ab-section:nth-child(even) {
  flex-direction: row-reverse;
}

.ab-section img {
  width: 100%;
  max-width: 350px;
}

.ab-section-content {
  flex: 1;
  min-width: 300px;
}

.ab-section-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.ab-section-content p {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: justify;
}



.ab-section-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .ab-section {
    flex-direction: column !important;
    text-align: center;
  }

  .ab-section-content ul {
    text-align: left;
  }
}

.leadership {
  text-align: center;
  padding: 50px;
  background: #f2f4f7;
}

.leadership h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.leadership p {
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.leader-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.leader-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.3s;
}

.leader-card:hover {
  transform: translateY(-8px);
}

.leader-card img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.leader-info {
  padding: 15px;
}

.leader-info h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.leader-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .leader-grid {
    flex-direction: column;
    align-items: center;
  }
}


.governance-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.governance-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.governance-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.governance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: #f5f6fa;
}

.accordion-item i {
  font-size: 18px;
  color: #6c63ff;
}

.accordion-item span {
  flex: 1;
  margin-left: 10px;
  text-align: left;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #555;
  padding: 0 5px;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

.accordion-item.active+.accordion-content {
  max-height: 200px;
  padding: 10px 5px;
}

.illustration img {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .governance-content {
    grid-template-columns: 1fr;
  }
}

section.leadership.lead-bg {
  background: #fff;
}


.reit-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.reit-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
}

.reit-section p {
  font-size: 15px;

  line-height: 1.6;


}

.reit-illustration img {
  max-width: 100%;
  height: auto;
  margin: 20px auto 50px;
  display: block;
}

.reit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.reit-card {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.reit-card h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 12px;
}

.reit-card p {
  font-size: 14px;
  line-height: 1.6;

}

/* First card with purple background */
.reit-card:hover {
  background: #5b2e91;
  color: #fff;
}


@media (max-width: 992px) {
  .reit-cards {
    grid-template-columns: 1fr;
  }
}










button.srv-btn {
  border: none;
  background: none;
  display: block;
  padding: 0px 6px;
  font-size: 13px;
  line-height: 24px;
  text-transform: initial;
  font-weight: 600;
}


/* Dropdown base */
.srv-menu {
  border-radius: 0px;
  padding: 10px;
  border: none;
  backdrop-filter: blur(14px);
  background: #fff;
  opacity: 0;
  width: 300px;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease-in-out;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 1000;
  top: 40px;
  list-style: none;
}

.srv-dropdown:hover>.srv-menu,
.srv-submenu:hover>.srv-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu positioning */
.srv-submenu {
  position: relative;
}

.srv-submenu .srv-menu {
  top: 0;
  left: 100%;
  margin-left: 10px;
}

/* Menu item styles */
.srv-item {
  display: block;
  padding: 7px 11px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.25s ease;
  color: #333;
  text-decoration: none;
}

.srv-item:hover {
  background: linear-gradient(135deg, #312150, #684999ba);
  color: #fff !important;
  transform: translateX(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Animated submenu arrows */
.srv-submenu>a::after {
  content: "›";
  float: right;
  font-weight: bold;
  color: #888;
  transition: transform 0.3s ease;
}

.srv-submenu:hover>a::after {
  transform: translateX(4px);
  color: #7e5fb0;
}

/* Responsive */
@media (max-width: 768px) {
  .srv-menu {
    min-width: 250px;
  }

  .srv-btn {
    width: 100%;
    font-size: 16px;
  }
}

/* ul.sector-serv {
  text-align: center;
  margin: 45px 0px;
  border-radius: 10px;
  background: #7e5fb0;
  padding: 50px;
  font-size: 15px;
  color: #fff;
} */

.os-services-section {
  position: relative;
  background: url('your-image.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
}

.os-services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 78%);
  /* dark overlay */
}

.os-services-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
  margin: 10px 80px;
}

.os-services-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.os-services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.os-btn-explore {
  background: #5b3f95;
  color: #fff;
  font-weight: 600;
  padding: 8px 30px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}



@media (max-width: 768px) {
  .os-services-content h2 {
    font-size: 32px;
  }

  .os-services-content p {
    font-size: 16px;
  }
}

.sm-manager {
  text-align: center;
  margin-bottom: 30px;
}

section.Strategic-Management.bg-color-local {
  background: #f2f3f6;
}

.srth-center {
  display: flex;
  justify-content: center;
}

.str-box1 {
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: 25%;
  margin: 10px 5px;
}

.str-box1:hover {
  transform: translateY(-8px);
}



img.card-img-top {
  border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;

}

.btn-purple {
  background-color: #5b3f95;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 20px;
  width: 100%;

}




section.Strategic-Management {
  padding: 50px;
  font-size: 15px;
}

.sm-manager h3 {
  font-size: 20px;
}

.sm-manager h1,
.sm-manager h2,
.sm-manager h3,
.sm-manager h4,
.sm-manager h5,
.sm-manager h6 {
  font-size: 28px;
  padding-bottom: 10px;
}

p.strategic-sub-hed {
  font-size: 20px;
  font-weight: 600;
  padding: 0px;
  margin: 10px;
}

.str-box-inner {
  padding: 20px;
  height: 165px;
}

.str-tscl {
  display: flex;
  justify-content: center;
}

.str-box2 {
  width: 25%;
  margin: 10px;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.str-box3 {

  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease;
}


.sm-manager-lef {
  margin-bottom: 20px;
}




.or-section {
  padding: 60px 0;
}

.or-section h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

.or-section p,
.or-section li {
  font-size: 16px;
  line-height: 1.6;
}

/* .or-section ul {
      padding-left: 18px;
    } */

.or-img-box img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Alternate background */
.or-section:nth-child(even) {
  background: #f9f9f9;
}

.or-approach-img img {
  border-radius: 10px;
}

section.or-approach h3 {
  font-size: 27px;
  font-weight: 600;
}


section.or-approach {
  padding: 50px;
}

section.or-approach img {
  border-radius: 10px;
}



/*Investment Section Title */
.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 20px;
}

/* Card Styling */
.investment-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.investment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.investmentcard-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Body */
.investmentcard-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.investmentcard-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.investmentcard-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.investment-card-btn {
  background: #7a4bcf;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

.investment-card-btn:hover {
  background: #6536b3;
}

/* Approach Section */
.investmentapproach-section {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Row Spacing */
.investmentapproach-section .row {
  align-items: center;
}

/* Title */
.investmentapproach-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;

  color: #000;
}

/* Paragraph */
.investmentapproach-section p {
  text-align: left;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.6;
}



.investmentapproach-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

.investmentapproach-section ul li b {
  font-weight: 600;
  color: #000;
}

/* Image */
.investmentapproach-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.investmentSubapproach-section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Row Spacing */
.investmentSubapproach-section .row {
  align-items: center;
}

/* Title */
.investmentSubapproach-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  color: #000;
}

/* Paragraph */
.investmentSubapproach-section p {
  text-align: left;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.6;
}

/* List */
.investmentSubapproach-section ul {

  margin: 0;
}

.investmentSubapproach-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

.investmentSubapproach-section ul li b {
  font-weight: 600;
  color: #000;
}

/* Image */
.investmentSubapproach-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {

  .investmentapproach-section,
  .investmentSubapproach-section {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .investmentapproach-section .col-md-7,
  .investmentapproach-section .col-md-5,
  .investmentSubapproach-section .col-md-7,
  .investmentSubapproach-section .col-md-5 {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
}

/* Services Section */
.investmentservices-section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
}

/* Row alignment */
.investmentservices-section .row {
  align-items: center;
}

/* Image */
.investmentservices-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Paragraph */
.investmentservices-section p {
  text-align: left;
  margin-bottom: 18px;
  color: #333;
  line-height: 2;

}

/* List */
.investmentservices-section ul {
  text-align: left;

  margin: 0;

}

.investmentservices-section ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;

}

.investmentservices-section ul li b {
  font-weight: 600;
  color: #000;
}

.investmentSubservices-section {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
}

/* Row alignment */
.investmentSubservices-section .row {
  align-items: center;
}

/* Image */
.investmentSubservices-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Paragraph */
.investmentSubservices-section p {
  text-align: left;
  margin-bottom: 18px;
  color: #333;
  line-height: 2;
 
}

/* List */
.investmentSubservices-section ul {
  text-align: left;
  padding-left: 20px;
  margin: 0;
 
}

.investmentSubservices-section ul li {
  margin-bottom: 12px;

  color: #444;

}

.investmentSubservices-section ul li b {
  font-weight: 600;
  color: #000;
}

/* Title */
.investmentservices-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {

  .investmentservices-section,
  .investmentSubservices-section {
    padding: 25px;
    text-align: center;
  }

  .investmentservices-section .col-md-5,
  .investmentservices-section .col-md-7,
  .investmentSubservices-section .col-md-5,
  .investmentSubservices-section .col-md-7 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .investmentSubservices-section ul {
    text-align: left;
    /* keep bullets aligned left on mobile */
  }
}

/* Full width background */
.cta-section {
  background: #6c4caf;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  margin-bottom: 50px;
}

/* Centered content */
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading style */
.cta-container h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

/* Button style */
.cta-container button {
  background: #fff;
  color: #6c4caf;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-container button:hover {
  background: #ddd;
}


:root {
  --accent: #0b78d1;
  --dark: #0b1720;
  --muted: #6b7280;
  --glass: rgba(255, 255, 255, 0.06);

}





.dev-susta-hero {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 252, 255, 0.7));
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
  overflow: hidden;
}

.dev-susta-left {
  padding-right: 6px
}

.dev-susta-eyebrow {
  display: inline-block;
  background: var(--glass);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 18px
}

.dev-susta-left h3 {
  font-size: 27px;
  font-weight: 600;
  margin: 0px 0px 20px;
}

p.dev-susta-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px
}

.dev-susta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 22px
}

.dev-susta-feat {
  background: #ffffff;
  border: 1px solid rgba(11, 23, 32, 0.04);
  padding: 12px 14px;
  border-radius: 10px;
  min-width: 180px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.dev-susta-feat strong {
  display: block;
  font-size: 14px
}

.dev-susta-cta {
  display: flex;
  gap: 14px;
  align-items: center
}

.dev-susta-btn {
  background: #7e5fb0;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(11, 119, 209, 0.16)
}

.dev-susta-btn.secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(11, 23, 32, 0.06)
}

.dev-susta-right {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: stretch
}

.dev-susta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.dev-susta-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: linear-gradient(90deg, rgba(11, 23, 32, 0.86), rgba(11, 23, 32, 0.6));
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.35);
  font-size: 14px
}

.dev-susta-overlay .title {
  font-weight: 700
}

.dev-susta-overlay .subtitle {
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.95
}

.dev-susta-floating {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
  border-left: 4px solid var(--accent);
  font-size: 13px
}

@media (max-width:1000px) {
  .dev-susta-hero {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:820px) {
  .dev-susta-container {
    padding: 16px;
    margin: 20px
  }

  .dev-susta-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px
  }

  .dev-susta-right {
    min-height: 260px
  }

  h1 {
    font-size: 26px
  }
}

.dev-susta-muted {
  color: var(--muted);
  font-size: 13px
}

.dev-susta-about {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap
}

.dev-susta-about-card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(11, 23, 32, 0.04);
  box-shadow: 0 6px 20px rgba(9, 30, 66, 0.04)
}

.dev-susta-about-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.dev-susta-facts {
  width: 320px;
  min-width: 220px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 23, 32, 0.03)
}

.dev-susta-facts h4 {
  margin-bottom: 8px
}

.dev-susta-facts ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.7
}

.Development-Services-ds-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.Development-Services-ds-section h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.Development-Services-ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 25px;
}

.Development-Services-ds-card {
  background: linear-gradient(135deg, #312153, #5d4d85);
  border-radius: 15px;
  color: #fff;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.Development-Services-ds-card::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.05);
  top: -50%;
  left: -50%;
  transform: rotate(25deg);
}

.Development-Services-ds-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.Development-Services-ds-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.Development-Services-ds-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #e0e0ff;
  position: relative;
  z-index: 1;
}

/* Optional: icon placeholder */
.Development-Services-ds-card .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .Development-Services-ds-grid {
    grid-template-columns: 1fr;
  }
}


.Innovation-Parks-ds-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;


}

.Innovation-Parks-ds-section h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;

}

.Innovation-Parks-ds-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.Innovation-Parks-ds-item:nth-child(even) {
  flex-direction: row-reverse;
}

.Innovation-Parks-ds-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.Innovation-Parks-ds-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.Innovation-Parks-ds-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.Innovation-Parks-ds-content {
  flex: 1;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.Innovation-Parks-ds-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.Innovation-Parks-ds-content h3 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #7e5fb0;
  font-weight: 600;
}

.Innovation-Parks-ds-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .Innovation-Parks-ds-item {
    flex-direction: column;
  }

  .Innovation-Parks-ds-item:nth-child(even) {
    flex-direction: column;
  }

  .Innovation-Parks-ds-image img {
    height: 250px;
  }
}



.Insights-News-ds-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.Insights-News-ds-section h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.Insights-News-ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.Insights-News-ds-card {
  background-color: #fff;
  border-left: 6px solid rgb(106 77 173);
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.Insights-News-ds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.Insights-News-ds-card h3 {
  font-size: 1.4em;
  margin-bottom: 12px;
  color: rgb(106 77 173);
}

.Insights-News-ds-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .Insights-News-ds-grid {
    grid-template-columns: 1fr;
  }
}

















.automation-industry-section {
    position: relative;
  
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
}

.automation-industry-overlay {
    background: rgb(0 0 0 / 83%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.automation-industry-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 60px;
    max-width: 800px;
}

.automation-industry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.automation-industry-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.automation-industry-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ai-btn-explore {
    background: #7d5ab7;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.7rem 2.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.ai-btn-explore:hover {
    background: #5a3e8b;
    color: #fff;
}

.ai-oa-section {
    padding: 48px 0;
    background: #fff;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

.ai-oa-section ul {
    padding-left: 1.2rem;
}

.ai-oa-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ai-oa-section img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ai-advantage-section {
    background: #f7f7fa;
    padding: 40px 0;
}

.ai-advantage-section .section-title {
    margin-bottom: 1rem;
}

.ai-advantage-section ul {
    padding-left: 1.2rem;
}

.ai-advantage-section ul li {
    margin-bottom: 0.5rem;
}

.ai-advantage-section img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


.cta-section {
    background: #7d5ab7;
    color: #fff;
    text-align: center;
    padding: 48px 0 32px 0;
}

.cta-section em {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.btn-contact {
    background: #fff;
    color: #7d5ab7;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.6rem 2.2rem;
    font-size: 1rem;
    border: none;
    margin-top: 24px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-contact:hover {
    background: #e5d8fa;
    color: #5a3e8b;
}



@media (max-width: 991px) {
    .automation-industry-content {
        padding: 40px 0 40px 20px;
    }
}

@media (max-width: 767px) {
    .automation-industry-content {
        padding: 24px 0 24px 10px;
    }

    .ai-oa-section,
    .ai-advantage-section {
        padding: 28px 0;
    }

    .cta-section {
        padding: 32px 0 20px 0;
    }


}



.ele-elv-section {
    position: relative;
  
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
}

.ele-elv-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ele-elv-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 60px;
  
}

.ele-elv-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ele-elv-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ele-elv-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ele-elv-btn-explore {
    background: #7d5ab7;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.7rem 2.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.ele-elv-btn-explore:hover {
    background: #5a3e8b;
    color: #fff;
}

.ele-elv-oa-section {
    padding: 48px 0;
    background: #fff;
}





.ele-elv-oa-section img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ele-elv-expert-section img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ele-elv-expert-section {
    background: #f7f7fa;
    padding: 40px 0;
}

.ele-elv-expert-section .section-title {
    margin-bottom: 1rem;
}



.cta-section {
    background: #7d5ab7;
    color: #fff;
    text-align: center;
    padding: 48px 0 32px 0;
}

.cta-section em {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.btn-contact {
    background: #fff;
    color: #7d5ab7;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.6rem 2.2rem;
    font-size: 1rem;
    border: none;
    margin-top: 24px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}



@media (max-width: 991px) {
    .ele-elv-content {
        padding: 40px 0 40px 20px;
    }
}

@media (max-width: 767px) {
    .ele-elv-content {
        padding: 24px 0 24px 10px;
    }


    /* .ele-elv-expert-section {
        padding: 28px 0;
    } */

    .cta-section {
        padding: 32px 0 20px 0;
    }

}



.ec-section {
    position: relative;
    background: #888691;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ec-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ec-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 60px;
    max-width: 700px;
}

.ec-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    white-space: normal;
}

.ec-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.ec-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
}

.ec-btn-explore {
    background: #7d5ab7;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.7rem 2.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.ec-btn-explore:hover {
    background: #5a3e8b;
    color: #fff;
}



.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

.involves-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.involves-card .card-body {
    padding: 18px 18px 18px 18px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.involves-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.involves-card .card-text {
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
    color: #444;
}

.btn-see-more {
    background: #7d5ab7;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.4rem 1.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-see-more:hover {
    background: #5a3e8b;
    color: #fff;
}

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

.cta-section {
    background: #7d5ab7;
    color: #fff;
    text-align: center;
    padding: 48px 0 32px 0;
}

.cta-section em {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.btn-contact {
    background: #fff;
    color: #7d5ab7;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.6rem 2.2rem;
    font-size: 1rem;
    border: none;
    margin-top: 24px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-contact:hover {
    background: #e5d8fa;
    color: #5a3e8b;
}

@media (max-width: 991px) {
    .ec-content {
        padding: 40px 0 40px 20px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .ec-content {
        padding: 24px 0 24px 10px;
        max-width: 100%;
    }

    .section,
    .advantage-section {
        padding: 28px 0;
    }

    .cta-section {
        padding: 32px 0 20px 0;
    }

    .involves-card .card-img-top {
        height: 80px;
    }
}


.fire-safety-section {
    position: relative;
    background: #888691;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
}

.fire-safety-overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.fire-safety-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 60px;
    max-width: 700px;
}

.fire-safety-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    white-space: normal;
}

.fire-safety-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.fire-safety-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
}

.fs-btn-explore {
    background: #7d5ab7;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.7rem 2.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.fs-btn-explore:hover {
    background: #5a3e8b;
    color: #fff;
}

.fs-oa-section {
    padding: 48px 0;
    background: #fff;
}







.fs-cmt-section,
.fs-oa-section img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.cta-section {
    background: #7d5ab7;
    color: #fff;
    text-align: center;
    padding: 48px 0 32px 0;
}

.cta-section em {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.btn-contact {
    background: #fff;
    color: #7d5ab7;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.6rem 2.2rem;
    font-size: 1rem;
    border: none;
    margin-top: 24px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}




@media (max-width: 991px) {
    .fire-safety-content {
        padding: 40px 0 40px 20px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .fire-safety-content {
        padding: 24px 0 24px 10px;
        max-width: 100%;
    }

    .fs-cmt-section,
    .advantage-section {
        padding: 28px 0;
    }

    .cta-section {
        padding: 32px 0 20px 0;
    }

}