/* Helvetica Neue Black */

@font-face {

  font-family: 'HelveticaNeueBlack';

  src: url('fonts/HelveticaNeueBlack.otf') format('opentype');

  font-weight: 900;

  font-style: normal;

}



/* Helvetica Neue Bold */

@font-face {

  font-family: 'HelveticaNeueBold';

  src: url('fonts/HelveticaNeueBold.otf') format('opentype');

  font-weight: 700;

  font-style: normal;

}



/* Helvetica Neue Heavy */

@font-face {

  font-family: 'HelveticaNeueHeavy';

  src: url('fonts/HelveticaNeueHeavy.otf') format('opentype');

  font-weight: 800;

  font-style: normal;

}



/* Helvetica Neue Light */

@font-face {

  font-family: 'HelveticaNeueLight';

  src: url('fonts/HelveticaNeueLight.otf') format('opentype');

  font-weight: 300;

  font-style: normal;

}



/* Helvetica Neue Medium */

@font-face {

  font-family: 'HelveticaNeueMedium';

  src: url('fonts/HelveticaNeueMedium.otf') format('opentype');

  font-weight: 500;

  font-style: normal;

}



/* Helvetica Neue Roman */

@font-face {

  font-family: 'HelveticaNeueRoman';

  src: url('fonts/HelveticaNeueRoman.otf') format('opentype');

  font-weight: 400;

  font-style: normal;

}



/* Helvetica Neue Thin */

@font-face {

  font-family: 'HelveticaNeueThin';

  src: url('fonts/HelveticaNeueThin.otf') format('opentype');

  font-weight: 100;

  font-style: normal;

}



/* Helvetica Neue UltraLight */

@font-face {

  font-family: 'HelveticaNeueUltraLight';

  src: url('fonts/HelveticaNeueUltraLight.otf') format('opentype');

  font-weight: 200;

  font-style: normal;

}







/*Poppins Fonts*/



@font-face {

  font-family: 'Poppins';

  src: url('Poppins-Black.ttf') format('truetype');

  font-weight: 900;

  font-style: normal;

}



/* Poppins Bold */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');

  font-weight: 700;

  font-style: normal;

}



/* Poppins Extra Bold */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');

  font-weight: 800;

  font-style: normal;

}



/* Poppins Extra Light Italic */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-ExtraLightItalic.ttf') format('truetype');

  font-weight: 200;

  font-style: italic;

}



/* Poppins Light */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');

  font-weight: 300;

  font-style: normal;

}



/* Poppins Medium */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');

  font-weight: 500;

  font-style: normal;

}



/* Poppins Regular */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');

  font-weight: 400;

  font-style: normal;

}



/* Poppins Semi Bold */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');

  font-weight: 600;

  font-style: normal;

}



/* Poppins Thin */

@font-face {

  font-family: 'Poppins';

  src: url('../fonts/poppins/Poppins-Thin.ttf') format('truetype');

  font-weight: 100;

  font-style: normal;

}



*,

::before,

::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



:root {

  --main-color: #C68E2B;

  --secondary-color: #121C22;

  --overlay-main-color: #FFF5DB;

  --paragrapg-black: rgba(0, 0, 0, 0.8);

  --light-black: rgba(0, 0, 0, 0.6);

  --heading-black: #1c1a1a;

  --white: #ffffff;

  --black: #000000;

  --radius-10: 10px;

  --line: #D9D9D9;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  line-height: 125%;

  font-weight: 700;

  font-family: 'HelveticaNeueBlack', sans-serif;

}



p {

  line-height: 160%;

  font-size: 15px;

  color: var(--paragrapg-black);

  text-align: justify;

}



html,

body {

  scroll-behavior: smooth;

  overflow-x: hidden;

  font-family: "Poppins", sans-serif;

}



a{text-decoration:none;}







#button_to_top {

  display: inline-block;

  background-color: var(--main-color);

  width: 40px;

  height: 40px;

  text-align: center;

  border-radius: 4px;

  position: fixed;

  bottom: 30px;

  right: 30px;

  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

  opacity: 0;

  visibility: hidden;

  z-index: 1000;

  display: flex;

  justify-content: center;

  align-items: center;

}



#button_to_top img {

  width: 60%;

}



#button_to_top:hover {

  cursor: pointer;

  background-color: #333;

}



#button_to_top:active {

  background-color: #555;

}



#button_to_top.show {

  opacity: 1;

  visibility: visible;

}



.mobile_header {

  display: none;

}



.btn_orange {

  padding: 10px 30px;

  border-radius: 4px;

  background: var(--main-color);

  color: #fff;

  text-decoration: none;

  display: inline-block;

}



.btn_orange span {

  margin-left: 5px;

}



.btn_orange span img {

  width: 18px;

}



/*header*/



header {

  transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;

  width: 100%;

  z-index: 1000;

}



header.active {

  background: rgba(255, 255, 255, 1);

}



/*hero section*/

header {

  background: rgba(255, 255, 255, 0.4);

}



header .nav-item {

  margin: 0px 12px;

}



header .nav-item .nav-link {

  color: #fff !important;

}



.navbar-brand img {

  transition: all 0.5s ease-in-out;

  width: 220px;

}



header .nav-item .nav-link.active {

  font-weight: 600;

  border-bottom: 4px solid #C68E2B;

}

header .nav-item .nav-link:hover{border-bottom: 4px solid #C68E2B;}

header .nav-item:last-child .nav-link:hover{border:none;}

header .nav-item.dropdown .nav-link:hover{border:none;}

.btn_con .nav-link {

  padding: 10px 30px !important;

  background: var(--main-color);

  border-radius: 4px;

}



.hero_sec_all_single {

  background-size: cover !important;

  width: 100%;

  height: 100vh;

  position: relative;

}



.hero_caption {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 740px;

}



.hero_caption h1 {

  color: var(--white);

  font-size: 50px;

  text-transform: uppercase;

  text-align: center;

  line-height: 150%;

}



.hero_caption h1 span {

  display: block;

  background: var(--main-color);

  padding: 8px 20px;

  margin: 0px 55px;

}



.hero_sec_all_img {

  position: relative;

}



.hero_sec .owl-dots {

  position: absolute;

  left: 0%;

  bottom: 0%;

  background: #fff;

  border-radius: 0px 10px 0px 0px;

  padding: 5px 10px;

  display: flex;

  align-items: center;

}



.hero_sec .owl-dot.active span {

  border: 1px solid var(--black);

  background: transparent !important;

}



.owl-theme .owl-dots .owl-dot span {

  width: 8px;

  height: 8px;

}



.next_box {

  position: absolute;

  bottom: 50px;

  left: 100px;

  z-index: 2;

  color: #fff;

}



.next_box a {

  text-decoration: none;

  display: flex;

  align-items: center;

}



.next_box a p {

  color: #fff;

  margin-bottom: 0px;

}



.container {

  max-width: 1246px;

}



header.active .nav-item .nav-link {

  color: var(--light-black) !important;

}



header.active .nav-item .nav-link.active {

  color: var(--black)

}



header.active .nav-item.btn_con .nav-link {

  color: var(--white) !important;

}



header.active .navbar-brand img {

  width: 160px;

  transition: all 0.5s ease-in-out;

}



.dropdown-menu li:nth-child(odd) a {

  background: var(--overlay-main-color);

}



.dropdown-menu {

  min-width: 225px;

  padding: 10px;

}



.dropdown-menu li a {

  font-size: 14px;

  padding: 10px 20px;

}



.dropdown-item.active,

.dropdown-item:active {

  background: var(--main-color) !important;

}



.dropdown-item:hover {

  background: var(--main-color) !important;

  color: var(--white);

}







.arrow {

  position: relative;

  animation: slideDown 1.5s linear infinite;

}



@keyframes slideDown {

  0% {

    transform: translateY(0);

    opacity: 1;

  }



  70% {

    transform: translateY(20px);

    opacity: 0;

  }



  71% {

    transform: translateY(-20px);

    opacity: 0;

  }



  100% {

    transform: translateY(0);

    opacity: 1;

  }

}



/*home sec 2*/



.home_sec_2 {

  padding: 0px 0px 100px 0px;

}



.home_sec_2_single {

  background: #fff;

  border-radius: 4px;

  position: relative;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);

  height: 100%;

  display: flex;

  flex-direction: column;

  transition: transform .25s ease, box-shadow .25s ease;

}



.home_sec_2_single:hover {

  transform: translateY(-4px);

  box-shadow: 0 14px 28px rgba(0, 0, 0, .10);

}





.h2_media {

  position: relative;

  aspect-ratio: 16/9;

  overflow: hidden;

}



.h2_media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition: transform .35s ease;

}



.home_sec_2_single:hover .h2_media img {

  transform: scale(1.06);

}



.h2_media::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 100%);

  pointer-events: none;

}



.home_sec_2 .h2_label{font-size: 16px !important;text-transform: uppercase;}



.h2_label {

  position: absolute !important;

  top: 12px;

  left: 0px;

  position: relative;

  background: var(--main-color);

  color: #fff;

  font-size: .85rem;

  line-height: 1;

  padding: 8px 12px;

  border-radius: 0px 4px 4px 0px;

  font-weight: 600;

  z-index: 2;

  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);

}



.h2_label_clip {

  position: absolute;

  content: '';

  left: -6px;

  top: 12px;

}



.h2_body {

  padding: 20px 14px;

  color: #5a5a5a;

  font-size: .92rem;

  line-height: 1.45;

  min-height: 108px;

}





.h2_body p {

  margin-bottom: .5rem;

}





/*global solution_sec*/



.global_solution_sec {

  background: #10191d;

  color: #e9ecef;

  padding: 56px 0;

  position: relative;

  overflow: hidden;

}





.global_solution_sec::before {

  content: "";

  position: absolute;

  inset: auto auto 0 0;

  width: 121px;

  background:

    url("data:image/svg+xml,%3Csvg width='128' height='128' viewBox='0 0 24 24' fill='none' stroke='%23364348' stroke-width='1.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.89.32 1.76.59 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.47-1.17a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.6.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") no-repeat left bottom;

  opacity: .25;

  top: 15%;

  left: -35px;

  pointer-events: none;

}



.global_solution_sec_left h3 {

  font-weight: 500;

  font-size: 28px;

  line-height: 1.25;

  margin: 0 0 14px 0;

  color: #ffffff;

}



.global_solution_sec_left .phone {

  font-size: 26px;

  font-weight: 500;

  color: #d39a28;

  letter-spacing: .5px;

  white-space: nowrap;

}







.quote {

  font-size: 18px;

  line-height: 1.7;

  color: #f1f3f5;

  margin: 0 0 14px 0;

}



.author {

  color: var(--main-color);

  font-weight: 600;

  letter-spacing: .2px;

  margin-bottom: 0px;

}



.author span {

  margin-left: 8px;

}





.steel-hero {

  padding: 100px 0px;

  color: var(--black);

  background: #fff;

}



.steel-hero h3 {

  font-size: 34px;

  line-height: 130%;

  font-weight: 600;

  margin: 0;

}



.steel-hero .accent {

  color: var(--main-color);

}



.steel-hero .lede {

  font-size: 16px;



  color: #374151;

}



.btn-gold {

  background: var(--main-color);

  color: #fff;

  border: none;

  font-weight: 600;

  padding: .75rem 1.25rem;

  border-radius: .5rem;

}



.btn-gold:hover {

  filter: brightness(0.95);

  color: #fff;

}



.thin-rule {

  height: 1px;

  background: #e5e7eb;

  margin: 36px 0;

}



.stat {

  display: inline-block;

}



.stat .num {

  font-weight: 800;

  font-size: clamp(36px, 6vw, 56px);

  color: var(--main-color);

  line-height: 1;

  font-weight: 600;

}



.stat h4 {

  font-size: 20px;

  margin: 32px 0 6px;

  font-weight: 700;

  color: #111;

}



.stat p {

  margin: 0;

  color: #6b7280;

  font-size: 15px;

  line-height: 1.6;

}



.stat-col-center {

  border-left: 1px solid #D9D9D9;

  border-right: 1px solid #D9D9D9;

}









.trade-sec {

  background: var(--secondary-color);

  color: #fff;

  padding: 100px 0px 0px 0px;

  overflow: hidden;

}



.trade_sec_heading_right {

  border-left: 1px solid #727272;

  padding-left: 32px;

}



.trade_sec_heading_right p {

  color: rgba(255, 255, 255, 0.8);

}



.trade-sec h3 {

  font-weight: 600;

  font-size: 34px;

  font-family: 'HelveticaNeueBlack', sans-serif;

}



.trade-sec h3 span {

  display: block;

}



.steel-sec-content {

  margin-top: 80px;

}



.trade-sec .accent {

  color: var(--main-color);

}



.trade-card {

  position: relative;

  padding: 48px 24px;

  min-height: 260px;

  transition: all .35s ease;

  height: 100%;

  border-top: 1px solid #3A3A3A;

  border-left: 1px solid #3A3A3A;

  border-right: 1px solid #3A3A3A;

}



.trade-card h4 {

  font-size: 20px;

  font-weight: 600;

  margin-bottom: 14px;

  color: #fff;

}



.trade-card p {

  font-size: 15px;

  line-height: 1.6;

  color: var(--white);

  min-height: 168px;

}



.trade-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  opacity: 0;

  transition: opacity .4s ease;

  z-index: 0;

}



.trade-card:hover::before {

  opacity: .5;

}



.trade-card>* {

  position: relative;

  z-index: 1;

}



.trade-card .arrow {

  font-size: 22px;

  margin-top: 18px;

  display: inline-block;

  transition: transform .3s ease;

  color: var(--main-color);

}



.trade-card:hover .arrow {

  transform: translateX(6px);

}



.steel-sec-content .col-lg-3 {

  padding: 0px;

}



.trade-card-img {

  background-size: cover !important;

  width: 100%;

  position: absolute;

  top: -20px;

  bottom: -20px;

  left: 0%;

  opacity: 0;

  transition: opacity 0.6s ease;

}



.trade-card:hover .trade-card-img {

  opacity: 1;

}



.feralloy_sec {

  padding: 100px 0px;

}



.feralloy_sec .row {

  display: flex;

  align-items: center;

}



.feralloy_sec_right {

  margin-bottom: 40px;

}



.feralloy_sec_right h3 {

  font-size: 34px;

}



.feralloy_sec_right h3 span {

  color: var(--main-color);

}



.feralloy_sec_right h6 {

  font-weight: 600;

  font-size: 16px;

  line-height: 140%;

  margin: 15px 0px;

}



.feralloy_sec_right a {

  padding: 10px 30px;

  border-radius: 4px;

  background: var(--main-color);

  color: #fff;

  text-decoration: none;

  display: inline-block;

}



.feralloy_sec_right a span {

  margin-left: 6px;

}



.feralloy_sec_right a span img {

  width: 15px;

}





/**************Process flow******************/



.process_flow .container-fluid {

  max-width: 1440px;

  padding: 0px;

}



.process_flow .col-lg-3 {

  padding: 0px;

}



.process_flow_sec_single {

  background-size: cover !important;

  width: 100%;

  height: 300px;

}



.process_flow {

  overflow: hidden;

  padding: 20px 0px;

}



.process_flow_sec_single_text {

  position: absolute;

  bottom: -25px;

  left: 0;

  right: 0;

  color: #fff;

  padding: 15px 25px 25px 25px;

  transform: translateY(50%);

  transition: all 0.6s ease;

  height: 150px;

}



.process_flow_sec_single {

  position: relative;

  overflow: hidden;

}



.process_flow_sec_single:hover .process_flow_sec_single_text {

  background: rgba(0, 0, 0, 0.7);

  border-radius: 10px 10px 0px 0px;

}



.process_flow_sec_single:hover .process_flow_sec_single_text {

  transform: translateY(0);

}



.process_flow_sec_single_text h3 {

  margin: 0 0 8px;

  font-size: 18px;

  min-height: 28px;

}



.process_flow_sec_single_text p {

  margin: 0;

  font-size: 14px;

  color: var(--white);

}



.process_flow_sec_heading {

  background: var(--overlay-main-color);

  height: 100%;

  position: relative;

  display: flex;

  align-items: center;

  padding: 0px 20px;

}



.process_flow_sec_heading a {

  margin-top: 20px;

}



.process_flow_sec_heading a span {

  margin-left: 6px;

}



.process_flow_sec_heading a span img {

  width: 15px;

}



.process_flow_sec_heading h3 {

  font-size: 20px;

}



.process_flow_sec_heading p {

  margin-top: 10px;

}



.process_flow_overlay_img {

  position: absolute;

  right: -5px;

  bottom: -25px;

  width: 85px;

  z-index: 2;

  opacity: .4;

}



.process_flow_sec_heading::before {

  position: absolute;

  content: '';

  width: 100%;

  height: 20px;

  background: var(--overlay-main-color);

  top: -20px;

  left: 0%;

}



.process_flow_sec_heading::after {

  position: absolute;

  content: '';

  width: 100%;

  height: 20px;

  background: var(--overlay-main-color);

  bottom: -20px;

  left: 0%;

}





/*******impact section*********/



.impact-sec {

  padding: 100px 0px 0px 0px;

  background: #fff;

  color: var(--black);

}



.impact-title {

  font-weight: 600;

  font-size: 34px;

  line-height: 1.2;

  margin-bottom: 10px;

  text-align: center;

}



.impact-title .accent {

  color: var(--main-color);

}



.impact-sub {

  text-align: center;

  color: var(--black);

  max-width: 900px;

  margin: 0 auto 36px;

  line-height: 1.7;

}



.impact-card {

  background: var(--overlay-main-color);

  border-radius: 4px;

  padding: 24px;

  text-align: center;

  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);

  height: 100%;

  transition: transform .2s ease, box-shadow .2s ease;

}



.impact-card:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);

}



.impact-num {

  font-weight: 800;

  color: var(--main-color);

  font-size: clamp(26px, 3vw, 28px);

  margin-bottom: 6px;

}



.impact-label {

  color: #3f3f46;

  font-size: 14px;

}





/**********our work sec***************/



.ourwork-sec {

  padding: 100px 0px;

}



.ourwork-sec .container-fluid {

  max-width: 1400px;

  padding: 0px;

}



.overline {

  text-transform: uppercase;

  letter-spacing: .14em;

  font-size: .8rem;

  color: var(--black);

  font-weight: 600;

  text-align: center;

  margin-bottom: 6px;

}



.ourwork-title {

  text-align: center;

  font-weight: 600;

  font-size: 34;

  line-height: 1.2;

  margin: 0 0 8px;

}



.ourwork-title .accent {

  color: var(--main-color);

  display: block;

}



.ourwork-sub {

  text-align: center;

  color: var(--muted);

  max-width: 900px;

  margin: 0 auto 22px;

  line-height: 1.7;

}



.ourwork-rule {

  height: 1px;

  background: var(--overlay-main-color);

  margin: 18px 0 22px;

}



/* Gallery */

.work-card {

  position: relative;

  overflow: hidden;

  background: #f6f7f8;

  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);

}



.work-media {

  aspect-ratio: 16/10;

  width: 100%;

  overflow: hidden;

}



.work-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition: transform .35s ease, filter .35s ease;

  display: block;

}



.work-card:hover img {

  transform: scale(1.06);

  filter: contrast(1.02) saturate(1.02);

}





/********footer sec************/





.footer {

  color: #fff;

  padding: 100px 0 40px;

  position: relative;

  background-size: cover !important;

}



.footer .container {

  position: relative;

  z-index: 2;

}



.footer .logo img {

  max-height: 54px;

  margin-bottom: 14px;

}



.footer .desc {

  font-size: 15px;

  line-height: 1.6;

  color: #000;

  margin-bottom: 22px;

}



/* Social */

.social-icons {

  display: flex;

  list-style: none;

}



.social-icons a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #fff;

  color: #111;

  margin-right: 15px;

  font-size: 20px;

  transition: all .3s ease;

}



.social-icons a:hover {

  background: var(--main-color);

  color: #fff;

}



.social-icons a i {

  color: var(--main-color);

  font-size: 20px;

}



.social-icons a:hover i {

  color: var(--white);

}



/* Links */

.footer h5 {

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 18px;

  color: var(--main-color);

}



.footer ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.footer ul li {

  margin-bottom: 14px;

}



.footer ul li a {

  color: #000;

  text-decoration: none;

  transition: color .25s ease;

  font-size: 15px;

}



.footer ul li a:hover {

  color: #000;

}



/* Copyright */

.footer-bottom {

  border-top: 1px solid rgba(0,0, 0, .1);

  margin-top: 32px;

  padding-top: 40px;

  font-size: 14px;

  text-align: center;

  color: #000;

}



.footer-bottom span {

  color: var(--main-color);

  font-weight: 600;

}



.hero-inner h2 {

  font-size: 40px;

  font-weight: 600;

}



.hero-inner p {

  font-size: 18px;

  color: #fff;

}





/*resources*/

.resourses_sec2 {

  padding: 100px 0px;

}



.resourses_sec2 h2 {

  font-size: 34px;

  font-weight: 600;

}



.resourses_sec2 h2 span {

  color: var(--main-color);

}



.resources_sec_heading {

  margin-bottom: 50px;

}



.resources_sec_heading .row {

  display: flex;

  align-items: center;

}



.resources_sec_heading p {

  font-size: 16px !important;

}



.resources_sec_heading h6 {

  font-weight: 600;

  font-size: 20px;

  line-height: 150%;

}



.resources_sec_heading_left {

  padding-right: 40px;

}



.resources_sec_heading_right {

  border-left: 1px solid var(--line);

  height: 100%;

}



.resources_sec_heading_right {

  padding-left: 50px;

}







.technical_partnership_sec {

  background: var(--secondary-color);

  padding: 100px 0px;

}



.technical_partnership_heading h2 {

  color: var(--white);

  font-size: 34px;

  font-weight: 600;

}



.technical_partnership_heading h2 span {

  color: var(--main-color);

}



.technical_partnership_heading p {

  color: var(--white);

  font-size: 16px;

}



.technical_partnership_sec .partner-card>p {

  min-height: 48px;

}





.partners_sec {

  padding: 100px 0px;

}



.partners_sec_heading h2 {

  font-size: 34px;

  font-weight: 600;

}



.partners_sec_heading h2 span {

  color: var(--main-color);

}





.partners_sec .container-fluid {

  padding: 0px;

  max-width: 1440px;

}



.partners_sec .row .col-lg-3 {

  padding: 0px;

}



.custom-card {

  transition: all 0.3s ease;

  border-radius: 0px !important;

  border: 1px solid var(--line);

}



.customer_sec {

  padding: 100px 0px;

  background: var(--overlay-main-color);

}



.customer_sec_heading h2,

.global_impact_sec_heading h2 {

  font-size: 34px;

  font-weight: 600;

}



.customer_sec_heading h2 span,

.global_impact_sec_heading h2 span {

  color: var(--main-color);

}





/* Region Headers */

.region-header {

  background: var(--main-color);

  color: white;

  padding: 12px 0px;

  border-radius: 0.5rem;

  margin-bottom: 1.5rem;

}



.customer-list {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

}



.customer-list li {

  padding: 0.75rem 1rem;

  margin-bottom: 0.5rem;

  background: white;

  border-radius: 0.375rem;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  width: 32%;

}



.region-header h3 {

  font-size: 20px;

}



.region-header i {

  font-size: 20px;

}



.global_impact_sec {

  padding: 100px 0px;

  color: var(--white);

}



.global_bx_center {

  border-left: 1px solid var(--line);

  border-right: 1px solid var(--line);

}



.global_bx .icon-circle-lg,

.global_bx_center .icon-circle-lg,

.peace_dev_bx .icon-circle-lg,

.peace_dev_center_bx .icon-circle-lg,

.renewal_bx .icon-circle-lg {

  background: var(--main-color);

  transition: all 0.5s ease-in-out;

}



.renewal_bx .icon-circle-lg i {

  color: var(--white);

}



.renewal_bx h3 {

  font-size: 24px;

}



.subsidiaries_sec3,

.subsidiaries_sec4 {

  padding: 100px 0px;

}



.management_gobal_sec {

  background: var(--white);

}



.subsidiaries_sec3_heading h2,

.subsidiaries_sec4_heading h2,

.business_verticals_sec_heading h2 {

  font-size: 34px;

  font-weight: 600;

}



.subsidiaries_sec3_heading h2 span,

.subsidiaries_sec4_heading h2 span,

.business_verticals_sec_heading h2 span {

  color: var(--main-color);

}



.business_verticals_sec {

  background: #f9f9f9;

}



.subsidiaries_sec3_heading p {

  font-size: 16px;

}



.subsidiaries_sec3 .custom-card h3 span {

  color: var(--main-color);

}



.subsidiaries_sec3 .custom-card .bg_clr {

  background: var(--overlay-main-color);

  padding: 15px 10px;

  margin-bottom: 15px;

}



.subsidiaries_sec3 .custom-card .bg_clr p {

  margin-bottom: 0px;

  font-weight: 600;

  border-radius: 4px;

}



.subsidiaries_sec4 {

  background: var(--white);

}



.subsidiaries_sec4 .card {

  border: 1px solid var(--line);

}



.subsidiaries_sec4 .card h3 span {

  color: var(--main-color);

}







.business_verticals_sec {

  padding: 100px 0px;

  background: var(--white);

}







/* Timeline styles */

.timeline-container {

  position: relative;

}



.timeline-line {

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  width: 2px;

  height: 100%;

  background: var(--overlay-main-color);

}



.timeline-item {

  position: relative;

  margin-bottom: 4rem;

}



.timeline-dot {

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  width: 3rem;

  height: 3rem;

  background-color: var(--main-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  z-index: 10;

}



.timeline-dot i {

  color: white;

  font-size: 1.25rem;

}



.timeline-card {

  background: white;

  position: relative;

  width: 90%;

  padding: 1.5rem;

  border-radius: 0.5rem;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;

}



.timeline-card h3 span {

  color: var(--main-color);

}



.timeline-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

}



.timeline-year {

  font-size: 1.5rem;

  font-weight: bold;

  color: var(--main-color);

  top: 12px;

  left: -25px;

  position: relative;

  background: var(--main-color);

  color: #fff;

  font-size: .85rem;

  line-height: 1;

  padding: 9px 30px;

  border-radius: 0px 4px 4px 0px;

  font-weight: 600;

  z-index: 2;

  margin-bottom: 15px;

}







.timeline-year-clip {

  position: absolute;

  content: '';

  left: -6px;

  top: 36px;

}



/* Fade-in animation */

.fade-in {

  opacity: 0;

  transform: translateY(20px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}



.fade-in.visible {

  opacity: 1;

  transform: translateY(0);

}



/* Card hover effects */

.card-hover {

  transition: all 0.3s ease;

}



.card-hover:hover {

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

}







.lagacy_timeline_sec {

  padding: 100px 0px;

  background: #fff;

}



.secheading h2 {

  font-size: 34px;

  font-weight: 600;

}



.secheading h2 span {

  color: var(--main-color);

}



.secheading p {

  font-size: 16px;

}



.secheading_wh h2 {

  font-size: 34px;

  font-weight: 600;

  color: #fff;

}



.secheading_wh h2 span {

  color: var(--main-color);

}



.secheading_wh p {

  font-size: 16px;

  color: var(--white);

}



.timeline-item .col-md-6:last-child .timeline-card {

  float: right;

}



.timeline_img img {

  padding: 0px 40px 40px 40px;

}





.present_future_sec {

  padding: 100px 0px;

  background: var(--secondary-color);

}



.present_future_sec_left .card-body i {

  color: var(--main-color);

}



.present_future_sec_left .card-body h3 {

  color: var(--main-color);

}



.chairman_msg {

  padding: 100px 0px 0px 0px;

  background: #fff;

}



.leader_bx {

  background: var(--main-color);

  color: var(--white);

}



.leader_bx p {

  color: var(--white);

}



.peace_bx {

  background: var(--overlay-main-color);

}



.chairman_msg_left {

  background: #f9f9f9;

}



.partners_cta_sec button {

  background: var(--main-color);

}





/* Product Cards */

.product-card {

  transition: all 0.3s ease;

  border: 1px solid var(--main-color);

}



.product-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}



.product-image {

  height: 320px;

  object-fit: cover;

}



/* Feature Icons */

.feature-icon {

  width: 3rem;

  height: 3rem;

  background-color: var(--overlay-main-color);

  border-radius: 0.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--main-color);

  font-size: 1.5rem;

}



/* Specifications Table */

.spec-table {

  background: var(--overlay-main-color);

  border: 1px solid var(--amber-200);

}



.spec-table thead {

  background-color: var(--main-color);

  color: white;

}



.spec-table tbody tr:nth-child(even) {

  background-color: white;

}



.spec-table tbody tr:nth-child(odd) {

  background-color: rgba(251, 191, 36, 0.1);

}



/* Quality Assurance Icons */

.quality-icon {

  width: 5rem;

  height: 5rem;

  background-color: var(--main-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 2.5rem;

  margin: 0 auto 1rem;

}



.fade-in {

  opacity: 0;

  transform: translateY(30px);

  transition: all 0.6s ease;

}



.fade-in.visible {

  opacity: 1;

  transform: translateY(0);

}



.product_sec .light_bg {

  background: var(--overlay-main-color);

  padding: 12px;

}



.product_sec .custom-card i {

  color: var(--main-color);

}



.product_sec .custom-card h3 {

  font-size: 28px;

}



.product_specification {

  padding: 100px 0px;

  background: #fff;

}



.product_specification .card-header {

  background: var(--main-color);

  min-height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

}









/* Partnership Notification Banner - Matching Tailwind gradient */

.partnership-banner {

  color: white;

  padding: 0.75rem 0;

}



/* Gradient Backgrounds - Matching Tailwind gradients */

.gradient-yellow {

  background: linear-gradient(135deg, var(--yellow-50), var(--amber-50));

}



.gradient-amber {

  background: linear-gradient(135deg, var(--amber-100), var(--yellow-100));

}







/* Icon Circles - Matching Tailwind icon styling */

.icon-circle {

  width: 4rem;

  height: 4rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.icon-circle-lg {

  width: 5rem;

  height: 5rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}







/* Modal Styling - Enhanced Bootstrap modal */

.modal-content {

  border-radius: 0.5rem;

  border: none;

}



.modal-header {

  border-bottom: 1px solid #e5e7eb;

}



.form-control:focus {

  border-color: var(--yellow-600);

  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);

}



.form-select:focus {

  border-color: var(--yellow-600);

  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);

}



/* Button Styling - Matching Tailwind button styles */

.btn-yellow {

  background-color: var(--yellow-600);

  border-color: var(--yellow-600);

  color: white;

}



.btn-yellow:hover {

  background-color: var(--yellow-700);

  border-color: var(--yellow-700);

  color: white;

}



.btn-yellow:focus {

  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);

}



/* Country Tags - Matching Tailwind badge styling */

.country-tag {

  background-color: var(--yellow-100);

  color: var(--yellow-800);

  padding: 0.25rem 0.75rem;

  border-radius: 9999px;

  font-size: 0.875rem;

  font-weight: 500;

}



.partners_cta_sec .btn_orange {

  border: none;

}



.partner_model .modal-header {

  background: var(--main-color);

  color: var(--white);

}



.partner_model input,

.partner_model select,

.partner_model textarea {

  font-size: 14px;

  padding: 10px;

}



.partner_model label {

  font-size: 15px;

}



.modal-body .alert {

  background: var(--overlay-main-color) !important;

}



.modal-footer button[type="submit"] {

  padding: 10px 30px;

  background: var(--main-color);

}



.modal-footer button[type="button"] {

  padding: 10px 30px;

  background: rgb(155, 155, 155);

}



.social_sec2 {

  padding: 100px 0px;

  background: var(--white);

}



.social_sec2 .custom-card h3 {

  font-size: 28px;

}



.social_sec2 .custom-card h3 span {

  color: var(--main-color);

}



.social_sec2 .custom-card .badge,

.social_sec3 .custom-card .badge {

  background: var(--main-color);

  border-radius: 0px;

  padding: 8px 25px;

}



.out_sty {

  position: relative;

  margin-left: -25px;

}



.out_sty img {

  position: absolute;

  left: -6px;

}



.mission-box h4 {

  color: var(--main-color);

  font-size: 24px;

}



.social_sec3 {

  padding: 100px 0px;

  background: #f9f9f9;

}



.social_sec3 .custom-card h3 span {

  color: var(--main-color);

}



.peace_dev_sec {

  background: var(--white);

  padding-top: 50px;

  overflow: hidden;

}



.peace_dev_sec h3 span {

  color: var(--main-color);

}









/*resource_map*/



.map_sec {

  background: #f5f5f5;

  padding: 4rem 0rem;

  text-align: center;

  position: relative;

  overflow: hidden;

}



.map_sec h2 {

  font-size: 44px;

  color: #45433b;

  margin-bottom: 16px;

}



.map_sec_heading {

  margin-bottom: 50px;

}





.map-location-marker {

  background: url('../images/nw/map-pin.png') no-repeat;

  background-size: contain;

  width: 21px;

  height: 30px;

  position: absolute;

  margin-top: -30px;

  margin-left: -10px;

  cursor: pointer;

  z-index: 2;

}



.marker-italy {

  left: 49.5%;

  top: 30%;

}



.marker-Macedonia {

  left: 54.5%;

  top: 29%;

}



.marker-Switzerland {

  left: 46%;

  top: 31%;

}



.marker-egypt {

  left: 55%;

  top: 40%;

}



.marker-saudi {

  left: 60%;

  top: 44%;

}



.marker-uae {

  left: 62%;

  top: 46%;

}



.marker-oman {

  left: 65%;

  top: 40%;

}



.marker-japan {

  left: 88%;

  top: 29.5%;

}



.marker-china {

  left: 75%;

  top: 32%;

}



.marker-Thailand {

  left: 80.5%;

  top: 46.5%;

}



.marker-Korea {

  left: 82.5%;

  top: 37%;

}



.marker-australia {

  left: 88%;

  top: 78%;

}



.marker-bangladesh {

  left: 74%;

  top: 41%;

}



.marker-indonesia {

  left: 85%;

  top: 61%;

}



.marker-jordan {

  left: 63%;

  top: 36%;

}



.marker-luxemburg {

  left: 44.5%;

  top: 18%;

}



.marker-malta {

  left: 51.5%;

  top: 32%;

}



.marker-mauritius {

  left: 60%;

  top: 76%;

}



.marker-mexico {

  left: 16%;

  top: 46%;

}



.marker-spain {

  left: 43%;

  top: 26%;

}



.marker-qatar {

  left: 66%;

  top: 32%;

}



.marker-kenya {

  left: 60%;

  top: 56%;

}



.marker-uganda {

  left: 56%;

  top: 56%;

}



.marker-argentina {

  left: 26%;

  top: 87%;

}



.marker-bulgaria {

  left: 56%;

  top: 32%;

}



.marker-canada {

  left: 16%;

  top: 20%;

}



.marker-czech-republic {

  left: 48%;

  top: 20%;

}



.marker-germany {

  left: 46%;

  top: 20%;

}



.marker-hong-kong {

  left: 77%;

  top: 40%;

}



.marker-iran {

  left: 68%;

  top: 35%;

}



.marker-netherland {

  left: 43%;

  top: 33%;

}



.marker-poland {

  left: 46%;

  top: 24%;

}



.marker-singapore {

  left: 80%;

  top: 63%;

}



.marker-taiwan {

  left: 80%;

  top: 40%;

}



.marker-turkey {

  left: 53%;

  top: 32%;

}



.marker-united-kingdom {

  left: 44%;

  top: 33%;

}



.marker-ukraine {

  left: 51.5%;

  top: 20%;

}



.marker-usa {

  left: 12%;

  top: 35%;

}



.marker-vietnam {

  left: 80.5%;

  top: 52%;

}



.animated {

  animation-duration: 1s;

  animation-fill-mode: both;

}



@keyframes bounceInDown {

  0% {

    opacity: 0;

    transform: translateY(-2000px);

  }



  60% {

    opacity: 1;

    transform: translateY(30px);

  }



  80% {

    transform: translateY(-10px);

  }



  100% {

    transform: translateY(0);

  }

}



.bounceInDown {

  animation-name: bounceInDown;

}



#map-info {

  position: absolute;

  background: #000;

  color: #fff;

  padding: 1em;

  z-index: 3;

  max-width: 200px;

  border-radius: 5px;

}



#map-info h1 {

  font-size: 1em;

  margin: 0 0 0.5em;

}



#map-info a {

  color: yellow;

  font-size: 0.8em;

  text-decoration: underline;

}



#map-info .close-btn {

  position: absolute;

  top: 5px;

  right: 8px;

  cursor: pointer;

  font-size: 1em;

}



.map {

  position: relative;

  max-width: 70%;

  margin: 0 auto;

}



.map img {

  width: 100%;

  height: auto;

  display: block;

}



.map-pins {

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

}



.map-location-marker {

  position: absolute;

  width: 30px;

  height: 30px;

  background: none !important;

}



.marker-san-francisco {

  left: 12%;

  top: 40%;

}



.marker-denver {

  left: 21%;

  top: 42%;

}



.pin {

  width: 24px;

  height: 24px;

  border-radius: 50% 50% 50% 0;

  background: var(--main-color);

  position: absolute;

  transform: rotate(-45deg);

  left: 50%;

  top: 50%;

  margin: -20px 0 0 -20px;

}



.pin:after {

  content: "";

  width: 12px;

  height: 12px;

  margin: 6px 0 0 -6px;

  background: #e6e6e6;

  position: absolute;

  border-radius: 50%;

}



.bounce {

  animation-name: bounce;

  animation-fill-mode: both;

  animation-duration: 1s;

}



.pulse {

  background: #d6d4d4;

  border-radius: 50%;

  height: 14px;

  width: 14px;

  position: absolute;

  left: 50%;

  top: 50%;

  margin: 6px 0px 0px -15px;

  transform: rotateX(55deg);

  z-index: -2;

}



.pulse:after {

  content: "";

  border-radius: 50%;

  height: 40px;

  width: 40px;

  position: absolute;

  margin: -17px 0 0 -18px;

  animation: pulsate 1s ease-out;

  animation-iteration-count: infinite;

  opacity: 0;

  box-shadow: 0 0 1px 2px #33582F;

  animation-delay: 1.1s;

}



.map-tooltip {

  background: red;

}



@keyframes pulsate {

  0% {

    transform: scale(0.1, 0.1);

    opacity: 0;

  }



  50% {

    opacity: 1;

  }



  100% {

    transform: scale(1.2, 1.2);

    opacity: 0;

  }

}



@keyframes bounce {

  0% {

    opacity: 0;

    transform: translateY(-2000px) rotate(-45deg);

  }



  60% {

    opacity: 1;

    transform: translateY(30px) rotate(-45deg);

  }



  80% {

    transform: translateY(-10px) rotate(-45deg);

  }



  100% {

    transform: translateY(0) rotate(-45deg);

  }

}



.map-tooltip {

  position: absolute;

  background: rgba(0, 0, 0, 0.75);

  color: #fff;

  padding: 5px 10px;

  font-size: 0.75em;

  border-radius: 4px;

  white-space: nowrap;

  z-index: 100;

  pointer-events: none;

  transform: translate(-50%, -100%);

  margin-top: -10px;

  opacity: 0;

  transition: opacity 0.2s ease-in-out;

}



.peace_dev_center_bx {

  border-left: 1px solid var(--line);

  border-right: 1px solid var(--line);

  border-top: 1px solid var(--line);

  padding: 25px 15px;

}



.peace_dev_bx {

  border-top: 1px solid var(--line);

  padding: 25px;

}



.peace_dev_bx h4,

.peace_dev_center_bx h4 {

  font-size: 20px;

}



.italic_sty {

  font-style: italic;

}



.italic_sty span {

  font-weight: 600;

}



.management_sec1 {

  background: var(--white);

}



.resources_sec_heading_left .quote_text {

  background: var(--overlay-main-color);

  padding: 15px 10px;

  font-style: italic;

  font-weight: 600;

  font-size: 14px !important;

}



.resources_sec_heading_left .author {

  font-size: 14px !important;

  float: right;

}





.contact_sec {

  background: #f9f9f9;

  padding: 100px 0px;

}



.contact_sec_left h2 {

  font-size: 2rem;

  line-height: 1.3;

  color: #0d1c2e;

}



.contact_sec_left p {

  font-size: 15px;

}



.contact_sec_right {

  border-radius: 15px;

}



.btn-primary {

  background: #007bff;

  border: none;

  border-radius: 50px;

  padding: 10px;

  font-weight: 500;

}



.contact_sec_left h2 span {

  color: var(--main-color);

}



.con_add i {

  color: var(--main-color);

}



.contact_sec_right h5 {

  margin-bottom: 20px;

  line-height: 140%;

}



.contact_sec_right h5 span {

  color: var(--main-color);

}



.con_add {

  margin-top: 40px;

}



.con_add h6 {

  font-size: 20px;

}



.con_add small {

  font-weight: 600;

  margin-bottom: 5px;

}



.contact_sec_right form input,

.contact_sec_right form textarea {

  font-size: 14px;

  padding: 10px;

}



.contact_sec_right form button {

  border: none;

  width: 100%;

}



.small-heading {

  font-weight: 600;

  color: var(--black) !important;

  margin-bottom: 5px;

}



.contact_sec_2 {

  padding: 80px 0px;

  background: var(--white);

}



.contact_sec_2_row {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

}



.contact_sec_2_column {

  width: 31%;

}



.contact_sec_2 .custom-card {

  background: var(--white);

  text-align: center;

  padding: 20px 10px;

  display: flex;

  align-items: center;

  margin: 10px 5px;

  width:24%;

  position: relative;

  overflow: hidden;

}



/* .contact_sec_2 .custom-card i {

    color: var(--main-color);

    font-size: 100px;

    margin-right: 10px;

    opacity: 0.2;

    position: absolute;

    left: -20px;

    bottom: -40px;

} */





.contact_sec_2 .custom-card img {

  margin-right: 10px;

  opacity: 0.2;

  position: absolute;

  left: 0px;

  bottom: 0px;

  width: 97px;

}



.contact_sec_2 .custom-card p {

  margin-top: 10px;

}



.contact_sec_2 h2 {

  text-align: center;

  font-size: 34px;

  margin-bottom: 50px;

}



.contact_sec_2 h2 span {

  color: var(--main-color);

}



.list-unstyled li {

  text-align: left;

  z-index: 5;

  position: relative;

}



.list-unstyled li i {

  color: var(--main-color) !important;

  z-index: 5;

  position: relative;

}



.contact_sec_2 .custom-card p {

  margin-top: 10px;

  margin-left:50px;

  text-align: left;

}







.secheading .bg-amber-50 {

  background-color: #f9f9f9;

  border: 1px solid #e9e9e9;

}



.secheading .bg-amber-50 p strong {

  color: var(--main-color);

}



.product_specification tbody tr td {

  color: rgba(0, 0, 0, 0.8) !important;

  font-size: 14px;

  padding: 15px 10px !important;

}



.product_specification thead tr th {

  padding: 8px 12px !important;

  font-size: 14px;

}



.mds_msg {

  background: var(--white);

  padding: 40px 25px;

}



.mds_msg h4 {

  font-size: 28px;

  margin-bottom: 20px;

}



.mds_msg h4 span {

  color: var(--main-color);

}



.mds_msg .bg_highlited {

  background: var(--overlay-main-color);

  padding: 10px;

  font-weight: 500;

}



.mds_msg_content {

  text-align: left;

}



.mds_msg .designation {

  font-style: italic;

  font-size: 14px;

}



.mds_msg_left h6 {

  color: var(--main-color);

  font-size: 24px;

}

.md_names{

      background: #fff3e4;

    padding: 10px 0px;

    margin: -15px 15px 0px 15px;

    position: relative;}

    .md_names p{margin-bottom: 0px;}

    .chairman_text{padding: 25px;}



.subsidiaries_sec3 .custom-card h3 {

  font-size: 24px;

}

.peace_bx{margin-top: 20px;}



.product_specification .card h3 {

  font-size: 16px;

  line-height: 150%;

}



.product_sec .author img {

  width: 28px;

}



.specification_2 {

  margin-top: 80px;

}



.table-responsive {

  overflow-x: unset;

}



.ms_sty {

  padding: 100px 0px;

  background: #f9f9f9;

}



.mision_vision_img {

  background-size: cover !important;

  height: 350px;

  width: 100%;

  border-radius: 10px;

}



.vision-mission-card {

  padding: 20px;

}



.mision_vision_data {

  height: 100%;

  display: flex;

  align-items: center;

  border-radius: 10px;

}



.mision_vision_data.bg1 {

  background: #ffe9cd;

}



.mision_vision_data.bg2 {

  background: #F0E7D8;

}



.mision_vision_heading h3 {

  font-size: 28px;

  text-align: center;

  line-height: 150%;

}



.mision_vision_heading h3 span {

  color: var(--main-color);

  display: block;

}



.mision_vision_heading {

  margin-bottom: 50px;

}



.mission_vision_sec {

  padding: 100px 0px;

  background: var(--white);

}



.awards_slider_sec {

  margin: 0px;

}



.management_advisors_sec {

  padding: 100px 0px;

  background: var(--white);

}



.awars_slider_img_single img {

  object-fit: cover;

  height: 150px;

}



.section-title {

  text-align: center;

  font-weight: 600;

  font-size: 2rem;

  margin-bottom: 2rem;

  color: #222;

}



.card-custom {

  position: relative;

  background: #fff;

  border-radius: 10px;

  padding: 25px 20px 30px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s;

  z-index: 1;

  overflow: visible;

  min-height: 367px;

}



.card-custom:hover {

  transform: translateY(-5px);

}



.mission_vission_area {

  margin-bottom: 50px;

}



/* .card-custom.mission::before {

  content: '';

  position: absolute;

  left: 5%;

  right: 5%;

  bottom: -15px;

  height: 150px; 

  background: var(--main-color);

  width: 90%;

  border-radius: 0 0 50px 50px;

  z-index: -1; 

} */

/* .card-custom.mission::after {

  content: '';

  position: absolute;

  left: 0%;

  top: 0%;

  width: 100%;

  height: 100%;

  background: var(--white);

  border-radius: 10px;

  z-index: 2;

  bottom: 0%;

} */



/* .card-custom.vision::before {

  content: '';

  position: absolute;

  left: 5%;

  right: 5%;

  bottom: -15px;

  height: 150px; 

  background: #f78400;

  width: 90%;

  border-radius: 0 0 50px 50px;

  z-index: -1; 

} */

/* .card-custom.vision::after {

  content: '';

  position: absolute;

  left: 0%;

  top: 0%;

  width: 100%;

  height: 100%;

  background: var(--white);

  border-radius: 10px;

  z-index: 2;

  bottom: 0%;

} */



/* Icon styles */

/* .icon-circle {

  width: 95px;

  height: 95px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  color: #fff;

  font-size: 32px;

  position: absolute;

  top: -40px;

  left: 25px;

  z-index: 5;

  border: 15px solid #fff;

  box-shadow: 0 -21px 22px -14px rgba(0, 0, 0, 0.15);

} */



.icon-circle {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  margin: 0px 0px 20px 0px;

  color: #fff;

  font-size: 32px;

  position: relative;

  z-index: 5;



}



.mission .icon-circle {

  background-color: var(--main-color);

}



.vision .icon-circle {

  background-color: var(--main-color);

}



/* Text styles */

.card-custom h4 {

  font-weight: 600;

  margin-bottom: 15px;

  z-index: 5;

}



.mission h4 {

  color: var(--main-color);

  z-index: 5;

  position: relative;

}



.vision h4 {

  color: var(--main-color);

  z-index: 5;

  position: relative;

}



.card-custom p {

  color: #555;

  font-size: 0.95rem;

  line-height: 1.6;

  z-index: 5;

  position: relative;

}



.mission_vission_area .section-title {

  margin-bottom: 50px;

  font-size: 34px;

}



.mission_vission_area .section-title span {

  color: var(--main-color);

}



.card-custom .out_sty {

  position: relative;

  z-index: 5;

  margin-left: -20px;

}



.card-custom .out_sty .badge {

  background: var(--main-color);

  border-radius: 0px;

  padding: 8px 25px;

}







.social_sec4 {

  padding: 100px 0px;

  background: var(--white);

}



.social_sec4 .custom-card h3 {

  font-size: 28px;

}



.social_sec4 .custom-card h3 span {

  color: var(--main-color);

}



.social_sec4 h3 {

  text-align: center;

  font-size: 34px;

  margin-bottom: 50px;

}



.social_sec4 h3 span {

  color: var(--main-color);

}





.awards_img_all {

  column-count: 3;

  column-gap: 12px;

}



.awards_img_all .awards_img_single {

  break-inside: avoid;

  margin-bottom: 12px;

}



.awards_img_all img {

  width: 100%;

  display: block;

  border-radius: 5px;

}



.awards_left p {

  font-size: 20px;

  font-style: italic;

  font-weight: 500;

  text-align: left;

}



.awards_left h4 {

  color: var(--main-color);

}





.awards {

  padding: 100px 0px 50px 0px;

}



.home_sec2_head {

  margin-bottom: 50px;

}



.home_sec2_head h3 {

  text-align: center;

  font-size: 34px;

}



.home_sec2_head h3 span {

  color: var(--main-color);

}





.product_spec_modal .modal-dialog {

  max-width: 80%;

}









.product_spec_modal tbody tr td {

  color: rgba(0, 0, 0, 0.8) !important;

  font-size: 12px;

  padding: 15px 10px !important;

}



.product_spec_modal thead tr th {

  padding: 8px 12px !important;

  font-size: 14px;

}



.product_spec_modal .card h3 {

  font-size: 14px;

  line-height: 150%;

  text-align: center;

}



.product_spec_modal .card-header {

  background: var(--main-color);

  min-height: 52px;

  display: flex;

  justify-content: center;

  align-items: center;

}



.pro_global,

.product_sec2 {

  background: #fff !important;

}



.contactfrm .iti__selected-flag {

  height: 43px !important;

}



.management_sec1_heading p {

  text-align: center;

}



.management_sec1_heading .resources_sec_heading_right {

  padding-left: 0px;

  border-left: 0px;

}



.contact_sec_left iframe {

  width: 100%;

  margin-top: 35px

}



.lagacy_timeline_sec .secheading p {

  text-align: center;

}



.hero-content p,

.chairman_msg .secheading p {

  text-align: center;

}



.home_sec_2 a {

  text-decoration: none;

}



.ind_sec {

  background: #fff;

  padding: 100px;

}



.iti--separate-dial-code {

  width: 100%;

}













.map-location-marker {

  opacity: 0;                           

  will-change: transform, opacity;     

  backface-visibility: hidden;

  transform: translateY(-40px);         

}



.map-location-marker.is-in {

  animation-name: bounceInDown;        

  animation-duration: var(--dur, 1.6s); 

  animation-delay: var(--delay, 0ms);  

  animation-timing-function: cubic-bezier(.22,.61,.36,1); 

  animation-fill-mode: both;

  opacity: 1;

}





.map-location-marker .pin.bounce {

  animation-duration: 1.2s;

}





.dropdown-toggle::after{border-top:0.6em solid;

    border-right: 0.6em solid transparent;

    border-left:0.6em solid transparent; position:relative; top:4px;}

	

	









/*===================10-11-2025=======================*/

img.funatextlogoadjust{float: left;

  width: 110px;

  border: 1px solid #ccc;

  margin: 5px 15px 15px 0;}

  

  img.tipstextlogoadjust{float: left;

  width: 155px;

  border: 1px solid #ccc;

  margin: 5px 15px 15px 0;}



  .latestaddhdg h2{font-size: 28px;}

  .latestaddhdg h2 span{color: #C68E2B;}





  .lagacy_img_all {

  column-count: 2;

  column-gap: 12px;

}



.lagacy_img_all .lagacy_img_single {

  break-inside: avoid;

  margin-bottom: 12px;

}



.lagacy_img_all img {

  width: 100%;

  display: block;

  border-radius: 5px;

}

.lagacy1_con .mds_msg_content{padding: 40px 10px 0px 10px;}
.lagacy1_con .mds_msg_content p{text-align: center;}

.lagacy1_con{margin-top: 80px;}

.lagacy1_con img {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.business_sec{padding: 80px 0px;position: relative;}
.business_sec:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(198, 142, 43, 0.10) 0%, rgba(198, 142, 43, 0.1) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.business_sec h2{font-size: 34px;}
.miracle_life_sec{background: var(--white);padding-top: 80px;}
.miracle_life_sec_con{background: var(--white);padding: 50px;}
.miracle_life_sec_con h3{font-size: 45px;}
.miracle_life_sec_con h3 span{color: var(--main-color) !important;}
.business_sec_left{display: flex;align-items: center;}
.business_sec_left h2 span{color: var(--main-color);}


.miracle_life_sec .focus_txt{font-size: 16px;font-weight: 600;color: var(--black) !important;}

.miracle_life_sec .quote_txt{background: linear-gradient(135deg, #fff8f5 0%, #fef5f1 100%);
    border-left: 5px solid var(--main-color);
    border-radius: 15px;
    padding: 35px 40px;
    font-weight: 600;
    margin: 30px 0px;
    position: relative;
    transition: all 0.3s ease;}


  .miracle_life_sec .quote_txt:before{content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 25px;
  left: -18px;
  background: var(--main-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);}

.business_sec_right {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business_sec_right:before{content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3498db 0%, #e67e22 100%);}


  .business_sec  .title-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--main-color) 0%, #ffa200 100%);
  color: white;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.lagacy_sec1_heading{text-align: center;}
.lagacy_sec1_heading h2{font-size: 45px;}
.lagacy_sec1_heading h2 span{color: var(--main-color);}
.lagacy_sec1_heading h3{color: var(--main-color);font-weight: 400;margin-bottom: 40px;}
.lagacy_sec1_heading p span{font-weight: 600;color: var(--black);}


@media (prefers-reduced-motion: reduce) {

  .map-location-marker,

  .map-location-marker.is-in,

  .map-location-marker .pin.bounce {

    animation: none !important;

    transform: none !important;

    opacity: 1 !important;

  }

}







