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

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

/* ======Bootstrap Icons===== */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
    url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: #1A191D;
  text-decoration: underline;
}


/* Topbar */
.topbar {
  background: #1A191D;
  color: #fff;
  font-size: 14px;
  padding: 15px 0;
  position: relative;
  z-index: 9;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-left img,
.topbar-right img {
  height: 12px;
  margin-right: 6px;
}

.topbar-right a {
  color: #fff;
}

.topbar-right div {
  padding: 0 15px 0px 0px;
  border-right: 1px solid #ffffff73;
}

.topbar-right div:last-child {
  padding: 0px;
  border-right: none;
}

/* Navbar */
.navbar {
  background: #36363682;
  padding: 10px 0;
  transition: background-color 0.3s ease;
  z-index: 9;
}

.navbar.sticky-top {
  background: #1A191D;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand img {
  height: 42px;
}

/* Nav link and underline */
.navbar-nav .nav-link {
  color: #fff;
  margin-right: 30px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.navbar-nav .link-text {
  position: relative;
  display: inline-block;
}

.navbar-nav .link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #FD761D;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover .link-text::after,
.navbar-nav .nav-link:focus .link-text::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #FD761D;
}

/* Hide default dropdown arrow */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

/* Style for custom dropdown icon */
.dropdown-icon {
  height: 6px;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  margin-top: 4px;
}

/* Rotate icon when dropdown is open (optional) */
.navbar-nav .dropdown.show .dropdown-icon {
  transform: rotate(180deg);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: #1f1f23;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  transition: all 0.3s ease;
  margin-top: 0;
  z-index: 1000;
}

/* Underline effect for dropdown items */
.dropdown-item {
  position: relative;
  font-size: 15px;
  padding: 10px 20px 8px 20px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 6px;
  height: 2px;
  width: 0;
  background-color: #FD761D;
  transition: width 0.3s ease;
}

.dropdown-item:hover::after,
.dropdown-item:focus::after {
  width: calc(100% - 50%);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #fff;
  color: #FD761D;
  width: fit-content;
}

/* Dropdown on hover - Desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    background: #fff;
  }

  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .navbar {
    background: #000000;
    padding: 10px 0;
    transition: background-color 0.3s ease;
  }

  .dropdown-menu {
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item::after {
    left: 15px;
    width: 0;
  }

  .dropdown-item:hover::after {
    width: calc(100% - 30px);
  }

  /* Adjust dropdown icon size for mobile */
  .dropdown-icon {
    height: 6px;
  }

  .navbar-nav .nav-link {
    color: #fff;
    margin-right: 30px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    justify-content: space-between;
  }
}

/* Contact Button */
.contact-btn {
  background: #FD761D;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 1px;
  font-weight: 500;
}

.contact-btn:hover {
  background: #1B7EAE;
  color: #fff;
}









/* ==========ABOUT US================= */
.about {
  padding-bottom: 30px;
}

h2.section-title {
  font-weight: 700;
  color: #1B2C40;
  font-size: 42px;
}

.section-subtitle {
  color: #1B2C40;
  font-size: 15px;
  margin-bottom: 10px;
}

.section-underline {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 30px;
}

.section-underline .orange-line {
  width: 105px;
  height: 5px;
  background-color: #f26522;
}

.section-underline .gray-line {
  height: 1px;
  width: 80px;
  background-color: #c2c2c2;
}

.abt-img {
  width: 100%;
  max-width: 460px;
}

.info-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 1px;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
}

.info-box img {
  height: 37px;
  width: 37px;
  margin-right: 10px;
}

.info-title {
  font-weight: 600;
  font-size: 20px !important;
  margin: 0;
  color: #0A0A0A;
}

.info-text {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.nav-tabs {
  border-top: 1px solid #c2c2c2;
  position: relative;
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #333;
  font-weight: 600;
  border: none;
  background: none;
  margin-right: 20px;
  position: relative;
}

.nav-tabs .nav-link.active::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: #f26522;
}

.tab-pane p {
  font-size: 15px;
  color: #1B2C40;
}

@media (max-width: 767.98px) {
  .nav-tabs .nav-link {
    margin-right: 0px;
    font-size: 14px;
    padding: 14px;
  }

  .about {
    padding-top: 30px;
  }

  h2.section-title {
    font-weight: 700;
    color: #0A0A0A;
    font-size: 32px;
  }
}


/* ============Services============ */



.service-card {
  background-color: #f9fafa;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-title {
  font-weight: 600;
  font-size: 24px;
  color: #132338;
}

.service-text {
  font-size: 15px;
  color: #1B2C40;
  margin: 15px 0;
}

.read-more {
  color: #FD761D;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

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

@media (max-width: 767.98px) {
  .service-card {
    text-align: center;
    padding: 20px 15px;
    display: flex;
    align-items: center;
  }
}



/*==========Why Choose Us   ============*/
.why-choose-section {
  background-color: #fff;
  padding: 40px 0px;
}

.why-left {
  background: url('../img/bg@2x.png') no-repeat center center/cover;
  color: #fff;
  position: relative;
  padding: 70px 40px;
}

/* .why-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
} */

.why-left .content {
  position: relative;
  z-index: 2;
}

.why-left h5 {
  color: #FD761D;
  font-size: 16px;
  font-weight: 500;
}

.why-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.why-left p {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 25px;
}

.why-left .btn-orange {
  background-color: #FD761D;
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 12px 25px;
  border-radius: 1px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.why-left .btn-orange:hover {
  background-color: #1B7EAE;
  color: #fff;
}

.why-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-left ul li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.why-left ul li i {
  color: #FD761D;
  margin-right: 10px;
  font-size: 18px;
}

.why-right {
  background-color: #fff4eb;
  padding: 60px 30px;
}

.why-right h3 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

.why-right h3 span {
  color: #FD761D;
  font-size: 49px;
  font-weight: 800;
}

.why-right p {
  font-size: 15px;
  color: #444;
  margin-bottom: 30px;
}

.stat {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.stat img {
  width: 50px;
  margin-right: 15px;
}

.stat-number {
  font-size: 26px;
  font-weight: 600;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

@media (max-width: 767px) {
  .why-left, .why-right {
    padding: 40px 20px;
  }

  .why-left h2 {
    font-size: 28px;
  }

  .why-right h3 {
    font-size: 26px;
  }
}



/* ==============Our Values=========== */

.values-section {
  background-color: #fff;
  padding: 30px 20px;
}

.values-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 25px;
}

.values-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.chip-image-container {
  position: relative;
  display: inline-block;
}

.chip-deco {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 60px;
  height: 60px;
  background-color: #FD761D;
  border-radius: 50%;
  z-index: 0;
}

.chip-main-img {
  border-radius: 20px;
  width: 100%;
  /* max-width: 400px; */
  position: relative;
  z-index: 1;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 42px;
}

.value-item img {
  width: 62px;
  height: 62px;
  margin-right: 15px;
}

.value-text h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.value-text p {
  margin: 0;
  font-size: 15px;
  color: #1B2C40;
}

@media (max-width: 767px) {
  .value-col {
    margin-bottom: 20px;
  }

  .chip-main-img {
    max-width: 100%;
  }

  .chip-deco {
    width: 40px;
    height: 40px;
    top: -15px;
    left: -15px;
  }
}



/*============Contact Us=  */
.contact-section {
  background: linear-gradient(to right, #263E52, #1A2B3F);
  color: #fff;
  padding: 60px 40px;
  border-radius: 20px;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1B2C40;
}

.form-control {
  border-radius: 0;
  height: 50px;
  font-size: 13px;
  padding-left: 15px;
  color: #000;
}

.form-label {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 5px;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.btn-submit {
  background-color: #FD761D;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 15px;
}

.btn-submit:hover {
  background: #1B7EAE;


}


.btn-submit i {
  margin-left: 10px;
}

/* .contact-img-wrapper {
      background-color: #FD761D;
      border-radius: 25px;
      text-align: center;
      padding: 20px;
    } */

.contact-img-wrapper img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .contact-img-wrapper {
    margin-top: 30px;
  }
}


/*=======BLOGS==============  */
.blog-section {
  padding: 40px 0px;
  background-color: #fff;
}

.blog-title {
  font-size: 42px;
  font-weight: 700;
}

.blog-subtitle {
  font-size: 15px;
  color: #555;
}

.btn-view-all {
  background: #FD761D;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-view-all:hover {
  background: #1B7EAE;
  color: #fff;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 5%);
  padding: 20px;
  color: #fff;
}

.blog-card-body h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.blog-section .read-more {
  font-size: 14px;
  color: #FD761D;
  font-weight: 600;
  text-decoration: underline !important;
}

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

@media (max-width: 767px) {
  .blog-title {
    font-size: 28px;
  }
}




/* =============Clients============ */
.clients-section {
  background-color: #FFF2E9;
}

.clients-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.clients-section p {
  color: #555;
  margin-bottom: 0;
}



.client-logo {
  /* background: #fff; */
  padding: 20px 30px;
  /* height: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); */
}

.client-logo img {
  max-height: 60px;
  object-fit: contain;
  max-width: 100%;
}

.btn-explore {
  background-color: #FD761D;
  color: white;
  border-radius: 1px;
  padding: 10px 30px;
  display: flex;
  white-space: nowrap;
  transition: all 0.3s ease;
  /* Smooth transition for hover */
}

.btn-services {
  background-color: white;
  color: #1A191D;
  border: 1px solid #ccc;
  border-radius: 1px;
  padding: 10px 30px;
  display: flex;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-weight: 500;
  /* Smooth transition for hover */
}

/* .btn-explore,
  .btn-services img{
    width: 16px;
    margin-left: 5px;
  } */

/* Hover effects */
.btn-explore:hover {
  background-color: #1B7EAE;
  /* Darker shade on hover */
}

.btn-services:hover {
  background-color: #f5f5f5;
  /* Light gray on hover */
}

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

  .btn-explore,
  .btn-services {
    font-size: 14px;
    /* Smaller text for mobile */
    padding: 8px 20px;
    /* Reduced padding */
    border-radius: 1px;
    /* Slightly rounded corners */
  }

  .btn-explore,
  .btn-services img {
    width: 12px;
  }
}

@media (max-width: 400px) {

  .btn-explore,
  .btn-services {
    font-size: 12px;
    /* Even smaller text for very small screens */
    padding: 6px 15px;
    /* Further reduced padding */
    width: 100%;
    /* Full width on very small screens */
    justify-content: center;
    /* Center content */
  }
}



/* ==================BreadCrumb================= */
.breadcrumb-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: -100px;
  z-index: 1;

}

.breadcrumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(50%); */
}

.breadcrumb-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

/* ================ABOUT US PAGE STARTS */
.about-section {
  padding: 40px 0;
  background-color: #fff;
}

.subtitle {
  color: #FD761D;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.about-section h2 {
  font-weight: 700;
  font-size: 40px;
  color: #1B2C40;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 15px;
  color: #1B2C40;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-img img {
  max-width: 500px;
  /* width: 100%; */
  /* max-height: 330px; */
  border-radius: 4px;
}

@media (max-width: 768px) {


  .about-img {
    margin-bottom: 30px;
  }

  .about-img img {
    max-width: 100%;
    /* max-height: 330px; */
    border-radius: 4px;
  }
}

/* ==============MISSION, VISION, VALUES============== */
.mv-section {
  padding: 40px 0px 40px 0;
  background-color: #fff;
}

.mv-card {
  background-color: #FEF3EE;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.mv-card img {
  height: 75px;
  margin-bottom: 20px;
}

.mv-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #003B29;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 14px;
  color: #4f4f4f;
  line-height: 1.7;
  margin: 0;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* ===============================
PRODUCT PAGE
==================================*/
.project-card {
  overflow: hidden;
  border: none;
  border-radius: 0;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -60px;
}

.project-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  flex: 0 0 400px;
  /* Fixed width area for consistent separator alignment */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.separator {
  width: 1px;
  height: 24px;
  background-color: #fff;
  margin: 0 20px;
}

.arrow-icon {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.project-card:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .project-title {
    flex: 1;
  }

  .separator {
    margin: 0 10px;
  }
}


/*===========HPC PAGE============  */
.hpc-section {
  padding: 40px 0;
}

.hpc-title {
  font-size: 38px;
  font-weight: 700;
  color: #1B2C40;
}

.hpc-description {
  font-size: 18px;
  color: #1B2C40;
  margin-bottom: 20px;

}

.features-box {
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  background: #fff;
  padding: 20px;
}

.features-heading {
  background: #FEF3EE;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  ;
  border-radius: 4px 4px 0 0;
}

.features-heading h5 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #132338;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item i {
  font-style: normal;
  margin-right: 15px;
  font-size: 18px;
}

.feature-text {
  font-size: 18px;
  color: #1B2C40;
  margin: 0;
}



@media (max-width: 767.98px) {
  .hpc-title {
    font-size: 28px;
  }
}

.spec-section .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1B2C40;
  margin-bottom: 20px;
}

.custom-table-wrapper {
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table tr:nth-child(odd) {
  background-color: #FEF3EE;
}

.custom-table tr:nth-child(even) {
  background-color: #ffffff;
}

.custom-table td {
  padding: 16px;
  font-size: 15px;
  color: #1B2C40;
  vertical-align: top;
}


.application-areas h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.application-areas h5 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  color: #1B2C40;
}

.application-areas p {
  font-size: 18px;
  color: #1B2C40;
  margin: 6px 0;
}


.receiver-title {
  font-weight: 700;
}

.note-title {
  color: #132338;
  font-size: 20px;
  margin-bottom: 2px;
}

.receiver-description,
.note-description {
  font-size: 16px;
  color: #333;
}

.receiver-features-heading h5 {
  font-weight: 700;
  font-size: 30px;
  color: #132338;
  margin-bottom: 20px;

}

.receiver-features-box {
  border: 1px solid #ddd;
  padding: 20px;
  background: #F5F6F7;
  border-radius: 6px;
}

.receiver-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.receiver-feature-item i {
  margin-right: 10px;
  color: #1B2C40;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
}

.receiver-feature-text {
  margin: 0;
  font-size: 18px;
  color: #1B2C40;
}



/* =====================================
Krisemi Ip Table
=========================================*/
.ip-data-container {
  margin: 40px auto;
}

.ip-title {
  font-weight: 700;
  color: #1B2C40;
  font-size: 34px;
  margin-bottom: 15px;
}

.ip-data-wrapper {
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.ip-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 900px;
  border-radius: 12px;
  overflow: hidden;
}

.ip-table-header {
  background-color: #fff3ec;
}

.ip-table-header th {
  font-weight: 600;
  padding: 18px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  color: #1B2C40;
}

.ip-table-row {
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.ip-table-row:nth-child(odd) {
  background-color: #f7f7f7;
}

.ip-table-row:hover {
  background-color: #f1f1f1;
}

.ip-table-row td {
  padding: 16px 14px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  color: #505050;
  vertical-align: middle;
  font-weight: 500;
}

@media (max-width: 768px) {

  .ip-table-header th,
  .ip-table-row td {
    font-size: 12px;
    padding: 12px 10px;
  }
}


/* ================================
CONTACT US PAGE
===================================*/
.contact-wrapper {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.right-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background-color: #132D3F;
  z-index: -1;
}

.contact-info-block {
  padding: 20px 30px;
  z-index: 2;
  position: relative;
}

.contact-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1B2C40;
  margin-bottom: 15px;
}

.contact-subtext {
  font-size: 15px;
  color: #1B2C40;
  margin-bottom: 35px;
  max-width: 450px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.info-icon-img {
  width: 60px;
  height: 60px;
}

.info-details strong {
  display: block;
  font-weight: 600;
  color: #1B2C40;
  font-size: 18px;
}

.info-details span {
  font-size: 18px;
  color: #1B2C40;
}

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

.form-card {
  background-color: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 50px 0px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #2A353C;
  margin-bottom: 25px;
}

.custom-input {
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  background-color: #f4f4f4;
}

.submit-btn {
  background-color: #FD761D;
  color: #fff;
  padding: 15px 40px;
  margin: 20px 0px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e75d14;
}

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

  .contact-info-block,
  .form-card {
    padding: 20px;
  }

  .right-bg {
    width: 100%;
    border-radius: 0;
  }
}

.form-card label {
  font-size: 14px;
  color: #2A353C;
  margin-bottom: 5px;
}


/* ==============================
CAREERS PAGE
===================================*/
/* -----------------------------------
Careers Page
--------------------------------------*/
/* Careers Page */
.careers-container {
  padding: 50px 0;
}

.careers-card {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 20px;
  background-color: #fff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.careers-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.careers-location {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.careers-location::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-geo-alt" viewBox="0 0 16 16"><path d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10 A6 6 0 0 0 2 6c0 4.314 6 10 6 10z"/><path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>');
  margin-right: 5px;
}

.careers-positions {
  margin-left: 15px;
  /* Adding gap between location and positions */
}

.careers-description-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.careers-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
  flex-grow: 1;
}

.careers-apply-btn {
  background-color: #FD761D;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  border-radius: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  width: fit-content;
}

.careers-apply-btn:hover {
  background-color: #1B7EAE;
}

/* Modern Modal Styling */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
}

.modal-header {
  border-bottom: none;
  padding: 20px 30px;
  background-color: #f8f9fa;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
}

.btn-close {
  filter: opacity(0.6);
  transition: filter 0.3s ease;
}

.btn-close:hover {
  filter: opacity(1);
}

.modal-body {
  padding: 30px;
}

.modal-body label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 8px;
  display: block;
}

.modal-body input,
.modal-body textarea {
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #dfe6e9;
  padding: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
  border-color: #FD761D;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.2);
  outline: none;
}

.modal-body textarea {
  resize: none;
}

.modal-footer {
  border-top: none;
  padding: 20px 30px;
  background-color: #f8f9fa;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-footer .btn-secondary {
  background-color: #ecf0f1;
  color: #7f8c8d;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.modal-footer .btn-secondary:hover {
  background-color: #dfe6e9;
}

.modal-footer .btn-primary {
  background-color: #FD761D;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.modal-footer .btn-primary:hover {
  background-color: #1B7EAE;
  transform: translateY(-2px);
}








/* ============Blog Details============ */

.blog-container {
  padding: 50px 0;
}

.post-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e2a41;
}

.post-meta {
  color: #f26522;
  font-size: 14px;
  margin-right: 20px;
}

.post-description {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

.sidebar-box {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-box h5 {
  background-color: #0b2c3d;
  color: #fff;
  font-size: 24px;
  padding: 16px 20px;
  margin: 0;
}

.search-box form {
  padding: 20px;
  display: flex;
  gap: 10px;
}

.search-box input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 0px;
}

.search-box .btn-search {
  background-color: #f26522;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 0px;
}

.recent-posts .post-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.recent-posts .post-item:last-child {
  border-bottom: none;
}

.recent-posts .post-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
}

.recent-posts .post-item small {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 4px;
}

.recent-posts .post-item h6 {
  font-size: 18px;
  margin: 0;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* Services List Styling */
.services-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.services-list ul li {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  color: #132338;
}

.services-list ul li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .post-title {
    font-size: 22px;
  }

  .sidebar-box h5 {
    font-size: 15px;
  }

  .recent-posts .post-item h6 {
    font-size: 13px;
  }

  .search-box form {
    flex-direction: column;
    gap: 10px;
  }
}




/* ================================
    OUR TEAM
    ===================================*/
.team-section {
  padding: 60px 0;
  text-align: center;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23EDEDED"/></svg>');
  background-size: 20px 20px;
}

.team-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.team-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
}

.team-buttons .btn-outline-dark {
  margin-right: 10px;
}

.team-card {
  background: #f8f8f8;
  border: none;
  border-radius: 10px;
  box-shadow: 1px 1px 0px 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card .card-body {
  background: #fff;
  text-align: left;
  padding: 15px 20px;
}

.team-card .card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.team-card .card-text {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 576px) {
  .team-section h2 {
    font-size: 1.75rem;
  }
}


/* ========================================================
SERVICES PAGE
===========================================================*/

.card-services {
  height: 100%;
  border: none;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease-in-out;
}

.card-services:hover {
  transform: translateY(-5px);
}

.card-services-img {
  height: 220px;
  object-fit: cover;
}

.card-services-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.section-underline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.section-underline .orange-line {
  width: 40px;
  height: 3px;
  background-color: #FD761D;
}

.section-underline .gray-line {
  flex-grow: 1;
  height: 1px;
  background-color: #ccc;
}

.card-services-text {
  color: #7f8c8d;
  font-size: 0.95rem;
}

.card-services-read-more {
  color: #FD761D;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
}
