/* bootstrap strat */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
}

p {
  font-family: var(--font-s);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

/* 
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #cb188b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 1;
}

.custom-cursor.dissolve {
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
}

@media screen and (max-width:992px){
	.custom-cursor {
		display:none;
	}
} */

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

.px-150 {
  padding: 0 150px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */

:root {
  --font-p: "Poppins", sans-serif;
  --p-color: #fff;
  --gray: #555555;
  --black: #000000;
  --sec-color: #c92728;
  --background: #ffffff;
  --light: #e6baba;
  --dark: #c92728;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--dark);
    border-radius: 6px;
    border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--sec-color);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--dark) var(--background);
}

@supports (-ms-overflow-style: none) {
    * {
        -ms-overflow-style: scrollbar;
    }
}


a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 135px;
}


html,
body {
  font-family: var(--font-p);
  background-color: var(--background);
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.site-header,
#masthead2 {
  background-color: var(--background);
  color: var(--black);
  transition: all 0.4s ease;
  backdrop-filter: none;
}

.site-header.scrolled::before,
#masthead2.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 1, 31, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.container-custom-gap {
  padding-left: clamp(1rem, 7vw, 160px);
  padding-right: clamp(1rem, 7vw, 160px);
  width: 100%;
  max-width: 100%;
}

/* Main menu links only */
.nav>li>a {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--black) !important;
  font-size: clamp(15px, 3vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;
  /* allows underline to match text only */
}

.nav>li>a:hover {
  color: var(--dark) !important;
}

/* Underline animation ONLY for top-level links */
.nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--dark);
  transition: width 0.3s ease-in-out;
}

.nav>li>a:hover::after {
  width: 100%;
}

/* Active state */
.nav>li.current-menu-item>a,
.nav>li.current_page_item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current_page_ancestor>a {
  color: var(--dark) !important;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  width: 100%;
  color: var(--dark);
}


.nav>li.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  font-size: 14px;
  margin-left: 6px;
  position: relative;
  top: -2px;
  color: #000;
  background-color: transparent !important;
  transition: color 0.3s ease;
}


.nav>li.menu-item-has-children:hover>a::after {
  color: var(--dark);
}


.menu-gap {
  gap: 2rem;
}



.nav .sub-menu {
  background-color: #c92728;
	color:#fff !important;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 190px;
  position: absolute;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav li {
  position: relative;
}

.nav .sub-menu li {
  list-style: none;
  transition:all 0.3s ease-in-out;
}
.nav .sub-menu a:hover {
	background-color: #7e0303 !important;
}

.nav .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--background) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu a:hover {
  color: var(--background) !important;
  background-color: var(--dark);
}

.nav .sub-menu li.current-menu-item>a,
.nav .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--dark);
}

.nav .sub-menu .sub-menu {
  background-color: var(--sec-color);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav .sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav .sub-menu .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

.nav .sub-menu .sub-menu li.current-menu-item>a,
.nav .sub-menu .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--dark);
}









@media (min-width: 1250px) {
  .menu-gap {
    gap: 2.5rem;
  }
}

@media (min-width: 1650px) {
  .menu-gap {
    gap: 3rem;
  }
}

@media (min-width: 1900px) {
  .menu-gap {
    gap: 4rem;
  }
}

.custom-logo {
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.custom-logo {
  transition: all 0.3s ease-in-out;
}

.site-header .custom-logo {
  width: 312px;
  padding: 20px 0 !important;
}

.site-header.scrolled .custom-logo {
  width: 250px;
  padding: 10px 0 !important;
}

#masthead2 .custom-logo {
  width: 180px;
  padding: 20px 0;
}

#masthead2.scrolled .custom-logo {
  width: 150px;
  padding: 15px 0;
}

.site-header .custom-logo:hover,
#masthead2 .custom-logo:hover {
  filter: drop-shadow(0 0 2px var(--sec-color)) drop-shadow(0 0 0px var(--sec-color));
}

#masthead.scrolled::after,
#masthead2.scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 230, 211, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

#masthead,
#masthead2 {

  z-index: 10;
}


.button1 {
  position: relative;
  overflow: hidden;
  color: var(--dark);
  padding: 10px 20px;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 15px;
  background-color: #fff;
  z-index: 1;
  transition: color 0.4s ease;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 262px;
  min-height: 57px;
}

.button1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  aspect-ratio: 1 / 1;
  background-color: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease;
  z-index: -1;
}

.button1:hover {
  color: var(--background);
}

.button1:hover::before {
  width: 500px;
}

.button2 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--background) !important;
  border: 2px solid var(--dark) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 3vw, 18px) !important;
  border-radius: 15px !important;
  background-color: var(--dark) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 210px;
  min-height: 65px;
  text-transform: uppercase;
}

.button2::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--background) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button2:hover {
  color: var(--black) !important;
  background-color: transparent !important;
}

.button2:hover::before {
  width: 500px !important;
}


/* Home design */

.home-banner-slider {
  position: relative;
  overflow: hidden;
}

.home-banner-slider .slick-slide {
  display: flex !important;
  align-items: center;
}

.banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 817px !important;
  display: flex;
  align-items: center;
}

.banner-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.144);
  z-index: 0;
}


.banner-content> div > p {
  position: relative;
  z-index: 2;
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 500;
  max-width: 650px;
  color: #212121;
}

.banner-content h2 {
  font-family: var(--font-p);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
  color: #131e2d;
}

.banner-content h1 {
  font-family: var(--font-p);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.1;
	margin-bottom:10px;
}

.banner-person {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: auto;
  max-width: 85%;
}

.banner-person img {
  width: auto;
  max-width: 90%;
  height: auto;
  display: block;
}


/* === Scoped to Home Banner Only === */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #131e2d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.custom-arrow:hover {
  background: #2a3a52;
  color: #fff;
}


.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.certificate-section .prev {
  left: 0;
}

.certificate-section .next {
  right: 0;
}

/* Prevent default Slick pseudo elements from showing (in case they're applied) */
.prev:before,
.next:before {
  content: none !important;
}


/* Custom Dots */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #131e2d;
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.slick-dots li.slick-active button:before {
  color: #131e2d;
  opacity: 1;
}

.slick-dots li button:hover:before {
  color: #2a3a52;
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slick-dots {
  bottom: 20px;
}


/* Base dot color */
.slick-dots li button {
  position: relative;
  width: 20px;
  height: 8px;
  border-radius: 10px;
  background: #c92728;
  /* base color */
  padding: 0;
  border: none;
  overflow: hidden;
}

/* Fill layer */
.slick-dots li button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #131e2d;
  /* fill color */
  border-radius: 10px;
  transform-origin: left;
}

/* Animate fill on active dot */
.slick-dots li.slick-active button:after {
  animation: fillDot 5s linear forwards;
}

/* Fill animation keyframes */
@keyframes fillDot {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Hover effect */
.slick-dots li button:hover:after {
  width: 100%;
}








.home-about-section {
  background: #ffffff;
  position: relative;
  min-height: 1050px;
  overflow-y: visible;
}


.background-big-text {
  font-family: var(--font-p);
  font-weight: bold;
  font-size: clamp(80px, 10vw, 177px);
  font-weight: bold;
  color: var(--dark);
  opacity: 0.08 !important;
  line-height: 0.8;
  z-index: 0;
  /* padding: 80px 0 0 60px; */
  pointer-events: none;
}

.highlight,
.main {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 50px);
}

.main-heading{
    font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(35px, 3vw, 50px);
  color: var(--dark);
}

.highlight {
  color: var(--dark);
}

.main {
  color: #141e2d;
}
.read-btn{
color: var(--dark);
	z-index:99;
	position:relative;
}


.about-description p {
  font-family: var(--font-p);
  font-weight: 500;
  color: #555555;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
  max-width: 700px;
}

.mission-description p{
	font-family: var(--font-p);
  font-weight: 700;
  color: #555555;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
	text-align:center;
}

.about-images {
  position: relative;
  gap: 1rem;
}

.about-images .main-image {
  border-radius: 20px;
  width: 60%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
}

.about-images .secondary-image {
  border-radius: 20px;
  width: 70%;
  height: auto;
  object-fit: cover;
  position: absolute;
  bottom: -160px;
  border: 10px solid #fff;
  right: 25%;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
}



.quote-img {
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
  width: 90%;
  height: auto;
}

.quote-heading{
	margin-top:10px;
	font-size: clamp(19px,3vw,24px);
  color: var(--dark);
  font-weight: 600;
}

.quote-description p{
  font-size: clamp(14px,3vw,18px);
  color: var(--gray);
  font-weight: 400;
}

.quote-description p a{
	color: var(--dark);
}


.quote-section {
  background-color: #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quote-section {
  scroll-margin-top: 150px;
}



.wpcf7 form .wpcf7-form-control:not(.wpcf7-submit) {
  background: #fff;
  border: 2px solid transparent;
  color: #555;
  border-radius: 10px;
  padding: 12px 20px !important;
  width: 100%;
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 16px);
  font-weight: normal;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	height:50px;
}

.wpcf7 form .wpcf7-form-control::placeholder {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 16px);
  font-weight: normal;
  color: #555;
}

/* keep textarea’s custom radius */
.wpcf7 form textarea.wpcf7-form-control {
  border-radius: 10px;
  min-height: 160px;
  resize: none;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}


.wpcf7-form .wpcf7-form-control:focus:not(.wpcf7-submit) {
  outline: none;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
  transition: all 0.3s ease-in-out;
}

.wpcf7-form textarea.wpcf7-form-control:focus {
  border-radius: 25px;
}


.team-section {
  position: relative;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-section .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, #c92728 47%, #c9272870 100%);
  opacity: 1;
  z-index: 1;
}

.team-section .container {
  position: relative;
  z-index: 2;
}



.team-desc,
.main-para {
  font-family: var(--font-p);
  font-size: clamp(21px, 3vw, 24px);
  color: #fff;
  font-weight: 500;
}



/* About page */

.about-top-section {
  background-color: #fff;

}

.about-top-section .about-heading {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(25px, 3vw, 50px);
  color: var(--dark);
}


.about-top-section .about-heading strong {
  color: #000;
}

.about-details p {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray);
}


.about-details a {
  color: var(--sec-color);
	transition:all 0.3s ease-in-out;
}

.about-details a:hover {
	color: var(--black);
}

.capability_heading{
	  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 40px);
  color: var(--sec-color);
}

.product_list_heading p{
	  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 40px);
  color: var(--background);
}

.product_list_heading a{
	color:#ecd30b;
	transition:all 0.3s ease-in-out;
}

.product_list_heading a:hover{
	color:#000;
}

.capability_heading a{
	color:var(--black);
	transition:all 0.3s ease-in-out;
}

.capability_heading a:hover{
	color:var(--gray);
}

.capability_section{
	height:300px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.certificate-section {
  background-color: #f3f3f3;
}

.para,
.para p {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray);
  max-width: 80%;
  line-height: 1.6;
}


.logos {
  border: 3px solid #131e2d;
  border-radius: 12px;
  aspect-ratio: 1/1;
  width: 340px;
}

.audit-logo {
  border: 3px solid #131e2d;
  border-radius: 12px;
  width: 240px;
	padding:10px;
}
.facility_section{
  min-height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted_section{
	 min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.awards_section {
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.description p {
  font-family: var(--font-p);
  font-weight: 500;
  color: #fff;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
}

.timeline-main-title h2{
font-family: var(--font-p);
  font-weight: 600;
  color: var(--black);
	text-transform:capitalize;
  font-size: clamp(18px, 3vw, 30px);
	max-width:1000px;
	margin:0 auto;
}



.award-card {
  border: 3px solid #131e2d;
  border-radius: 12px;
  width: 250px;
  aspect-ratio: 1/1;
}
/* 
.award-card img{
	aspect-ratio: 1/1;
	object-fit:cover;
} */

.facility_card{
	  border: 3px solid #131e2d;
  border-radius: 12px;
  width: 250px;
  aspect-ratio: 1/1;
}
.facility_card img{
	aspect-ratio: 1/1;
	object-fit:cover;
}
.trusted_card{
	border: 3px solid #131e2d;
  border-radius: 12px;
  width: 250px;
}
.trusted_card img{
	object-fit:cover;
}

@media (min-width:1400px) and (max-width:1920px) {
  .audit-slider {
    max-width: 80%;
    margin: 0 auto;
  }

  .about-details p {
    max-width: 80%;
    margin: 0 auto;
  }
}



/* Capability */

.image-wrapper {
  border-radius: 20px;
}


.capability-section .card {
  border: none !important;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.capability-section .card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(201, 39, 40, 0.25),
    0 5px 10px rgba(201, 39, 40, 0.2);
}

.capability-section .card-img-top {
  border-radius: 20px;
  aspect-ratio: 16/9;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
  transition: transform 0.4s ease;
  border: 5px solid #131e2d;
}

.capability-section .card:hover .card-img-top {
  transform: scale(1.02);
}



.card-title {
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 36px);
}

.card-text, .card-text p{
  font-weight: 500;
  color: var(--gray);
  font-size: clamp(14px, 3vw, 18px);
}

.capability-single-section {
  padding: 60px 15px;
}

.capability-single-image img {
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
  border: 5px solid #131e2d;
  aspect-ratio:16/10;
}


.capability-single-content .capability-excerpt p {
  font-weight: 500;
  color: var(--gray);
  font-size: clamp(14px, 3vw, 18px);
}

.capability-single-content .capability-content p {
  margin-bottom: 1.1rem;
  font-weight: 400;
  color: var(--gray);
  font-size: clamp(14px, 3vw, 18px);
}

.portfolio_heading p {
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--dark);
}

.portfolio_subheading p {
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray);
  max-width: 80%;
  margin: 0 auto;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: center;
}

.portfolio-card img {
    transition: all 0.4s ease-in-out;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

/* Overlay background gradient behind the title */
.portfolio-card-overlay {
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

/* Title always visible (until hover hides it) */
.portfolio-title {
    transition: all 0.4s ease-in-out;
}

/* FULL overlay hidden initially */
.portfolio-extra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;               
     background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.6) 30%,
        rgba(0,0,0,1) 100%);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
aspect-ratio:1/1;
    /* animation state */
    opacity: 0;
    transform: translateY(100%); /* fully hidden below */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* On hover → slide up and fade in */
.portfolio-card:hover .portfolio-extra {
    opacity: 1;
    transform: translateY(0);
}

/* Hide the top title when hovering */
.portfolio-card:hover .portfolio-title {
    opacity: 0;  /* smoother than display:none */
    transition: opacity 0.3s ease;
}


.portfolio-extra p{
  font-weight: 400;
  color: #fff;
  font-size: 16px;
	line-height: clamp(1.3,4vw,2);
  padding: 20px;
}


.read-more{
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}



.capability-card {
  border-radius: 15px;
  transition: transform 0.3s ease;
  
}
.capability-card img{
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(201, 39, 40, 0.15),
    0 2px 5px rgba(201, 39, 40, 0.15);
}

.capability-card h5{
  font-size: clamp(19px,3vw,24px);
  color: #131e2d;
  font-weight: 600;
}
.capability-card p{
  margin-top: 10px;
  font-size: clamp(14px,3vw,18px);
  color: var(--gray);
  font-weight: 400;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.capability-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-card p {
    flex-grow: 1; 
}




/* Banner */

/* Custom Banner Styles */
.custom-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: left;
  position: relative;
}

.custom-banner h1 {
  font-size: clamp(30px, 4vw, 60px);
  font-family: var(--font-p);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-banner .breadcrumbs p {
  font-size: 17px;
  font-family: var(--font-p);
  color: #555555;
  font-weight: 500;
}

#breadcrumbs a {
  color: var(--dark);
  transition: all 0.3s ease-in-out;
}

#breadcrumbs a:hover {
  color: #810909;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .custom-banner {
    height: 250px;
  }

}

/* Careers page design */

.careers-form-wrapper {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-repeat: no-repeat;
  min-height: 450px;
  border-radius: 15px;
}

.careers-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #646e7d;
  opacity: 0.8; /* adjust overlay transparency */
  z-index: 1;
}

.careers-form-wrapper .position-relative {
  z-index: 2;
}

.career-card{
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.career-title{
font-weight: 700;
  font-family: var(--font-p);
  font-size: clamp(18px, 3vw, 24px);
  color: #131e2d;
  margin-bottom: 0px;
}

.career-date{
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 16px);
  color: var(--gray);
  margin-bottom: 10px;
}

.career-excerpt{
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 16px);
  color: var(--gray);
  line-height: 1.6;

}
.career-read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #c92728;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;
}

.career-read-more i {
    margin-left: 5px;
}

.career-read-more:hover {
    color: #131e2d;
}


.codedropz-upload-wrapper{
  background-color: #fff;
  border-radius: 10px;
  padding:15px 10px;
}

.codedropz-upload-handler{
  margin-bottom: 0 !important;
}

.codedropz-upload-inner h3 {
    font-weight: 600;
    font-size: clamp(16px, 3vw, 20px);
    color: #131e2d;
    margin: 0;
}

.codedropz-upload-inner h3 .second-line, .codedropz-upload-inner span,.codedropz-btn-wrap a{
    font-weight: 400;
    font-size: clamp(12px, 2vw, 16px);
    color: #555555;
    transition: all 0.3s ease-in-out;
}
.codedropz-btn-wrap a:hover{
    color: var(--dark);
}

.dnd-upload-counter{
  font-weight: 600;
    font-size: clamp(14px, 3vw, 16px);
    color: #131e2d;
    margin: 0;
}

.dnd-upload-details .name span{
  font-weight: 500;
    font-size: clamp(14px, 3vw, 16px);
    color: var(--dark);
    margin: 0;
}
.dnd-upload-details .name em{
  font-weight: 700;
    font-size: clamp(12px, 2vw, 14px);
    color: #131e2d;
    margin: 0;
}

.wpcf7-submit:hover{
  background-color: #131e2d !important;
border: 2px solid #131e2d !important;
color: #fff !important;
}


/* Footer Design */


.site-footer {
  background-color: #141e2d;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

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

#menu-footer-menu .current-menu-item>a {
  color: #c92728 !important;
}

.footer-top {
  padding: 50px 0;
}


.footer-details,
.hours-text {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 25px 0 22px;
}

.footer-logo img {
  max-height: 70px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #c92728;
}

.footer-bottom {
  background-color: #c92728;
  text-align: center;
  padding: 15px 0;
  font-size: 15px;
}

.copyright,
.copyright a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 15px);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.copyright a:hover {
  color: #141e2d !important;
}



.entry-title {
  font-weight: 500;
  font-family: var(--font-h);
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
}

.site-main a {
  color: var(--sec-color);
  transition: all 0.3s ease-in-out;
}

.site-main a:hover {
  color: var(--p-color);
}

/* Style CF7 Success Message with line breaks */
.wpcf7-response-output {
    display: block;
    background: #e6ffed;         /* soft green background */
    border: 1px solid #34d399;   /* green border */
    color: #065f46;              /* dark green text */
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    line-height: 1.6;            /* spacing for <br> lines */
    box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
    animation: fadeInUp 0.5s ease forwards;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output{color:red;}
/* Optional subtle animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.no-careers-message {
  background: #f8f9fa;          /* soft gray background */
  border: 1px solid #e0e0e0;    /* subtle border */
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
}

.no-careers-message::before {
  content: "\f002"; /* FontAwesome search icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  font-size: 28px;
  color: #0073e6;
  margin-bottom: 10px;
}



/* Our Team */

/* =============================
   Our Team Section
============================= */
.our-team-section {
    background: linear-gradient(135deg, #ca2a2b 0%, #e05253 100%);
  position: relative;
	min-height:650px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.our-team-section h2 {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 35px);
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.our-team-section .highlight h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c92728; /* Accent color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.team-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid #f1f1f1;
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
  border-color: #c92728;
}

.team-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 12px;
  color: #222;
}

.team-card p {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 4px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .team-card img {
    width: 100px;
    height: 100px;
  }

  .our-team-section .highlight h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .team-card {
    padding: 15px;
  }
  .team-card h5 {
    font-size: 1rem;
  }
  .team-card p {
    font-size: 0.85rem;
  }
}

.history-details {
  background: #fff;
}

.history-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.history-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.history-details .client-logo img {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-details .client-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.history-card h4 {
font-family: var(--font-p);
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  font-size: clamp(18px, 3vw, 30px);
}

.history-card p {
font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray);
}
.history-card strong{
	color:#000;
}

.history-card .history-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  color: #ca2a2b; /* brand red */
  font-size: 2.5rem; /* for font awesome */
}

/* Responsive */
@media (max-width: 767px) {
  .history-card {
    padding: 20px;
  }
  .history-card h4 {
    font-size: 1.1rem;
  }
}