@import url("https://fonts.googleapis.com/css2?family=Thasadith:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* 2) Set on html & body (NOT .body) and inherit everywhere */

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
  --font-th:"Thasadith", serif;
  --text-color: #44464d;
  --heading-color: #0b091b;
  --box-color: #f52717;
  --red-color: #f52717;
  --count-text: #c1282a;
  --danger-color: #c82333;
  --black-color: #000000;
  --par-color: #595b62;
  --bx-color: #ffe6e6;
  --bxx-color-blue2: #e6f3ff;
  --bxx-color-blue1: #eef2f4;
  --color-footer: #A4B4C3A6;
  --color-white: #ffffff;
  --border-color: #719ED6;
  --bold-font: 900;
  --light-font: 400;
}

/* Custom styles for header */

html, body {
  font-family: var(--default-font);
  /* //font-weight: 700;  */
  color: var(--text-color);
}
/* -----------------------
------- Header -------
--------------------------- */
/*added first 3 classes to highlight the industries insights button by sb*/
.menu-item {
  align-items: center;
  text-decoration: none;
  font-weight: normal !important;
  color: inherit !important;
}
.menu-item:hover {
  color: red !important; /* Change on hover like other links */
}
.menu-item.active {
  color: red !important;
  font-weight: bold;
}

.navbar-brand img {
  height: 40px;
 
}
.navbar .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.navbar-logo {
  margin-right: 30px;
  margin-left: 10px;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--red-color) !important;
}

.dropdown-menu {
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.search {
  margin-left: 3rem;
}

.search-container {
  display: flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 25px;
  padding: 5px 10px;
  width: 280px;
}

.search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.search-icon {
  margin-right: 5px;
  color: gray;
}

.search-button {
  padding: 10px;
  background: linear-gradient(to bottom, var(--red-color), var(--count-text));
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-button img {
  width: 11px;
  height: 11px;
}

/* .navbar-collapse,
.navbar {
  text-align: center;
  justify-content: center;
} */

@media (max-width: 768px) {
  .search {
    margin-left: 0rem;
  }
}

@media (max-width: 576px) {
  .search-container {
    width: 100%;
    margin: 10px 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .search-input {
    font-size: 12px;
  }

  .search {
    margin-left: 0rem;
  }
}

/* ----------------------- --
-------new Footer-------
--------------------------- */
/* ---------------------------
   Footer — full styles
   Works with Bootstrap 5
   --------------------------- */

.site-footer {
  position: relative;
  color: #fff;
  padding: 22px 0 12px; /* reduced bottom space */
  font-weight: 300;
  overflow: hidden;
  /* background image (keep original path) with dark overlay */
  background-image: url("../img/Hcc Web Images/Tab Footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
}

.site-footer .container {
  position: relative;
  z-index: 2; /* content above overlay */
}

/* Top row: logo + intro and social */
.site-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 14px; */
  flex-wrap: wrap;
  /* margin-bottom: 6px; */
}

.site-footer .footer-content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0; /* allow text truncation/ellipsis */
  flex: 1 1 auto;
}

/* logo */
.site-footer .footer-logo img {
  display: block;
  max-height: 36px;
  width: auto;
}

/* intro paragraph */
.site-footer .footer-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #dcdcdc;
  overflow-wrap: break-word;
  /* allow it to shrink on very small screens */
  flex: 1 1 200px;
  min-width: 0;
}

/* social icons container */
.site-footer .footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  margin-left: 972px;
}

/* social icon style (rounded) */
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(132, 184, 221, 0.79);
  background: rgba(255,255,255,0.03);
  transition: all .18s ease;
}

.site-footer .footer-social a i {
  font-size: 14px;
  color: #ffffff;
}

/* hover for social icons */
.site-footer .footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  background: linear-gradient(180deg,#db291b 0%, #000 100%);
  border-color: white;
}

/* Middle sections — spacing trimmed */
.footer-sections-row {
  /* margin-top: 18px; */
  margin-bottom: 10px; /* reduced from large value */
}

/* each section */
.footer-section {
  min-width: 0;
  padding-left: 8px;
  padding-right: 8px;
}

/* titles */
/* .site-footer h6 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: .4px;
} */

/* list reset + links */
.site-footer .list {
  list-style: disc inside;
  padding-left: 6px; 
  margin: 0;
}

.site-footer .list li {
  margin-bottom: 8px;
}

.site-footer .list li a {
  color: #d0d0d0;
  /* font-size: 13px; */
  text-decoration: none;
}

.site-footer .list li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* contact text */
.mapcontact p {
  margin-bottom: 8px;
  color: #d6d6d6;
  font-size: 13px;
}

.mapcontact i {
  margin-right: 8px;
  color: #93b7e6; /* subtle accent */
}

/* map iframe */
.contact-map .map-frame,
.map-frame {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 10px;
  display: block;
}

/* Footer bottom bar (trimmed) */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
  /* margin-top: 10px; */
  font-size: 13px;
  color: #cfcfcf;
}

/* bottom links */
.footer-bottom a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* small-text utility */


/* -----------------------------
   Minimal responsive tweaks
   (mostly Bootstrap handles layout)
   ----------------------------- */

/* make top row center on very small screens */
@media (max-width: 480px) {
  .site-footer .footer-top {
    justify-content: center;
    text-align: center;
  }
  .footer-section{
    padding-left: 25px;
    padding-right: 25px;
  }
  .site-footer .footer-content {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
  }
  .site-footer .footer-intro {
    font-size: 13px;
  }
  .site-footer .footer-social {
    margin-top: 10px;
    margin-left: 307px;
  }
  .contact-map .map-frame {
    height: 100px;
  }
  .footer-bottom a{
    margin-left: 12px;
  }
}

/* slightly reduce icon sizes on smallest phones */
@media (max-width: 360px) {
  .site-footer .footer-social a { width: 32px; height: 32px; }
  .site-footer .footer-social a i { font-size: 12px; }
  .site-footer .footer-logo img { max-height: 30px; }
  .site-footer .footer-intro { font-size: 12px; }
}



/* -----------------------
------- Index Page -------
--------------------------- */
.redText{
  color: #db291b;
}
.index-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba( 0, 0, 0, 0.5 );
}
.index-hero-overlay-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba( 0, 0, 0, 0.3 );
}
.carousel-item {
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Slide backgrounds */
.slide-1 {
  background-image:  url('../img/hero-carousel/industryBankingBg.jpg');
}

.slide-2 {
  background-image: url('../img/hero-carousel/Sustainability.jpg');
}

.slide-3 {
  background-image: url('../img/hero-carousel/OutSourcing.jpg');
}

.slide-4 {
  background-image: url('../img/hero-carousel/index-carousel2.jpg');
}
.slide-5 {
  background-image: url('../img/hero-carousel/A-I1.jpg');
}


.carousel-caption {
  position: absolute;
  bottom: 20%;
  text-align: center;
  color: #fff;
}

.carousel-caption h1 {
  font-size: 3rem;
}

.carousel-caption p {
  font-size: 1.25rem;
}

.carousel-caption .btn {
  padding: 12px 25px;
  font-size: 1rem;
}
.tech-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 130px;
  width: 243px;
  padding-right: 0;
  margin-right: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tech-box img {
  max-height: 120px;
  max-width: 170px;
  }
.r-center {
 display: flex;
 flex-direction: row;
 justify-content: center;  
}
.Keyclinets-heading{
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 30px;
}
/* removed inline css  */
.bannerHead{
  /* color: #F52717; */
  color: #db291b; /* new color by marketing team*/
}
.abt-sec{
  display: flex;
  justify-content: center;
  align-items: center;
}
.font{
  font-size:1rem;
}
.bgc{
  background-color: #EFF1F3;
}
.hd-color{
  color:#141125;
}
.line{
  line-height: 1.5
}
.prof-imgsize
{
  width: 30px;
  height: 30px;
}
.font-cr{
  color:black;
  /* font-weight: var(--bold-font); */
}
.profi-top{
  margin-top: -95px;
}
.proff-space{
  margin-top: 120px;
}
.msgbox{
  width:100%;
  max-width: 100%;
}
.map-frame{
  border:2px solid rgba(0,0,0,0.2);
  height:200px;
}
.fmap{
  border:0;
  border-radius:20px;
}
.pr{
  padding-right: 35px;
}
 /* responsiveness for our technology partners  */

@media (max-width: 768px) {
  .tech-box {
    width: 150px;
    height: 90px;
  }
  .tech-box img {
    max-height: 60px;
    max-width: 129px;
  }
}
@media (max-width: 426px) {
  .tech-box {
    margin-right: 12px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 26px;
    width: 126px;
    height: 82px;
  }
  .tech-box img {
    max-height: 41px;
    max-width: 110px;
  }
}
@media  (max-width: 391px) {
  .tech-box {
    margin-right: 12px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 22px;
    width: 105px;
    height: 82px;
  }
  .tech-box img {
    /* max-height: 31px;
    max-width: 72px; */
     max-height: 45px;
     max-width: 97px;
  }
}
@media  (max-width: 367px) {
  .tech-box {
    margin-right: 12px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 15px;
    width: 97px;
    height: 82px;
  }
  .tech-box img {
    /* max-height: 28px;
    max-width: 71px; */
    max-height: 43px;
    max-width: 90px;
  }

  .services-sec{
    margin-right: 45px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-caption h1 {
      font-size: 2.5rem;
  }
  .carousel-caption p {
      font-size: 1rem;
  }
  .carousel-caption .btn {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
  .carousel-item {
      height: 70vh;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
      font-size: 1.8rem;
  }
  .carousel-caption p {
      font-size: 0.9rem;
  }
  .carousel-caption .btn {
      font-size: 0.8rem;
      padding: 8px 16px;
  }
}

/* Custom Indicators */

/* bottom indicators  */
/* Bottom-centered carousel indicators */
.carousel-indicators {
  position: absolute;        
  bottom: 100px;              /* mouse-scroll se upar */
  left: 50%;                
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;      
  gap: 10px;                
  margin: 0;                
  padding: 0;
  width: auto;              
  z-index: 2;                
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  background-color: gray;
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators .active {
  background-color: #d72323;
}

/* mouse scroll already correct hai */
.mouse-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}


/* ending bottom indicators */



/* .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}
.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 0px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top:10px;
  margin-bottom:10px;
  background-color: gray;
  opacity: 1;
  transition: 0.5s;
}*/

.carousel-indicators .active {
  background-color: #d72323;
}

.mouse-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}



/* About Session */
.index-about-section {
  padding: 50px 0;
  background-color: #EFF1F3;
}

.home-about-title {
  color: #0B091B;
  font-size: 2rem;
  /* font-weight: var(--bold-font); */
}

.index-about-text {
  color: #44464D;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.index-about-image {
  border-radius: 30px;
}

/* Mobile-Responsive Styles */
@media (max-width: 768px) {
  .home-about-title {
      font-size: 3rem;
  }
  .index-about-text {
      font-size: 1rem;
      padding: 0px 30px;
  }
  .index-about-section {
    padding: 25px 0;
  }
  .hero-height {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  .hero-height {
    height: 70vh;
  }
  .home-about-title {
      font-size: 2.5rem;
  }
  .index-about-text {
      font-size: 0.95rem;
      padding: 0px 30px;
  }
  .index-about-image {
      margin-top: 20px;
      border-radius: 35px;
  }
  .rounded-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
/* Key Numbers section */
.key-numbers-section {
  background: linear-gradient(to bottom, #f1f2f3 60%, #ffffff 40%);
}
.key-card {
  text-align: center;
  margin-bottom: 20px;
}

.key-number {
  font-size: 2rem;
  color: #d9534f;
}
.key-label {
  font-size: 1rem;
  color: #44464D;
}

.rounded-container {
  border-radius: 100px;
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Home Service */
.custom-box {
  height: 223px;
  width: 350px;
  /* height: 265px;
  width: 305px; */
border: 1px solid #ddd;
border-radius: 30px;

padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s;
}
.custom-box p{
  color: black;
}
.custom-box h5 {
color: #000000;
padding: 0px 0;
}
.custom-box:hover{
  background-image: url("../img//Hcc Web Images/Our Services.png");
  /* background-repeat: no-repeat; */
  background-size: cover;
  background-position: center;
}
.custom-box:hover h5 {
  color: white !important;
}
.custom-box:hover p {
  color: white !important;
}
.circle-button {
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
background-color: #d9534f;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.dropdown-content {
display: none;
}
.dropdown-content.show {
display: block;
}
.custom-box:hover {
transform: scale(1.05);
}

.custom-box img {
max-width: 50px;
margin-top: 10px;
}

.custom {
  height: 243px;
  width: 350px;
  border-radius: 30px;
  padding: 51px 34px;
  background-image: url("../img/Hcc Web Images/Our Services.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.custom-box-tech {
  transition: transform 0.2s;
  }
  .custom-box-tech:hover {
  transform: scale(1.05);
  }
  .custom h5 {

    margin-bottom: 20px;
    width: 308px;
  }

 
@media (min-width: 560px) and (max-width: 1200px) {
.explore {
  font-size: 28px;
  width: 197px;
}
}
/* @media (max-width:576px) {
  .custom-box{
    margin: 0px 10px;
  }
  .custom{
    margin: 0px 10px;
  }
} */


.custom:hover {
  transform: scale(1.05);
/* background: linear-gradient(135deg, #b00000, #ff5e5e); */
}

/* .custom h5 {

  margin-bottom: 20px;
  width: 308px;
} */

.custom .btn {
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
  border: none;
  border-radius: 26px;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color 0.2s;
}

.custom .btn:hover {
background-color: #b00000;
}

/* General styles for .custom and .custom-box */
 /* .custom, .custom-box {
  height: auto;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}  */

/* .custom-box specific styles */
.custom-box {
  border: 1px solid #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Title inside .custom-box */
.custom-box h5 {
  color: #000;
  text-align: center;
  padding-top: 20px;
}

/* Hover effect for .custom-box */
.custom-box:hover {
  background-image: url("../img/Hcc Web Images/Our Services.png");
}

.custom-box:hover h5 {
  color: white !important;
}

/* Hover effect for .custom */
.custom:hover {
  transform: scale(1.05);
}

/* Mobile View adjustments (max-width: 768px) */
@media (max-width: 768px) {
  .custom, .custom-box {
    width: 100%; /* Full width */
    margin: 10px 0; /* Space between boxes */
    flex-basis: 100%; /* Ensure all boxes are the same width */
  }

  .custom h5, .custom-box h5 {
    width: 100%;
    font-size: 16px;
  }
}

/* Small Mobile View adjustments (max-width: 576px) */
@media (max-width: 576px) {
  .custom, .custom-box {
    width: 100%; /* Full width */
    margin: 5px 0;
  }

  .custom h5, .custom-box h5 {
    font-size: 20px;
   
  }
}

/* Extra Small Mobile View (max-width: 320px) */
/* @media (max-width: 320px) {
  .custom, .custom-box {
    width: 100%;
    margin: 0px 0;
  }

  .custom h5, .custom-box h5 {
    font-size: 12px;
  }
} */


.circle-button {
  width: 50px;
  height: 50px;
  background-color: #ffecec; /* Light pink background */
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.circle-button .arrow {
font-size: 18px;
color: #d9534f; /* Red color for the arrow */
}

/* Hide button when dropdown is open */
.circle-button.hidden {
  display: none;
}

/* For dropdown content */
.dropdown-content {
  display: none;
  transition: all 0.3s ease-in-out;
}

.dropdown-content.show {
  display: block;
}

.badge-services {
  background-color: #ffecec; /* Light pink background */
  color: #d9534f; /* Red text color */
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 15px;
}
.section-heading {
  font-size: 1.5rem; /* Adjust for smaller screens */
  color: #000000; /* Dark text color */
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 30px;
}

.badge-sec{
  padding-top: 45px;
}
@media (min-width: 768px) {
  .section-heading {
      font-size: 2rem; /* Larger text for medium and larger screens */
  }
}


.tag {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 8px;
  font-size: 14px;
  text-align: center;
  margin: 5px;
  display: inline-block;
  color: var(--text-color);
  background-color: #fff;
}
.tag:hover {
  background-color: #f0f0f0;
}
.logo-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 63px;
}

.logo-box img {
max-height: 38px;
max-width: 124px;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .col-lg-2 {
      flex: 0 0 auto;
      width: 14.11%;
  }
}

.row-center {
  justify-content: center;
}
.client {
  background-color: #eff1f3;
}

/*Technology Partners */
.technology-partners {
  background-image: url("../img/Hcc Web Images/technology-partners.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100vh;
  height: 100vh;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Outer Overlay */
.partner-overlay1 {
  position: absolute;
  width: 130vh;
  height: 130vh;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

/* Responsive Inner Overlays */
.partner-overlay2, .partner-overlay3 {
  position: absolute;
  width: 100vh;
  height: 100vh;
  border-radius: 50%;
  border: 1px solid rgb(247, 197, 197);
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

/* Responsive Overlays */
.partner-overlay4 {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 65vh;
  max-height: 65vh;
  border-radius: 50%;
  border: 1px solid rgb(247, 197, 197);
  background: rgba(255, 255, 255, 0);
  z-index: 3;
}

.partner-overlay5 {
  position: absolute;
  width: 25vw;
  height: 25vw;
  max-width: 35vh;
  max-height: 35vh;
  border-radius: 50%;
  border: 1px solid rgb(252, 228, 228);
  background: transparent;
  z-index: 6;
  pointer-events: none;
}

/* Center Image */
.partner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  background-image: url("../img/Hcc Web Images/technology-partners.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 5;
}

/* Logo Box Styling */
.logo-box1 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 4;
  height: 70px;
  width: 120px;
}

.logo-box1 img {
  max-width: 80%;
  height: auto;
}

/* Positioning of Logos */
.logo-box1.left1 { top: 15%; left: 15%; }
.logo-box1.left2 { top: 48%; left: 1%; }
.logo-box1.left3 { bottom: 15%; left: 15%; }
.logo-box1.right1 { top: 15%; right: 15%; }
.logo-box1.right2 { top: 48%; right: 1%; }
.logo-box1.right3 { bottom: 15%; right: 15%; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .technology-partners { width: 80vh; height: 80vh; }
  .partner-overlay1 { width: 100vh; height: 100vh; }
  .partner-overlay2, .partner-overlay3 { width: 80vh; height: 80vh; }
  .partner-overlay4 { width: 45vw; height: 45vw; }
  .partner-overlay5 { width: 22vw; height: 22vw; }
  .logo-box1 { width: 90px; height: 50px; }
  .logo-box1 img { max-width: 100%; }
}
/* @media (max-width: 1024px) {
  .technology-partners { width: 120vh; height: 120vh; }
  .partner-overlay1 { width: 100vh; height: 100vh; }
  .partner-overlay2, .partner-overlay3 { width: 120vh; height: 120vh; }
  .partner-overlay4 { width: 85vw; height: 85vw; }
  .partner-overlay5 { width: 32vw; height: 32vw; }
  .logo-box1 { width: 50px; height: 30px; }
  .logo-box1 img { max-width: 100%; }
} */

@media (max-width: 830px) {
  .technology-partners { width: 30vh; height: 30vh; }
  .partner-overlay1 { width: 55vh; height: 55vh; }
  .partner-overlay2, .partner-overlay3 { width: 30vh; height: 30vh; }
  .partner-overlay4 { width: 20vw; height: 20vw; }
  .partner-overlay5 { width: 18vw; height: 18vw; }
  .logo-box1 { width: 80px; height: 55px; }
  .logo-box1 img { max-width: 100%; }
}

@media (max-width: 768px) {
  .technology-partners { width: 55vh; height: 55vh; }
  .partner-overlay1 { width: 75vh; height: 75vh; }
  .partner-overlay2, .partner-overlay3 { width: 55vh; height: 55vh; }
  .partner-overlay4 { width: 40vw; height: 40vw; }
  .partner-overlay5 { width: 18vw; height: 18vw; }
  .logo-box1 { width: 80px; height: 55px; }
  .logo-box1 img { max-width: 100%; }
}

@media (max-width: 576px) {
  .technology-partners { width: 45vh; height: 45vh; }
  .partner-overlay1 { width: 65vh; height: 65vh; }
  .partner-overlay2, .partner-overlay3 { width: 45vh; height: 45vh; }
  .partner-overlay4 { width: 35vw; height: 35vw; }
  .partner-overlay5 { width: 15vw; height: 15vw; }
  .logo-box1 { width: 70px; height: 40px; }
  .logo-box1 img { max-width: 100%; }
}

@media (max-width: 480px) {
  .technology-partners { width: 45vh; height: 45vh; }
  .partner-overlay1 { width: 65vh; height: 65vh; }
  .partner-overlay2, .partner-overlay3 { width: 45vh; height: 45vh; }
  .partner-overlay4 { width: 30vw; height: 30vw; }
  .partner-overlay5 { width: 35vw; height: 35vw; }
  .logo-box1 { width: 65px; height: 40px; }
  .logo-box1 img { max-width: 100%; }
}

/* industry */
.industries-section {
  padding: 50px 15px;
}

.bd2{
  margin-bottom: 33px;
}

.industries-section .badge {
  background-color: #fde4e4;
  color: #d72323;
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: 5px;
  padding: 6px 17px;
}

.industries-section h2 {
font-size: 2.5rem;
margin-top: 15px;
color: #000000;
}

.industries-section p {
font-size: 1.1rem;
color: #555;
}

.industries-list {
list-style: none;
padding: 0;
margin: 20px 0;
}

.industries-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 1rem;
  position: relative;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 10px;
}

.industries-list li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #141125;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industries-list li span::before {
  content: '\2713';
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}  

.industries-list li span:hover,
.industries-list li span.dark:hover {
  background-color: #d72323;
}
.btn-custom {
background-color: #d72323;
color: white;
padding: 10px 20px;
font-size: 1rem;
border-radius: 25px;
text-decoration: none;
}

.btn-custom:hover {
background-color: #b91c1c;
color: white;
}

.industries-image img {
max-width: 522px;
height: 373px;
border-radius: 10px;
}

/* Insights */
.insights-section {
  /* padding: 50px 15px; */
  text-align: center;
}

.insights-section .badge {
  background-color: #fde4e4;
  color: #d72323;
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: 5px;
  padding: 6px 17px;
}

.insights-section h2 {
  font-size: 2.5rem;
  margin-top: 15px;
  color: black;
  margin-bottom: 30px;
}

.insights-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  /* max-width: 497px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

.btn-custom {
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #b91c1c;
  color: white;
}

.insights-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.content2{
  padding-left: 75px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .insights-section h2 {
      font-size: 2rem;
  }
  .insights-section p {
      font-size: 1rem;
  }
  .btn-custom {
      padding: 8px 16px;
      font-size: 0.9rem;
  }
  .logo-box img {
    max-width: 75px;
  }
}
@media (max-width: 830px) {
  .logo-box img {
    max-width: 55px;
  }
  .section-heading {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .insights-section {
      padding: 40px 10px;
  }
  .insights-section h2 {
      font-size: 1.8rem;
  }
  .insights-section p {
      font-size: 1rem;
      max-width: 90%;
  }
  .insights-image img {
      max-width: 80%;
  }
  .logo-box img {
    /* max-width: 55px; */
    max-width: 79px;
    max-height: 49px;
  }
  .custom-box h5 {
    padding: 18px 0;
  }
}

@media (max-width: 576px) {
  .insights-section h2 {
      font-size: 1.6rem;
  }
  .insights-section p {
      font-size: 0.9rem;
  }
  .btn-custom {
      padding: 6px 14px;
      font-size: 0.8rem;
  }
  /* .insights-image img {
      max-width: 100%;
  } */
  .industries-section h2 {
    font-size: 1.5rem;
  }
  .content2 {
    padding-left: 0px;
  }
  .section-heading {
    font-size: 1.3rem;
  }
    .logo-box img {
      max-width: 102px;
      max-height: 49px;
   
  }
}

/* -----------------------
------- About Us Page -------
--------------------------- */
.about-section {
  padding: 50px 0;
}
.mission {
  /* background-color: #f0f5f5c2; */
  padding: 60px 0;
}
.about-text {
  /* text-align: justify; */
  color: #333;
  width: 100%;
  line-height: 1.6;
  font-weight: 300;
}
.txt {
  font-size: 1rem;
}
.about-title {
  margin-bottom: 35px;
}
.Sec-image {
  width: 439px;
  height: 340px;
  border-radius: 25px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  width: 400px;
}
.aboutUs-Icon {
  max-width: 30%;
  height: auto;
}

@media (max-width: 768px) {
  .about-image {
    padding: 0px 0px;
  }
  .about-title {
    display: flex;
    justify-content: center;
  }
  .aboutUs-Icon {
    max-width: 50%;
  }
}
@media (max-width: 490px) {
  .aboutUs-Icon {
    max-width: 40%;
  }
}
/* -----------------------
------- About Page -------
--------------------------- */
.hero-section-about {
  position: relative;
  background: url("../img/AboutUs/AboutUs-Banner.jpg") no-repeat center
    center/cover; /* Adjust the background image */
  height: 100vh; /* Full height for the hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-about {
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(75.76% 130.48% at 51.46% 37.79%, rgba(0, 0, 0, 0.8) 0%, rgba(8, 8, 41, 0.1) 100%);

}

.hero-content-about {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}

.hero-content-about h1 {
  font-size: 3rem;
}

.hero-content-about p {
  max-width: 744px;
  font-size: 1.2rem; /* Slightly larger font size for paragraph */
  margin: 40px 0;
}

.about-button {
  background: linear-gradient(to bottom, var(--red-color), var(--count-text));
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
}
.about-button:hover {
  transform: translateY(-5px);
}
@media (max-width: 1024px) {
  .hero-content-about h1 {
    font-size: 2rem;
  }
  .hero-content-about p {
    max-width: 685px;
    font-size: 1.2rem;
    margin: 24px 0;
  }
}
/* Adjust styles for smaller devices */
@media (max-width: 768px) {
  .hero-content-about h1 {
    font-size: 2rem; /* Smaller font size for heading on mobile */
  }

  .hero-content-about p {
    font-size: 1rem; /* Smaller font size for paragraph on mobile */
  }

  .about-button {
    padding: 10px 25px; /* Adjust button padding for smaller screens */
  }
}

/* Further adjustments for very small screens (mobile portrait) */
@media (max-width: 480px) {
  .hero-section-about {
    height: auto; /* Make the hero section height adjust to content */
    padding: 50px 0; /* Add some padding to the hero section */
  }

  .hero-content-about h1 {
    font-size: 1.5rem; /* Reduce heading size on very small screens */
  }

  .hero-content-about p {
    font-size: 0.9rem; /* Smaller font for paragraph */
  }

  .about-button {
    padding: 8px 20px; /* Adjust button padding further */
  }
}
.value-card {
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--bxx-color-blue2);
}
.value-card:hover {
  background-color: var(--bx-color);
}

.icon {
  padding: 40px;
  font-size: 2rem;
  /* color: white; */
  /* background: radial-gradient(circle at top left, #F52717, #00000000, #0000004D); */
  background: radial-gradient(circle at center, var(--red-color), #b91e13, var(--count-text));
  /* Corrected background property */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.feature-box {
  /* background: #f8f9fa; */
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.feature-box1:hover {
  transform: translateY(-5px);
  background: linear-gradient(to bottom, #f527170d, #f5271726);
}
.feature-box2:hover {
  transform: translateY(-5px);
  background: linear-gradient(to bottom,  var(--bxx-color-blue1), var(--bxx-color-blue2));
}
.feature-box1 {
  background: linear-gradient(to bottom, var(--bxx-color-blue1), var(--bxx-color-blue2));
}
.feature-box2 {
  background: linear-gradient(to bottom, #f527170d, #f5271726);
}

.feature-icon {
  text-align: left;
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  padding: 10px 0;
  color: #0b091b;
}

.feature-text {
  max-width: 270px;
  font-size: 15px;
  color: #5f6168;
  text-align: left;
  font-weight: 300;
}
.call {
  position: relative;
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
}

.banner {
  height: 273px;
  position: relative;
}

.banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 78%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  border-radius: 10px;
}

.overlay p {
  margin: 0;
  font-size: 16px;
}
.bx-container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 0px;
}

@media (max-width: 1024px) {
  .bx-container {
    padding: 0 55px;
  }
}
/* @media (max-width: 1440px) {
  .bx-container{
    max-width: 1120px;
  }
} */
/* Responsive Design */
@media (max-width: 768px) {
  .overlay {
    font-size: 16px;
    padding: 15px;
  }

  .overlay p {
    font-size: 14px;
  }
}
@media (max-width: 490px) {
  .overlay p {
    font-size: 9px;
  }
}
@media (max-width: 412px) {
  .overlay p {
    font-size: 8px;
  }
  .cta-title {
    margin-bottom: 5px;
  }
}
.leadership-section {
  padding: 5px 115px;
  text-align: center;
}
.leader-row {
  margin-top: 9rem;
}
.leader-card {
  width: 100%;
  max-width: 281px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #d1d2d200, #d1d2d2);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
  background-color: #fff;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-img {
  width: 100%;
  max-width: 188px;
  height: 234px;
  object-fit: cover;
  margin-top: -147px;
  margin-bottom: 15px;
}

.leader-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.leader-role {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .lcard {
    margin-top: 135px;
  }
  .leadership-section{
    margin-bottom: 85px;
  }
}
@media (max-width: 1024px) {
  .leadership-section {
    padding: 5px 43px;
  }
}

@media (max-width: 768px) {
  .leader-card {
    margin-bottom: 115px;
  }
  .leader-row {
    width: 100%;
    margin-top: 5rem;
  }
}
@media (max-width: 419px) {
  .leader-row {
    margin-top: 5rem;
  }
}
.social-icons {
  margin: 40px 0;
}

.social-icons a {
  background-color: white;
  padding: 7px 10px;
  border-radius: 48px;
  color: #5f6168;
  margin: 0 10px;
  font-size: 18px;
}

.social-icons a:hover {
  color: #f94144;
}
@media (max-width: 768px) {
  .social-icons a {
    padding: 8px 8px;
    border-radius: 40px;
    margin: 0px 3px;
    font-size: 16px;
  }
}
.read-more-btn {
  background: linear-gradient(to bottom, #f52717, #c1282a);
  color: white;
  border: none;
  padding: 8px 37px;
  border-radius: 25px;
  font-size: 14px;
  transition: background-color 0.3s ease-in-out;
}

.read-more-btn:hover {
  background-color: #d62828;
}

.hidden-content {
  display: none;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  text-align: left;
  width: 100%;
  padding:8px;
}

@media (max-width: 768px) {
  .leader-img {
    margin-top: -26px;
    height: 230px;
  }

  .social-icons {
    margin: 20px 0;
  }

  .read-more-btn {
    font-size: 12px;
    padding: 6px 30px;
  }
}

@media (max-width: 576px) {
  .leader-img {
    margin-top: -50px;
    height: 240px;
  }

  .leader-name {
    font-size: 16px;
  }

  .leader-role {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 16px;
  }
}
.hero-content .btn {
  font-size: 1rem;
  padding: 8px 20px;
  margin-top: 20px;
}

.hero-content .btn:hover{
  color: var(--color-white);
}

@media (max-width: 768px) {
  .hero-section {
    height: 50vh; /* Full viewport height */
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

.prof-top{
  margin-top: 45px;
}

/* -----------------------
------- Contact Us Page -------
--------------------------- */

.hero-section-contact {
  position: relative;
  background: url("../img/AboutUs/ContactUs-banneer.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-overlay-contact {
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(75.76% 130.48% at 51.46% 37.79%, rgba(0, 0, 0, 0.8) 0%, rgba(8, 8, 41, 0.1) 100%);

}
.office-section {
  position: relative;
  background: url("../img/office.png") no-repeat center center;
  background-size: contain;
  height: 500px;
  /* Adjust based on your requirement */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.office-text {
  position: absolute;
  bottom: 35px;
  font-size: 55px;
  color: black;
  /* background: rgba(255, 255, 255, 0.7); */
  padding: 10px;
  border-radius: 5px;
}
/* .office-card {
  background: linear-gradient(125.35deg, rgba(4, 78, 119, 0.05) 0%, rgba(4, 78, 119, 0.1) 100%);
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 34px; */
  /* max-width: 1040px; */
  /* margin: auto;
} */

/* .office-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.contact-info i {
  color: #d9534f;
  margin-right: 8px;
}
.contact-div{
  gap: 20px;
}

.contact-div p, .pIcon {
  display: flex;
  gap: 20px;
}
.card-Icon{
  width: 25px;
  height: 25px;
}
.Profile i {
  color: #d9534f;
  margin-right: 8px;
}
.pName{
  color: #000;
  font-size: 17px;
}
.map img {
  width: 100%;
  border-radius: 10px;
}
.contact-info {
  margin: 25px 0;
}
.profile img {
  width: 160px;
  border-radius: 50%;
}

.read-more-btn {
  background-color: #ED2C24;
  color: white;
  border: none; */
  /* margin-left: 150px; */
  /* border-radius: 50px;
  padding: 5px 25px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background-color: #c9302c;
}
.contact-groupp{
  width:50%;
  display: flex;
}
.prof-group{
  flex-wrap: nowrap;
}
.contact-map iframe{
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.prof-cont{
  margin-left: 10px;
}
.cont-info-pak{
  margin-top: 30px;
  display: block;
}
.profiles-section{
  display: flex;
  flex-direction: row;
}
.profile-gap{
  margin-left: 70px;
} */


/* ---------- */
/* .pak-info{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.pak-maps{
  width: 420px;
  margin-right: 75px;
}
.pak-contact-info{
  width: 400px;
} */

/* .........UAE............ */
/* .UAE-info{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
}
.UAE-maps{
  width: 420px;
  margin-right: 75px;
}
.UAE-contact-info{
  width: 400px;
}
.card-Icon {
  width: 20px;
  height: 20px;
}

.read-more-btn {
  background-color: #ED2C24;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 6px 20px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background-color: #c9302c;
}

.profile img {
  width: 100%;
  max-width: 160px;
  border-radius: 50%;
}

.pName {
  font-size: 18px;
  color: #000;
} */


/* map in 1024 */
/* @media (max-width:1025px){
  .prof-group{
    flex-wrap: wrap;
    padding-top:30px ; */
    /* justify-content: space-between; */

  /* }
  .prof-space{
    margin-right: 123px;
  }
  .cont-info-pak{
      padding-right: 5px;
  }
  .UAE-maps {
    width: 310px;
    margin-right: 140px;
  }
  .pak-maps {
    margin-right: 30px;
  }
  .map-gap{
    width: 50%;
  }
  .contact-map iframe{
    width:405px;
  }
} */

/* @media (max-width:992px){
  .prof-group{
    flex-wrap: wrap;
    padding-top:30px ;
  }
  .contact-groupp{
    flex-wrap: wrap;
    width:100%;
    padding-left: 5px;
   
  }
  .contact-map iframe{
    width:305px;
    margin-left: 5px;
  }
  .card-Icon {
    width: 20px;
    height: 20px;
  }
  .contact-div{
    gap: 7px;
  }
  .contact-div p{ */
    /* gap: 10px; */
    /* font-size: 15px;
  }
  .profile-data{
    width: 100%;
  }
  .profile img {
    width: 100px;
   
  }
  .pak-info{
    flex-direction: column;
  }
}

@media (max-width:854px){
  .prof-group{
    flex-wrap: wrap;
    padding-top:30px ; */
    /* justify-content: space-between; */
  /* }
  .prof-space{
    margin-right: 50px;
  }
  .profile-gap{
    margin-left: 0px;
  }
  .hero-height{
    height: 70vh;
  }
}

@media (max-width:768px){
  .prof-group{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top:30px ; */
    /* justify-content: space-between; */
  /* }
  .contact-groupp{
    width:100%;
    padding-left: 0;
   
  }
  .contact-map iframe{
    width:305px;
    margin-left: 5px;
  }
  .card-Icon {
    width: 20px;
    height: 20px;
  }
  .contact-div{
    gap: 7px;
  }
  .contact-div p{
    gap: 0px;
    font-size: 15px;
  }
  .profile-data{
    width: 100%;
  }
 
  .profile img {
    width: 100px; */
    /* margin-left: -48px; */
  /* }
  .map-gap{
    width: 50%;
  }  
  .pak-contact-info{
    width: 300px;
  }
  .pak-maps{
    width: 300px;
    margin-right: 0px;
  }
  .pak-info{
    flex-direction: row;
  }
  .UAE-contact-info{
    width: 320px;
  }
  .UAE-maps{
    width: 180px;
   
  }
  .prof-group{
    padding-top: 0px;
  }
} */

/* @media (max-width:540px) {
  .UAE-maps {
    margin-right: 0px;
  }
  .pakistan-map{
    margin-right: -18px;
  }
  .pak-info {
    flex-direction: column;
  }
  .profilee img {
    width: 100px;
    margin-left: -48px;
    margin-top: 30px;
  }
  .profile-data{
    width: 161px;
    margin-left: -17px;
  }
  .profile-data-s {
    width: 218px;
}
.profile-data-f {

  width: 251px;
}
.profile-data-tar {
  width: 167px;
  margin-left: -45px;
}
.tar-profile img {
  width: 100px;
  margin-left: -45px;
}
  .hero-height {
    height: 70vh;
  }

}

@media (max-width:430px) {
  .spacing{
    padding-left: 10px;
    padding-right: 10px;

  }
  .profiles-section{
    display: flex;
    flex-direction: column;
  }
  .profile-gap{
    margin-left: 0px;
  }
  .pak-contact-info{ */
    /* width: 300px;   */
    /* width: 303px;
    margin-left: -3px;
  }
  .pak-info{
    flex-direction: column;
  }
  .UAE-contact-info{
    width: 300px;
  }
  .contact-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -10px;
  }
  .pk-map{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -20px;
  }
  .hero-height {
    height: 70vh;
  }
  .contact .contct-btn{
    font-size: 0.7rem;
  }
}

@media (max-width:345px){
  .prof-group{
    flex-wrap: wrap;
    padding-top:30px;
  }
  .contact-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -27px;
  }
  .pak-contact-info{
    width: 300px;
  }
  .pak-info{
    flex-direction: column;
  }
  .UAE-contact-info{
    width: 300px;
  }
  .hero-height {
    height: 70vh;
  }

} */

/* @media (max-width:330px){
  .out-content h1 {
    font-size: 20px;
  }
  .hero-height{
    height: 70vh;
  }
}

@media (max-width:576px){
  .out-content h1 {
    font-size: 20px;
  }
  .contact-groupp{
    width:100%;
  }
  .contact-div{
    flex-wrap: wrap;
  }
  .contact-div p{
    font-size: 10px;
  }
  .contact-info span{
    font-size: 15px;
  }
  .contact-map iframe{
    width:250px;
  }
  .prof-group{
    flex-wrap: wrap;
  }
  .contact-sectn{
    padding: 0;
  }
  .profile img {
    width: 100px;
  }
  .card-Icon {
    width: 15px;
    height: 15px;
  }
  .pak-contact-info{
    width: 300px;
  }
  .pak-info{
    flex-direction: column;
  }
  .UAE-contact-info{
    width: 300px;
  }
  .hero-height{
    height: 70vh;
  }
 
}

.contact-map iframe{
  width: 460;
  height: 160;
  border-radius:20px;
}
.profile-data {
  width: 100%;
  display: flex; */
  /* flex-direction: column; /* makes content stack vertically */
  /* align-items: flex-start; */
/* } */ */
    .office-card {
      /* background: linear-gradient(125.35deg, rgba(4, 78, 119, 0.05) 0%, rgba(4, 78, 119, 0.1) 100%);
      border-radius: 40px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      /* padding: 34px; 
      margin: auto;
      display: flex;
      flex-direction: column;
      min-height: 750px;
      justify-content: space-between; */
      /* flex-grow: 1; */
            background-color: #f0f0f0;
      /* border-radius: 50px; */
    
    }

    .office-cardBG
    {
    /* background: #f0f0f0; */
    background: linear-gradient(to bottom, #044e770d, #044e771a);
    BORDER-RADIUS: 20PX;
    PADDING: 20PX;
    padding-top: 5px;
    }
    .office-header {
      background-color: #044e771a;
      /* #908b8b28; */
      border-radius: 50px;
      padding: 5px 15px;
      /* width: fit-content; */
      width: 240px;
      justify-content: center;
      padding-top: 5px;
      margin: 0 auto;
    }
    .contact-info i {
      color: #000000;
      margin-right: 8px;
    }
    .contact-info {
      margin: 15px 0;
      /* font-weight: ; */
    }
    .contact-info .d-flex {
      gap: 10px;
    }
    .card-Icon {
      width: 20px;
      height: 20px;
     
    }
    .card-Icon,
.fa-map-marker-alt.card-Icon {
  color: #6c757d !important;  /* same color jo phone/email ka hai */
}

    .pName {
      color: #f52717;
      font-size: 17px;
      /* font-weight: ; */
    }
    .contact-map {
      margin: 0;
      width: 100%;
    }
    .contact-map iframe {
      border: 2px solid rgba(0, 0, 0, 0.2);
      width: 100%;
      border-radius: 20px;
      height: 160px;
    }
    .profile-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 15px;
      width: 100%;
      flex-grow: 1; /* Allow profile container to expand */
    }
    .profile {
      margin-bottom: 15px;
    }
    .profile img {
      width: 100px;
      border-radius: 50%;
    }
    .profile-data {
      text-align: center;
      width: 100%;
      /* font-weight: ;*/
    }
    .profile-data , .profile-data a {
      /* font-weight: ; */
      color: #555;
    }
    .profile-data .d-flex {
      gap: 10px;
    }
    .read-more-btn {
      background-color: #ED2C24;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 5px 25px;
      transition: 0.3s;
      margin-bottom: 10px;
      /* font-weight: ; */
    }
    .read-more-btn:hover {
      background-color: #c9302c;
    }
    .hidden-content {
      display: none;
      margin-top: 15px;
      font-size: 14px;
      /* color: #000000; */
      text-align: center;
      width: 100%;
      padding: 8px;
      /* font-weight: ; */
    }
    .UAE-info, .pak-info, .uk-info, .riyad-info {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
      width: 100%;
    }
    .UAE-contact-info, .pak-contact-info, .uk-contact-info, .riyad-contact-info {
      width: 100%;
    }
    @media (max-width: 992px) {
      .office-card {
        min-height: 650px;
            background: linear-gradient(125.35deg, rgba(4, 78, 119, 0.05) 0%, rgba(4, 78, 119, 0.1) 100%);
             border-radius: 40px;
              box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
             
      }
      .contact-map iframe {
        width: 100%;
        height: 140px;
      }
      .profile img {
        width: 80px;
      }
      .profile-data {
        font-size: 14px;
      }
    }
    @media (max-width: 768px) {
      .office-card {
        min-height: 700px;
      }
      .contact-map iframe {
        width: 100%;
        height: 120px;
      }
      .contact-info p, .profile-data p {
        font-size: 14px;
      }
      .profile img {
        width: 80px;
      }
    }
    @media (max-width: 576px) {
      .office-card {
        min-height: 600px;
      }
      .contact-map iframe {
        width: 100%;
        height: 100px;
      }
      .contact-info p, .profile-data p {
        font-size: 12px;
      }
      .profile img {
        width: 70px;
      }
    }
/* -----------------------
------- Loader Wrapper -------
--------------------------- */

#loader-wrapper {
  background-color: #dcdcdc;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#loader {
  position: absolute;
  top: 40%;
  left: 50%;
  margin: -100px 0 0 -100px;
}

.loader-ellips {
  font-size: 20px;
  position: relative;
  width: 64px;
  margin: 100px auto 0;
}

.ring {
  width: 200px;
  height: 200px;
  border: 0px solid rgb(0, 0, 0);
  border-radius: 50%;
  position: absolute;
}

.ring:nth-child(1) {
  border-bottom-width: 8px;
  border-color: #ffffff;
  animation: rotate1 2s linear infinite;
}

.ring:nth-child(2) {
  border-right-width: 8px;
  border-color: #f52717;
  animation: rotate2 2s linear infinite;
}

.ring:nth-child(3) {
  border-top-width: 8px;
  border-color: #000000;
  animation: rotate3 2s linear infinite;
}

@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
.spinner-overlay {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #c1282a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* ------------------------
------- Career Page -------
--------------------------- */
.hero-section-career {
  position: relative;
  background: url("../img/hero-carousel/careerBg.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-overlay-career {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content, .out-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.125rem;
}
.tech {
  color: #f52717;
}

.hero-content p {
  font-size: 1.06rem;
  margin: 30px 0;
}

.hero-content .btn {
  padding: 10px 30px;
  font-size: 0.94rem;
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
  width: 142px;
  height: 63px;
  align-content: center;
}
.hero-content .btt {
  padding: 10px 30px;
  font-size: 0.94rem;
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
  width: 420px;
  height: 63px;
  align-content: center;
}
/* ------------------------------------ */
.hero-section {
  height: 80vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-content h1, .out-content h1 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width:1200px) {
  .hero-section {
    height: 100vh;
  }
}

@media (max-width: 913px) {
  .hero-section {
      height: 50vh;
  }
}
 
/* -------------------------------------
-------- Why Join Section --------------
----------------------------------------*/

.why-join-section {
  text-align: center;
}

.why-join-section h2 {
  font-size: 40px;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}

.cimage-banner-container {
  position: relative;
  display: inline-block;
  text-align: center;
}

.cimage-banner {
  /* width: 100%; */
  max-width: 60%;
  height: auto;
  border-radius: 20px;
  margin: 20px auto;
}

.career-overlay-text {
  position: absolute;
  top: 50%;
  left: 30%;
  font-weight: 400;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 10px;
}

/* Career Features */
.career-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 100px;
}

.feature-card {
  text-align: center;
  max-width: 185px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to bottom, var(--red-color), #c1282a);
}

.feature-card:hover svg path {
  fill: #ffffff;
}

.feature-card:hover .headings {
  color: #fff;
}

.feature-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #f44336;
}

.feature-card .headings {
  color: #000;
  height: 120px;
  font-size: 14px;
  padding-top: 30px;
  font-weight: 300;
  text-align: center;
}

.feature-card h5 {
  font-size: 1rem;
}

/* Career Form */

.form-container {
  background: linear-gradient(180deg, rgba(0, 59, 113, 0.08) 0.01%, rgba(0, 59, 113, 0) 100%);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  /* max-width: 900px;
  margin: 0 auto; */
  /* padding: 89px; */
  padding: 89px 89px 40px 89px;
  max-width: 1040px;
  margin: 20px auto;
  border-radius: 40px;
}

.form-group {
  position: relative;
}

.form-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background-color: linear-gradient(180deg, rgba(0, 59, 113, 0.08) 0.01%, rgba(0, 59, 113, 0) 100%);
  background: white;
  padding: 0 5px;
  color: #888;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}




.btn-danger {
  background: linear-gradient(to bottom, var(--red-color), #c1282a);
  border: none;
  border-radius: 25px;
  padding: 10px 45px;
}


.btn-danger:hover {
  background-color: var(--danger-color);
}

.fhead{
  margin-top: 20px;
}

.mesg-label{
  top:20%;
}

.contact-btn{
  margin-top: 55px;
}

.form-control,
.form-select {
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.phonenum {
  margin-top: -64px;
}

.form-select:focus + .floating-label,
.form-select:valid + .floating-label {
    top: 0px;
    font-size: 14px;
    color: #f71919;
}

/* File Upload */
.custom-file-upload {
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: left;
  background-color: white;
}

.file-input-height{
height: 46px;
}

.custom-file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-file-upload .upload-text {
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
  display: inline-block;
}

.custom-file-upload .icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #ccc;
  font-size: 24px;
}

.custom-file-upload .icons i:hover {
  color: #333;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: 0px;
  font-size: 0.8rem;
  color: #f52717;
}

.form-control:focus,
.custom-file-upload:focus,
.form-select:focus {
  border: 2px solid #f52717;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-fieldss{
  display: flex;
  flex-direction: column;
}

.fls{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0px 12px;
}

.col-fields1, .col-fields2{
  width: 45%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
 
  .form-select {
    margin-top: 0rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-content .btn {
    font-size: .9rem;
  }
  .feature-card {
    max-width: 200px;
    font-size: 0.9rem;
  }
  .form-container {
    padding: 15px;
  }
  .form-label {
    font-size: 0.9rem;
  }
  .form-control {
    font-size: 0.9rem;
  }
  .cimage-banner {
    border-radius: 15px;
    max-width: 70%;
  }
  .career-overlay-text {
    font-size: 1rem;
  }
  .why-join-section h2 {
    font-size: 2rem;
  }
  .custom-file-upload {
    height: 100px;
    margin-top:0;
  }
  .btn-danger{
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
  .hero-content .btn {
    font-size: 0.8rem;
  }
  .form-label {
    font-size: 0.8rem;
  }
  .form-control {
    font-size: 0.8rem;
  }
  .form-container {
    margin-left: 10px;
    margin-right: 10px;
  }
  .cimage-banner {
    border-radius: 10px;
    max-width: 75%;
  }
  .career-overlay-text {
    font-size: 0.8rem;
  }
  .why-join-section h2 {
    font-size: 1rem;
  }
  .career-feature {
    margin: 20px;
  }
 
  .form-select:focus + .floating-label,
  .form-select:valid + .floating-label {
    font-size: 10px;
  }

}

@media (max-width:390px) {
  .custom-file-upload .upload-text {
    font-size: 7px;
    margin-bottom: 0px;
  }
  .custom-file-upload .icons {
    margin-top: 3px;
    gap: 10px;
    font-size: 17px;
  }
  .custom-file-upload {
    height: 68px;
    padding: 12px;
  }
  .form-label {
    font-size: 0.6rem;
  }
  .form-control
  {
    padding: 6px 10px;
  }
  .col-fields1, .col-fields2 {
    width: 48%;
  }
  .sub-btn{
    font-size: 12px;
  }
  .contact-btn {
    margin-top: 15px;
  }
  .form-secc{
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .fhead {
    margin-top: 0px;
  }
  .form-container {
    margin-left: 10px;
    margin-right: 10px;
  }
  .form-select:focus + .floating-label,
  .form-select:valid + .floating-label {
    font-size: 10px;
  }
}

/* Navpage */
.services-sec{
  max-width: 100%;
  width: 100%;
}
/* ------------------------------
------- Outsourcing Page1 -------
--------------------------------- */

.hero-section-outsourcing {
  position: relative;
  background: url("../img/hero-carousel/outsourcingBg.png") no-repeat center center/cover;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  height: 80vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
}

.hero-overlay-outsourcing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6);  */
  background: radial-gradient(34.43% 59.31% at 50% 50%, rgba(0, 0, 0, 0.45) 58.38%, rgba(8, 8, 41, 0.225) 100%),
linear-gradient(0deg, rgba(20, 17, 37, 0.4), rgba(20, 17, 37, 0.4));

}
.menu {
  list-style: none;
}

.menu ul{
  padding-left: 0rem !important;
}

.menu li {
  margin: 10px;
}

.menu li a {
  font-size: 13px;
  border: 1px solid;
  border-radius: 20px;
  padding: 10px 20px;
  gap: 10px;
  color: var(--text-color);
}

.menu li.active a {
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
  color: #fff;
  border-color: rgba(245, 39, 23, 1);
}
/* hcc help sec */
.out-add-cont{
  max-width: 900px;
}
.out-heading {
  font-size: 40px;
  line-height: 65px;
  color: var(--heading-color);
}

.out-par1 {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 300;
}

.out-par2 {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 900px;
  width: 100%;
  padding: 16px;
}

.box .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.out-Icon{
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.out-box p{
  margin-bottom: 10px;
}

.box-container {
  display: grid;
  grid-template-areas:
    "red dark-red"
    "black dark-red";
  gap: 16px;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.red {
  background-color:var(--box-color);
  grid-area: red;
}

.dark-red {
  background-color: #7b140c;
  grid-area: dark-red;
  height: 70%;
  margin-top: 50px;
}

.black {
  background-color: #000;
  grid-area: black;
}

.icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 3px;
}

.icon {
  margin-bottom: 8px;
}

p {
  margin: 0;
}

@media (max-width: 1200px) {
  .menu li a {
    font-size: 13px;
  }
}

@media (max-width: 912px) {
  .menu li a {
    font-size: 10px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .box-container {
    grid-template-areas:
      "red"
      "dark-red"
      "black";
  }
  .dark-red {
    margin-top: 25px;
  }
  .menu li a {
    font-size: 8px;
    padding: 8px 10px;
  }
}

@media (max-width:576px) {
  .menu li {
    margin: 4px;
  }
}

.out-par3,
.out-par4,
.out-par5 {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 28px;
}

.out-par5 {
  font-weight: 400;
}

.outs-img{
  width: 100%;
  height: 85%;
  border-radius: 35px;
}

.button {
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(
    85deg,
    rgba(245, 39, 23, 1) 0.05%,
    rgba(193, 40, 42, 1) 33%
  );
  font-size: 15px;
  margin-top: 20px;
  padding: 8px 25px;
}

/* outsource service*/
.outsource-service {
  border-radius: 25px;
  background: linear-gradient(
    125.35deg,
    rgba(4, 78, 119, 0.05) 0%,
    rgba(4, 78, 119, 0.1) 100%
  );
  padding: 46px;
}

.outsource-service h1 {
  font-size: 50px;
  color: var(--black-color);
}

.outsource-service p {
  font-size: 1rem;
  color: #555;
  margin-top: 6px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.serv-Outbox,
.outsource-service-box,
.outsource-services-box,
.outsource-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  background: linear-gradient(251.55deg, rgba(255, 255, 255, 0.5) -0.75%, #FFFFFF 100%);
  border-radius: 17px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serv-Outbox:hover,
.outsource-service-box:hover,
.outsource-services-box:hover,
.outsource-client {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.outsource-service-box p {
  font-size: 1.4rem;
  color: var(--black-color);
  margin: 0;
}

.out-ser {
  font-weight: 300;
  padding-top: 25px;
}

.out-gridRow{
  margin: 10px 0;
}

.outsource-service-box img,
.outsource-services-box img {
  background: linear-gradient(
    85deg,
    rgb(245, 39, 23) 0.05%,
    rgb(193, 40, 42) 33%
  );
  padding: 8px;
  border-radius: 12px;
}

.bx1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.out2-Icon, .out3-Icon {
  width: 50px;
  height: 50px;
}

.outs-cont{
  margin-top: 70px;
}

.outsource-services {
  border-radius: 25px;
  background: linear-gradient(125.35deg, rgba(245, 39, 23, 0.05) 0%, rgba(245, 39, 23, 0.1) 100%);
  padding: 40px;
  margin-top: 70px;
}

.outsource-services-box p {
  font-size: 12px;
  color: var(--black-color);
  padding-right: 40px;
}

.out-service-cont{
  margin: 30px 0;
}

.out-services {
  font-size: 30px;
}

.out-p{
  margin-top: 25px;
}

.out-toggle{
  font-size: 15px;
}

.out-container{
  max-width: 900px;
}

/* Logo Container */
.out-logo-cont{
  margin-bottom: 70px;
  max-width: 900px;
}
.out-logo-cont img{
  max-height: 38px;
  max-width: 85px;
}
.lb{
  box-shadow: 0px 30px 50px 0px rgba(8, 8, 41, 0.08);
  background: rgba(255, 255, 255, 1);
  border:none;
}
.climate-logo-cont{
  margin-bottom: 70px;
  max-width: 900px;
}
.climate-logo-cont img{
  max-height: 53px;
  max-width: 92px;
}

/* Gradient Rectangle */
.gradient-rectangle {
  background: linear-gradient(90deg, #f52717 10%, #c1282a 90%);
  border-radius: 30px;
  width: 154px;
  height: 129px;
  top: 113px;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Profile Image Wrapper */
.profile-image-wrapper {
  position: relative;
  z-index: 1; /* Ensures it sits above the gradient rectangle */

  display: inline-block;
}
.profile-image-wrapper img {
  max-width: 200px;
}
.profile-image-wrapp img {
  max-width: 180px;
}
.profile-image-wrappTan img {
  max-width: 140px;
}
.intro-Icons{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mcard h1{
  margin-top: -85px;
}
/* -------------- */
.intro h1 {
  font-size: 2rem;
  color: #333;
}

.intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.intro-row {
  border-top-left-radius: 177px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  background: linear-gradient(145.97deg, rgba(0, 59, 113, 0.05) 0%, rgba(0, 59, 113, 0.12) 100%);
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .out-container{
    max-width: 905px;
  }
  /* header */
  .out-content{
    max-width: 600px;
  }
  /* our service */
  .outsource-service h1 {
    font-size: 50px;
  }
  .outsource-service-box p {
    font-size: 1.1rem;
  }
  .out2-Icon {
    width: 60px;
    height: 60px;
  }
  .outsource-service-box{
    padding: 23px;
  }
  .outsource-service p {
    font-size: 1.1rem;
  }
  /* services */
  .out-services {
    font-size: 30px;
  }
 
}
@media (max-width: 912px) {
  .out-container {
    max-width: 800px;
  }
  .out-head{
    margin-top: 30px;
    text-align: center;
  }
  .out-imgg{
    margin-bottom: 39px;
  }
  .mcard h1 {
    margin-top: -19px;
    margin-bottom: 40px;
  }
}
@media (max-width: 820px) {
  .out-head{
    margin-top: 30px;
    text-align: center;
  }
  .mcard h1 {
    margin-top: -6px;
    font-size: 25px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .out-container {
    max-width: 665px;
  }
  .out-content h1 {
    font-size: 1.5rem;
  }
  .out-content p{
    font-size: 0.8rem;
  }
  .out-content .btn {
    font-size: 0.7rem;
    padding: 4px 20px;
  }
  .out-head{
    margin-top: 30px;
    text-align: center;
  }
  .outsource-service h1 {
    font-size: 35px;
  }
  .out-ser {
    font-size: 1rem;
  }
  .out2-Icon{
    width: 25px;
    height: 25px;
  }
  .out3-Icon {
    width: 40px;
    height: 40px;
  }
  .outsource-service-box {
    padding: 12px;
  }
  .outsource-service-box img{
    padding: 5px;
    border-radius:7px;
  }
  .outsource-service-box p {
    font-size: 0.6rem;
    margin-right: 5px;
  }
  .outsource-services-box img{
    padding: 5px;
  }
  .outsource-services-box p {
    font-size: 13px;
    padding-right: 16px;
  }
  .out-services {
    font-size: 25px;
  }
  .out-imgg{
    margin-bottom: 33px;
  }
  .out-p{
    margin-top: 60px;
    text-align: left;
  }
  .extra-content1, .extra-content2{
    text-align: left;
  }
  .mcard h1{
    margin-top: -26px;
  }
}

@media (max-width: 414px) {
  .out-container {
      max-width: 360px;
  }
  .out-content {
    max-width: 375px;
  }
  .bx2{
    margin-top: 0;
  }
}

@media (max-width: 344px) {
  .out-container {
      max-width: 300px;
  }
  .bx2{
    margin-top: 0;
  }
}
@media (max-width: 320px) {
  .out-container {
    max-width: 300px;
  }
  .out-content h1 {
    font-size: 1rem;
  }
  .out-content p{
    font-size: 0.6rem;
  }
  .out-content .btn {
    font-size: 0.5rem;
    padding: 4px 20px;
  }
  .out-add-cont{
    padding: 0;
    margin-top: 0;
  }
  .out-head{
    font-size: 22px;
  }
  .out-par3, .out-par4, .out-par5 {
    text-align: justify;
  }
  .outsource-service h1 {
    text-align: center;
  }
  .outsource-service p {
    text-align: center;
  }
  .out-services {
    font-size: 15px;
  }
  .bx2{
    margin-top: 0;
  }
  .intro-Icons{
    top:96%;
  }
}
/* ---------------------------------------
------- Services Outsourcing Page2 -------
------------------------------------------ */
.bespoke-box2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  position: relative;
  height: 140px;
}
.bebox2 {
  height: 125px;
}
.beicon2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background: #44464d;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.service-box img {
  width: 50px;
  height: 50px;
  margin-right: 16px;
}
.service-box p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
/* Call to Action Section */
.call-to-action {
  position: relative;
  text-align: center;
  padding: 0px 85px;
}
/* @media (max-width: 2560px) {
  .call-to-action {
    padding: 0px 694px;
  }
} */
@media (max-width: 1024px) {
  .call-to-action {
    padding: 0px 24px;
  }
}
@media (max-width: 768px) {
  .call-to-action {
    padding: 0px 34px;
  }
}
/* Background Image */
.banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
}
.fbox h5{
  margin-bottom: 25px;
  font-weight: 500;
  font-size:23px;
}
.fbox p{
  color: rgba(68, 70, 77, 1);
  font-weight: 300;
}
/* Overlay Styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  /* background: rgba(0, 0, 0, 0.6); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Title Styling */
.cta-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Text Styling */
.cta-text {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.5;
}

.bx-icon{
  width: 90px;
  height: 90px;
}
@media (max-width: 992px) {
  /* Tablets */
  .hero-content-about h1 {
    font-size: 2rem;
  }
  .hero-content-about p {
    font-size: 1.1rem;
  }
  .about-title {
    font-size: 1.8rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .cta-title {
    font-size: 3rem;
  }
  .cta-text {
    font-size: 1.1rem;
  }
  .leader-name {
    font-size: 1.2rem;
  }
  .leader-role {
    font-size: 0.95rem;
  }
}
@media (width: 810px) {
  .bx-icon {
    width: 70px;
    height: 70px;
  }
  .about-vc{
    padding: 33px;
  }
}
@media (max-width: 768px) {
  .headings {
    font-size: 15px; /* Slightly smaller font size for tablets */
  }
  .hero-content h1 {
    font-size: 1.25rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  /* Small tablets and large phones */
  .hero-section-about {
    min-height: 70vh;
    padding: 15px;
  }
  .hero-content-about h1 {
    font-size: 1.8rem;
  }
  .hero-content-about p {
    font-size: 1rem;
  }
  .about-title {
    font-size: 1.8rem;
  }
  .about-text {
    padding: 0px 30px;
  }
  .overlay {
    padding: 15px;
  }
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-text {
    font-size: 1rem;
  }
  .container-about {
    padding: 30px 0;
  }
  .leader-card {
    padding: 15px;
    margin-bottom: 80px;
  }
  .leader-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  /* Mobile devices */
  .hero-section-about {
    min-height: 60vh;
    padding: 10px;
  }
  .hero-content-about h1 {
    font-size: 1.5rem;
  }
  .hero-content-about p {
    font-size: 0.9rem;
  }
  .about-button {
    font-size: 0.7rem;
    padding: 10px 20px;
  }
  .about-section {
    padding: 30px 10px;
  }
  .about-title {
    font-size: 1.4rem;
  }
  .about-text {
    font-size: 0.95rem;
  }
  .overlay {
    padding: 10px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-text {
    font-size: 14px;
  }
  .leader-card {
    padding: 10px;
  }
  .leader-name {
    font-size: 1rem;
  }
  .leader-role {
    font-size: 0.9rem;
  }
  .aboutUs-Icon {
    max-width: 20%;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-content .button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .fbox h5 {
    font-size: 20px;
  }
  .aboutUs-Icon {
    max-width: 40%;
  }
  .cta-title {
    margin-bottom: 5px;
  }
  .bx-icon {
    width: 70px;
    height: 70px;
  }
  .about-vc{
    padding: 30px;
  }
}
@media (max-width: 375px) {
  .value-card {
    padding: 20px;
  }
  .icon {
    padding: 20px;
    width: 50px;
    height: 50px;
  }
  .bx-icon {
    width: 60px;
    height: 60px;
  }
  .icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 0px;
  }
  .fbox h5 {
    font-size: 1rem;
  }
  .fbox p {
    font-size: 0.8rem;
  }
  .aboutUs-Icon {
    max-width: 70%;
  }
  .cta-title {
    font-size: 1.3rem;
    margin-bottom: 1px;
  }
  .overlay p {
    font-size: 7px;
  }
}
@media (max-width: 320px) {
  .cta-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .overlay p {
    margin-bottom: 10px;
    font-size: 6px;
  }
  .value-card {
    padding: 20px;
  }
  .icon {
    padding: 20px;
    width: 50px;
    height: 50px;
  }
  .bx-icon{
    width: 50px;
    height: 50px;
  }
  .icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 0px;
  }
  .fbox h5 {
    font-size: 1rem;
  }
  .fbox p {
    font-size: 0.8rem;
  }
  .aboutUs-Icon {
    max-width: 70%;
  }
}
/* ---------------------------------------
------- Alumni Portal Page -------
---------------------------------------- */
.hero-section-alumni {
  position: relative;
    background: url("../img/hero-carousel/AlumniBanner.jpg") no-repeat center center/cover;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

/* ---------------------------------------
------- Business Applications Page -------
---------------------------------------- */

.hero-section-businessApp {
  position: relative;
    background: url("../img/Business-Application/BA-banner.jpg") no-repeat center center/cover;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
  .business-overlay-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(34.43% 59.31% at 50% 50%, rgba(0, 0, 0, 0.6) 58.38%, rgba(8, 8, 41, 0.6) 100%);
  }

.bbtn{
  background: linear-gradient(180deg, #F52717 0%, #C1282A 100%);
}
/* Image */
.overlay-img {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 255px;
  height: auto;
  z-index: 10;
}
.buss-img {
  max-width: 100%;
  height: 355px;
  border-radius: 50px;
}
 
  .row {
    margin-right: 0;
    margin-left: 0;
    /* overflow: hidden; */
  }
  .buss-sec2, .buss-sec4, .buss-sec6, .buss-sec8{
    background: #f0f5f5c2;
    padding-top: 5px;
    padding-bottom: 50px;
  }
  .buss-h1 {
    font-size: 55px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 68px;
    
    font-family: var(--font-th);
  }
  .buss-par1{
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    color: var(--text-color);
    font-family: var(--font-th);
  }
  .buss-par2{
    font-size: 18px;
    font-weight: 500;
    color: var(--par-color);
    font-family: var(--font-th);
  }
.buss-par3{
    border-radius: 7px;
    color: var(--count-text);
    background-color: var(--bx-color);
    display: inline-block;
    padding: 12px 21px;
    font-family: var(--font-th);
    font-weight: 800;
    font-size: 18px;
}
.buss-par4{
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    font-family: var(--font-th);
    font-weight: 800;
}

/* Cards */
.value-card1, .value-card2 {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-th);
}
.value-card1 {
    background-color: var(--bx-color);
}
.value-card2 {
    background-color: var(--bxx-color-blue2);
    margin: auto;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-th);
    line-height: 3em;
}
.checklist li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    font-size: 19px;
    color: var(--par-color);
    display: flex;
    align-items: center;
    line-height: 1.4;
}
.chk li{
  margin-bottom: 30px;
}
.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0,0,0,0.1);
    color: var(--heading-color); /* Black checkmark */
    border-radius: 50%;
    font-size: 14px;

}
.buss-Icons{
    margin-left: 65px;
    margin-top: 10px;
}
.buss-Icons img{
  margin-bottom: 5px;
}
.buss-intro{
    font-family: var(--font-th);
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .hero-content .btn {
    /* font-size: 0.7rem; */
    padding: 8px 15px;
    font-size: 1.3rem;
    width: 144px;
  }
  .hero-content .btt{
    width: 415px;
  }
  .buss-h1 {
    font-size: 45px;
    font-weight: 700;
  }
  .buss-btn{
    font-size: 12px;
  }
  .buss-img {
    max-width: 100%;
    height: 400px;
    border-radius: 50px;
  }
  .buss-par1{
    font-size: 16px;
  }
  .buss-par2{
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin: 0px 60px;
    max-width: 600px;
    text-align: center;
  }

  .hero-content .btn {
    font-size: 0.8rem;
    padding: 8px 20px;
     padding: 8px 15px;
    font-size: 1.3rem;
    width: 144px;
  }
.hero-content .btt {
    font-size: 0.8rem;
    width: 144px;
    padding: 0px 0px
}
  .value-card1, .value-card2 {
    margin-bottom: 20px;
  }

  .checklist li::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
  }

  .icon img {
      width: 50px;
  }
  .buss-img {
    max-width: 100%;
    height: 300px;
  }
}
@media (max-width: 490px){
  .buss-Icons {
    margin-left: 18px;
    margin-top: 10px;
    padding: 35px;
  }
  .buss-h1 {
    font-size: 35px;
  }
  .buss-intro h1{
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.5rem;
  }

  .hero-content .btn {
    font-size: 0.5rem;
    padding: 2px 17px;
  }
  .buss-intro h1{
    font-size: 15px;
  }
  .buss-h1{
    font-size: 23px;
  }
  .buss-par1{
    margin-top: 0;
  }
  .buss-img {
    max-width: 100%;
    height: 300px;
  }
  .buss-par4{
    text-align: justify;
  }
}
.container-list {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

.column {
  display: flex;
  flex-direction: column;
}

.column li {
  list-style: disc; /* show bullet */
  margin-bottom: 5px;
}

#out-detail{
  display: none;
}
/* alumni form */
.alum-label {
color: #c1282a;
}
.profile-box {
      width: 100px;
      height: 100px;
      background-color: white;
      border: 1px solid#c1282a;
      margin-left: 60px;
    }

.profile-upload-box {
  padding-top: 100%;
  background-color: white;
  border: 1px sloid #ccc;
  border-radius: 5px;
  position: relative;
  padding: 0px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-left:241px ;
  width: 130px;
  height: 126px;
}

.file-input {
  position: absolute;
  position: relative;
  width: 100px;
  display: flex;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
 
}
.spn{
     align-items: center;
    justify-content: center;
    padding-left: 27px;
    display: flex;
    position: absolute;
    cursor: pointer;
;
}
.profilepic-label{
   margin-left:255px ;
}

/* /////////Alumni Portal///////////////  */



/* Click to add link */
.click-to-add {
  margin-top: 5px;
  color: #c1282a;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

/* Input + button hidden box */
.org-add-box {
  display: none;
  margin-top: 8px;
}

.org-add-box input {
  padding: 6px;
  width: 65%;
  max-width: 200px;
  margin-right: 6px;
  font-size: 14px;
}

.org-add-box button {
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  background-color: #c1282a;
  color: white;
  border: none;
  border-radius: 4px;
}

/* Error popup box */
.error-popup {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 14px;
}
/* Label stays red */
.alum-label {
  color: #c1282a;
}

/* Checkbox styling */
.single-checkbox {
  margin-top: 5px;
  font-size: 14px;
}

.single-checkbox input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 6px;
  accent-color: #c1282a; /* matches your red theme */
}
/* Box container */
.privacy-box {
  border: 1px solid #c1282a;
  border-radius: 6px;
  padding: 16px;
  background-color: #fdf6f6; /* soft red tint */
  font-size: 14px;
  color: #333;
}

/* Heading style */
.privacy-heading {
  color: #c1282a;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* Line below heading */
.privacy-line {
  border: none;
  height: 1px;
  background-color: #c1282a;
  margin-bottom: 15px;
}

/* Checkbox style */
.agree-label {
  color: #c1282a;
  font-weight: 500;
  margin-left: 6px;
}

.privacy-box input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #c1282a;
}
/* Submit Button */
.submit-btn {
  background-color: #c1282a;
  color: white;
  border: none;
  padding: 8px 24px;
  font-size: 14px;
  border-radius: 4px; /* minor rounding */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #a91f21;
}
/* -------------new css for Business Application box  ---------------- */

    .BAPP {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* height: 100%; */
  height: 310px;
}
.BAPP:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.BAPP .img-wrap {
  height: 180px;
  overflow: hidden;
}
.BAPP .img-wrap img {
  width: 100%;
  /* height: 100%; */
  height: 80%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.BAPP:hover .img-wrap img {
  transform: scale(1.08);
}
.BAPP .card-body {
  padding: 20px;
  padding-top: 0px;

}
.BAPP .label {
  font-size: 0.65rem;
  font-weight: 600;
  /* color: #6c757d; */
  color: #dc3545;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.BAPP .title {
  font-size: 1rem;
  font-weight: 900;
  color: #0B091B;
  margin-bottom: 4px;
}
.BAPP .subtitle {
  font-size: 0.95rem;
  /* color: black; */
  line-height: 1.3;
}
.BAPP:hover .title,
.BAPP:hover .subtitle {
  color: #dc3545; 
}