/* ===============================
   Root Variables
   =============================== */
:root {
  --theme-color: #f9f2ef;
  --bg-color: #faf3f0;
  --bg-black: #000000;
  --bg-white: #ffffff;
  --bg-blue: #007aff;
  --text-color: #393939;
  --link-color: #686868;
  --transition: all 0.5s ease-in-out;
}

/* ===============================
   Global Base Styles
   =============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.67;
  color: var(--text-color);
  background-color: var(--bg-color);
  word-break: break-word;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ===============================
   Links
   =============================== */
a {
  color: var(--link-color);
  text-decoration: none;
  white-space: normal;
  transition: var(--transition);
  text-decoration: none !important;
}

a:hover,
a:focus {
  color: var(--text-color);
  outline: none;
}

/* ===============================
   Images
   =============================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   Form Elements
   =============================== */
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  appearance: none;
  border: none;
  background: transparent;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  transition: var(--transition);
}

/* ===============================
   Lists & Paragraphs
   =============================== */
ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

p {
  margin: 0 0 1em;
  margin-block-start: 0;
  margin-block-end: 0.9rem;
}

.top-pd {
  padding-top: 50px;
}

.bottom-pd {
  padding-bottom: 50px;
}

.sec-pd {
  padding: 5% 0 5%;
}

.sec-hd {
  text-transform: uppercase;
  color: #1b3e7a;
  font-size: 20px;
}

/* ===============================
   Utility Classes (Optional)
   =============================== */
/* ===============================
   Custom Scrollbar (WebKit Browsers)
   =============================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 10px;
  border: 2px solid var(--bg-color);
  transition: background-color 0.3s ease;
}

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

/* ===============================
   Firefox Scrollbar
   =============================== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color) var(--bg-color);
}

.inline_block li {
  display: inline-block;
}

.inline_block {
  margin: 0;
  padding: 0;
}

.line {
  font-size: 22px;
  position: relative;
  color: var(--color-yellow);
  background-color: #ffffff;
  z-index: 1;
  padding: 0px 10px 0 10px;
}

.line::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 13px;
  top: 2px;
  right: -42px;
  border-bottom: 2px solid var(--color-yellow);
  z-index: -1;
}

.line::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 20px;
  right: -51px;
  top: 14px;
  border-bottom: 2px solid var(--color-yellow);
  z-index: -1;
}

/* ===============================
          HEADER START
   =============================== */
.head-1 {
  background-color: var(--theme-color);
}

.img-1 img {
  width: 60%;
  margin: 13px;
}

.topbar {
  padding: 12px 0 12px 0;
}

.top-content li {
  padding: 0px 15px 0 0;
}

.top-content li a {
  color: #000;
  font-size: 16px;
}

.top-content li a:hover {
  color: var(--bg-blue);
  font-size: 16px;
}

.top-content li svg {
  color: var(--bg-blue);
}

.icon a {
  background-color: var(--bg-blue);
  padding: 6px;
  border-radius: 100px;
}

.icon a:hover {
  background-color: #000000;
  border-radius: 100px;
}

.icon svg {
  color: #fff;
}

nav.navbar.navbar-expand-lg {
  font-size: 18px;
  font-weight: 600;
  float: right;
}

.bg-black .head-btn a {
  background-color: #fff;
  color: #000;
  margin: 5px;
}

/* --- Mobile Specific Styles --- */

/* Initially hide the mobile menu */
#mobile-menu {
  display: none;
  width: 100%;
  background-color: #f8f8f8;
  /* Light background for mobile menu */
  position: absolute;
  z-index: 1000;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Show the mobile menu when the 'open' class is added by JS */
#mobile-menu.open {
  display: block;
}

/* Style for mobile list items */
#mobile-menu .navigation li {
  border-bottom: 1px solid #eee;
}

/* Style for the Toggle Button */
.menu-toggle {
  background: none;
  border: 1px solid #ccc;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 5px;
}

/* ===============================
           HAEDER END
   =============================== */

/* ===============================
           HERO BANNER START
   =============================== */
.hero-banner {
  /* background-image: linear-gradient(to right,
      rgb(6 6 6 / 79%),
      rgb(0 0 0 / 70%)),
    url(../img/hero-banner.jpeg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
  padding: 8% 0 8% 0;
}

.banner-about span a {
  color: #fff;
  font-size: 20px;
}

.banner-about h2 {
  font-size: 50px;
  font-weight: 600;
}

.hero-content {
  color: #fff;
}

.hero-content span {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-content h1 {
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  font-size: 63px;
}

.hero-banner p {
  font-size: 17px;
}

.home-slider {
  justify-content: center;
  align-items: center;
}

.home-slider img {
  border-top-left-radius: 400px;
  border-top-right-radius: 400px;
  height: 454px;
  width: 508px !important;
  margin: 0px auto;
  text-align: center;
}

.home-slider a {
  position: relative;
}

.home-slider a::after {
  content: "";
  position: absolute;
  background-color: #00000000;
  color: #1b3e7a;
  height: 300px;
  width: 372px;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0px auto;
  border-radius: 200px 200px 0 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
}

.home-slider .slick-track {
  margin: 0px auto;
  text-align: center;
}

/* /* .hero-content svg {
    color: rgb(0, 0, 0);
    border: 2px solid #ccc;
    border-radius: 100px;
    padding: 14px;
    height: 30px;
    width: 30px;
    position: relative;
    bottom: -17px;
    left: 23px;
} */

/* ===============================
           HERO BANNER END
   =============================== */
/* ===============================
            BOX SECTION START
=============================== */

.box-1 {
  text-align: center;
  margin: 0px auto;
  background-color: #000;
  color: #fff;
  padding: 18%;
  border-radius: 20px;
}

.box-1:hover {
  background-color: #1b3e7a;
}

.box-1 img {
  margin: 0px auto;
  height: 70px;
  width: 70px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 100px;
}

.box-1 img:hover {
  background-color: #1b3e7a;
  color: #1b3e7a;
}

.box-1 p {
  font-size: 19px;
  font-weight: 600;
  margin: 19px 0px;
}

.box-2 p {
  font-size: 19px;
  font-weight: 600;
  margin: 19px 0px;
}

.box-3 ul.inline_block svg {
  color: #ffffff;
}

.solution-content ul.inline_block svg {
  color: #0d6efd;
}

/* ===============================
      BOX SECTION END
=============================== */

/* ===============================
     ABOUT US START
=============================== */

.about-content h6 {
  text-transform: uppercase;
  color: #1b3e7a;
  font-size: 20px;
}

.about-content p {
  margin: 30px 0 0 0;
  /* font-size: 17px; */
}

.about .home-slider img {
  border-top-left-radius: 400px;
  border-top-right-radius: 400px;
  height: 80vh;
  width: 480px !important;
  margin: 0px auto;
  text-align: center;
  object-fit: cover;
}

.about .home-slider a::after {
  content: "";
  position: absolute;
  background-color: #00000000;
  color: #1b3e7a;
  height: 380px;
  width: 421px;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0px auto;
  border-radius: 200px 200px 0 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
}

.box-3 {
  background-color: #1b3e7a;
  color: #fff;
  padding: 4%;
  border-radius: 25px;
  margin: 20px 0 0 0;
  width: 100%;
}

.box-3 ul li {
  padding: 11px 6px 5px;
  font-weight: 500;
  font-size: 18px;
}

/* === Universal Reusable Button === */
.btn-1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background-color: #000;
  color: #fff;

  padding: 14px 26px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  transition: background-color 0.3s ease, transform 0.25s ease,
    box-shadow 0.3s ease;
}

/* Icon styling */
.btn-1 i,
.btn-1 svg {
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

/* Hover effects */
.btn-1:hover {
  background-color: #1b3e7a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn-1:hover i,
.btn-1:hover svg {
  transform: rotate(45deg) translate(3px, -3px);
}

/* Optional: Active (click) effect */
.btn-1:active {
  transform: translateY(0);
  box-shadow: none;
}

.box-4 {
  border: 1px solid #000;
  padding: 73px 21px 51px 103px;
  margin: 25px 141px 24px 142px;
  position: relative;
}

.box-4 {
  text-align: center;
}

.item {
  text-align: center;

  background-color: antiquewhite;

  width: 34%;

  border-radius: 10px;

  padding: 3%;

  position: absolute;

  top: 312px;

  border-bottom: 5px solid #203e79;
}

.count {
  font-size: 49px;
  display: inline;
}

.count span {
  display: inline-block !important;
  transform: translateY(-24px) !important;
}

.item span {
  font-size: 39px;
}

.trusted-clients {
  background-color: #203e79;
  color: #fff;
  padding: 35px;
}

.trusted-content h6 {
  font-size: 26px;
}

.clint-slider img {
  padding: 34px;
}

.trusted-content {
  position: relative;
}

.trusted-content::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  top: 3px;
  left: 100%;
  background: #ccc;
}

.trusted-content p {
  font-size: 20px;
}

/* ===============================
     ABOUT US END
=============================== */

/* ===============================
     SERVICE SECTION START
=============================== */

.service-content h6 {
  text-transform: uppercase;
  font-size: 20px;
  color: #1b3e7a;
}

.card-content {
  padding: 15px 26px 30px;
}

.card-content svg.icons-f {
  background-color: #fff;

  padding: 16px;

  border-radius: 100px;

  color: #ffffff;

  height: 20px;

  width: 20px;

  margin-bottom: 25px;

  background-color: #9b9b9b47;
}

.card-content svg.m-icons:hover {
  background-color: #000;
}

.main-card {
  background-color: #203e79;
  color: #fff;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.main-card .btn-1 {
  margin-top: 20px;
}

.main-card .btn-1 svg {
  font-size: 20px;
}

.card-content h3 {
  font-size: 23px;
}

.main-card .btn-1:hover {
  background-color: #fff;
  color: #000;
}

.card-content p {
  margin-top: 22px;
}

.main-card img {
  height: 275px;
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* ===============================
     SERVICE SECTION END
=============================== */
/* ---------- HEADING ---------- */
.contact-form h3 {
  text-align: center;
  font-size: 45px;
  margin: 10px 0 35px;
}

/* ---------- FORM WRAPPER ---------- */
.contact-form {
  background-color: #243e78;
  color: #fff;
  padding: 27px;
  border-radius: 18px;
}

/* ---------- INPUTS / TEXTAREA / SELECT ---------- */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #597cca;
  padding: 13px;
  border-radius: 8px;
  width: 100%;
}

/* ---------- PLACEHOLDER COLOR ---------- */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000000;
  opacity: 1;
}

/* ---------- FOCUS STATE ---------- */
.contact-form .form-control:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #7a97d9;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(122, 151, 217, 0.6) !important;
}

/* ---------- TEXTAREA SPECIFIC (height optional) ---------- */
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- BUTTON HOVER ---------- */
.contact-form .btn-1:hover {
  background-color: #fff;
  color: #1b3e7a;
}

.solution-content {
  /* font-size: 17px; */
  padding: 0;
  padding: 12% 26% 16% 17%;
}

.solution-content h3 {
  font-size: 31px;
  margin-bottom: 19px;
}

.solution-content .inline_block li {
  width: 89%;
  padding: 6px 1px;
  font-size: 18px;
  border: 1px solid #b7b7b7;
  border-radius: 100px;
  color: #000000;
  background-color: #fff;
  margin: 4px;
  padding: 9px 33px 10px 15px;
}

.contact-form {
  background-color: #243e78;
  color: #fff;
  padding: 27px;
  border-radius: 18px;
  margin: 4% 85px;
}

.my-first {
  /* background-image: linear-gradient(to right,
      rgb(6 6 6 / 79%),
      rgb(0 0 0 / 70%)),
    url(../img/solutionpage.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
}

.my-secne {
  /* background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0.79),
      rgba(255, 255, 255, 0.7)),
    url(../img/solution2.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
}

/* ===============================
     PROJECT SECTION START
=============================== */

.project-content p {
  margin-top: 45px;
}

.project-img img {
  margin-top: 40px;
  height: 292px;
  border-radius: 24px;
}

.project-img img:hover {
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0.79),
      rgba(255, 255, 255, 0.7)),
    url(../img/project2.jpg);
}

/* ===============================
     PROJECT SECTION END
=============================== */

/* ===============================
    PROCESS SECTION START 
=============================== */

.process {
  /* background-image: linear-gradient(to right,
      rgba(5, 3, 3, 0.79),
      rgba(0, 0, 0, 0.7)),
    url(../img/process-1.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.process .service-content {
  color: #ffffff;
  margin: 0 0 50px 0;
  text-align: center;
}

.process .service-content h6 {
  color: #fff;
  /* margin-left: 95px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
     PROCESS SECTION END
=============================== */

/* ===============================
     TITLE SECTION START
=============================== */

.title-content {

  text-align: center;
  margin: 0px auto;
  position: relative;
}



.title-icon svg {
  font-size: 20px;
  border-radius: 100px;
  width: 28px;
  height: 33px;
  margin: 0px;
  padding: 39px;
  background-color: #fff;
  color: blue;
}

.number {
  padding: 0 0 0 1px;
  border-radius: 100px;
  width: 28px;
  background-color: #243e78;
  margin: -24px 57px 16px 165px;
  position: relative;
}

.title-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
}

.title-content p {
  /* margin: 0 -60px; */
}

.countdown {
  background-color: #003366;
}

.countdown-1 .number-1 {
  color: #fff;
  justify-content: space-between;
  padding: 60px;
}

.number-1 h2 {
  font-size: 45px;
}

/* ===============================
    TITLE SECTION END
=============================== */

/* ===============================
    testimonial SECTION START
=============================== */

.testimonial {
  background-image: linear-gradient(to right,
      rgb(66, 52, 122),
      rgba(0, 0, 0, 0.7)),
    url(../img/testimonial.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px 0 90px 0;
}

.testimonial-content {
  color: #fff;
}

.testimonial-content h4 {
  font-size: 23px;
  font-weight: 700;
}

.testimonial-content h5 {
  margin-top: 26px;
  font-size: 34px;
  font-weight: 700;
}

.testimonial-content p {
  font-size: 17px;
}

.testimonial-card {
  padding: 35px 30px 35px 35px;
  color: #fff;
  margin: 0;
  background-color: #00000052;
  width: 97% !important;
}

.testimonial-card-1 .slick-slide {
  display: none;
  float: left;
  height: 100%;
}

.list-unstyled {
  margin-top: 9px;
}

ul.list-unstyled li img {
  width: 45px;
  border-radius: 100px;
  display: flex;
}

ul.list-unstyled span {
  padding: 0px 0px 0px 21px;
}

.social-media ul.list-unstyled li svg {
  color: #fff;
}

.social-media svg {
  font-size: 16px;
  border-radius: 100px;
  width: 24px;
  height: 25px;
  background-color: #0a3365;
  color: #fff;
  padding: 14px;
}

/* ===============================
    testimonial SECTION END
=============================== */

/* ===============================
    CONTACT US START
=============================== */

.contact {
  /* background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.699),
      rgba(0, 0, 0, 0.699)),
    url(../img/chemical-plant.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-content {
  text-align: center;
  align-items: center;
}

.contact-content h2 {
  font-weight: 700;
}

.contact-content p {
  font-size: 20px;
}

.contact-content .btn-1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #203e79;
  color: #fff;
  padding: 14px 44px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease,
    box-shadow 0.3s ease;
}

.contact-content .btn-1 i,
.btn-1 svg {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Hover effects */
.contact-content .btn-1:hover {
  background-color: #1b3e7a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.contact-content .btn-1:hover i,
.contact-content .btn-1:hover svg {
  transform: rotate(45deg) translate(3px, -3px);
}

/* Optional: Active (click) effect */
.contact-content .btn-1:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ===============================
   CONTACT US END
=============================== */

/* ===============================
   BLOG SECTION START
=============================== */
.card-1-content {
  padding: 15px 0px 0;
}

.card-1-content svg.m-icons {
  background-color: #fff;

  padding: 16px;

  border-radius: 100px;

  color: #ffffff;

  height: 20px;

  width: 20px;

  margin-bottom: 25px;

  background-color: #9b9b9b47;
}

.card-1-content svg.m-icons:hover {
  background-color: #000;
}

.main-card-1 {
  color: #000000;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.main-card-1 .btn-1 {
  margin-top: 20px;
}

.card-1-content h3 {
  font-size: 23px;
  color: #243e78;
}

.main-card-1 .btn-1:hover {
  background-color: #fff;
  color: #000;
}

.main-card-1 img {
  height: 275px;
  width: 100%;
  object-fit: cover;
  min-height: 280px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

/* ===============================
   BLOG SECTION END
=============================== */

/* ===============================
    FOOTER START
=============================== */

.main-footer {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.699),
      rgba(0, 0, 0, 0.699)),
    url(../img/footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0 9px;
}

.footer-link .icon a {
  background-color: var(--bg-blue);
  padding: 10px;
  border-radius: 100px;
}

.footer-link .icon a:hover {
  background-color: #000000;
  border-radius: 100px;
}

.footer-link .icon svg {
  color: #fff;
}

.footer-link p {
  color: #ffffff;
  padding: 23px 0 0 0;
}

.footer-link .top-content li {
  padding: 9px 0 0 0;
  margin-left: -35px;
  font-size: 17px;
  font-weight: 700;
}

.footer-link .top-content li a {
  color: #ffffff;
  font-size: 16px;
}

.footer-link .top-content li a:hover {
  color: #007aff;
  font-size: 16px;
}

.footer-link .top-content li svg {
  color: #fff;
}

.footer-link .top-content li svg:hover {
  color: #007aff;
}

.footer-link ul {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin: 10px 0 22px 0px;
}

.footer-link li {
  list-style: none;
  color: #fff;
  padding: 3px 45px 2px 0px;
  font-size: 18px;
}

.footer-link li svg {
  padding: 0px 5px 0 0;
  font-size: 12px;
  line-height: -7;
  margin: 1px 0;
}

.footer-link li:hover {
  color: #007aff;
}

.main-footer {
  position: relative;
}

.main-footer hr {
  color: #fff;
}

/* .main-footer::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 1px;
  top: 92%;
  left: 280px;
  background-color: #4c4b4b;
} */

.footer-bottom span {
  color: #fff;
}

.footer-bottom {
  padding: 3px 0 0 0;
}

.footer-bottom span a {
  color: #fff;
  font-size: 16px;
}

.footer-bottom {
  font-size: 13px;
}

.footer-bottom span a:hover {
  color: #ffd700;
}

/* ===============================
   FOOTER END
=============================== */

/* ===============================
            ABOUT PAGE START
   =============================== */

.hero-banner-about {
  /* background-image: linear-gradient(
      to right,
      rgb(6 6 6 / 79%),
      rgb(0 0 0 / 70%)
    ),
    url(../img/about.webp); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
}

.serive-banner {
  background-image: linear-gradient(to right,
      rgb(6 6 6 / 79%),
      rgb(0 0 0 / 70%)),
    url(../img/about.webp);
}

.banner-about.text-center.text-white {
  padding: 150px 0 150px 0;
}

.about-testimonial-content {
  color: #000000;
}

.about-testimonial .testimonial-card {
  background-color: #003366;
}

.about-testimonial-content h4 {
  font-size: 23px;
  font-weight: 700;
}

.about-testimonial-content h5 {
  margin-top: 26px;
  font-size: 34px;
  font-weight: 700;
}

.about-testimonial-content p {
  margin-top: 32px;
  font-size: 17px;
}

.about-trusted-clients {
  background-color: #203e79;
  color: #fff;
  padding: 35px 0;
  margin: 0 0 0 0;
}

.contact.mt-5 {
  padding: 40px 0 35px 0;
}

/* ===============================
           ABOUT PAGE END
   =============================== */

/* ===============================
           TESTIMONIAL PAGE START
   =============================== */

.testimonial-content .testimonial-card {
  padding: 40px 53px 33px 45px;
  background-color: #000;
}

/* ===============================
           TESTIMONIAL PAGE END
   =============================== */

/* ===============================
        CONTACT-US PAGE START
   =============================== */

.contact-banner {
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0.918),
      rgba(255, 255, 255, 0.918)),
    url(../img/contact-us.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
  padding: 8% 0 8% 0;
}

.contact-banner .list-unstyled {
  margin-top: 36px;
}

.testimonial-card ul.list-unstyled li svg {
  font-size: 16px;
  border-radius: 100px;
  width: 24px;
  height: 25px;
  background-color: #0a3365;
  color: #fff;
  padding: 14px;
}

ul.list-unstyled li svg {
  color: #000;
}

.contact-form-1 h2 {
  font-size: 35px;
  font-weight: 700;
}

.contact-form-1 {
  position: relative;
}

.contact-form-1::after {
  content: "";
  position: absolute;
  width: 43%;
  height: 1px;
  top: 84%;
  left: 0;
  right: 0;
  background-color: #746e6e;
}

.social-media h3 {
  padding: 47px 15px 0 0;
}

.contact-list {
  margin-top: 53px;
}

.contact-list .list-unstyled {
  margin-top: -16px;
}

.contact-contact-form {
  background-color: #243e78;
  color: #fff;
  padding: 33px 25px 72px;
  border-radius: 18px;
  /* margin: 8% -66px; */
}

.contact-form h3 {
  text-align: center;
  font-size: 45px;
  margin: 10px 0 35px;
}

/* ---------- FORM WRAPPER ---------- */
.contact-form {
  background-color: var(--bg-blue);
  color: #fff;
  padding: 27px;
  border-radius: 18px;
}

/* ---------- INPUTS / TEXTAREA / SELECT ---------- */
.contact-contact-form input,
.contact-contact-form textarea,
.contact-contact-form select {
  background-color: #203e79;
  color: #fff;
  border: 1px solid #597cca;
  padding: 13px;
  border-radius: 8px;
  width: 100%;
}

/* ---------- PLACEHOLDER COLOR ---------- */
.contact-contact-form input::placeholder,
.contact-contact-form textarea::placeholder {
  color: #e3e8ff;
  opacity: 1;
}

/* ---------- FOCUS STATE ---------- */
.contact-contact-form .form-control:focus,
.contact-contact-form input:focus,
.contact-contact-form textarea:focus,
.contact-contact-form select:focus {
  color: #fff !important;
  background-color: #203e79 !important;
  border-color: #7a97d9;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(122, 151, 217, 0.6) !important;
}

/* ---------- TEXTAREA SPECIFIC (height optional) ---------- */
.contact-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- BUTTON HOVER ---------- */
.contact-contact-form .btn-1:hover {
  background-color: #fff;
  color: #1b3e7a;
}

.map iframe {
  width: 100%;
}

/* ===============================
        CONTACT-US PAGE END
   =============================== */

/* ===============================
        INDUSTRIES PAGE START
   =============================== */

.industries-img img {
  border-radius: 20px;
  height: auto;
  margin-bottom: 20px;
}

.industries-content {
  padding: 50px 0 50px 0px;
}

.industries-content p {
  width: 100%;
  font-size: 18px;
}

.T-trusted-clients {
  background-color: #203e79;
  color: #fff;
  padding: 35px;
  margin: 50px 0 0;
}

/* ===============================
       INDUSTRIES PAGE END
   =============================== */

/* ===============================
        innovating PAGE START
   =============================== */

.innovating-img img {
  border-radius: 33px;
}

.innovating-content h2 {
  font-size: 38px;
  font-weight: 700;
}

.innovating-content h4 {
  font-size: 38px;
  font-weight: 600;
}

.recent {
  background-color: rgb(242 248 234);
  padding: 25px 15px 22px 38px;
  width: 350px;
}

img.img-fluid.img-1 {
  width: 87px;
  height: 45px;
  border-radius: 0;
}

/* ===============================
        innovating PAGE END
   =============================== */

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

.technical-content {
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 30px 0px rgba(213, 213, 213, 0.5);
  /* width: 425px; */
  padding: 5%;
}

.technical-content h3 {
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0px 0px 0px;
  text-align: center;
}

.technical-content li a {
  color: #1b3e7a;
  font-size: 19px;
  font-weight: 600;
  margin: 35px;
}

.technical-content ul li a {
  background-color: #007aff;
  color: #fff;
  margin: 0px;
  padding: 14px 32px 9px 21px;
  border-radius: 10px;
  width: 100%;
  display: block;
}

.technical-content ul li a:hover {
  background-color: #000;
  color: #ffff;
}

.technical-content.mt-5 li {
  padding: 4px 0px 12px 0px;
}

.technical-img img {
  border-radius: 30px;
}

.technical-1 {
  padding: 0 34px;
}

.technical-1 h3 {
  font-size: 29px;
  font-weight: 700;
}

.staffing {
  padding: 30px 25px 30px 40px;
  background-color: rgb(39 122 252);
  border-radius: 20px;
  margin-top: 32px;
  color: #ffff;
}

.staffing h5 {
  font-size: 20px;
}

.staffing ul li {
  padding: 5px 0 5px 0px;
  margin: -3px -35px;
}

.technical-bottom h5 {
  padding: 18px 0;
  font-size: 24px;
}

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

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff !important;
  background-color: var(--bg-blue) !important;
}

.project-img .img-hover-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-img .img-hover-box img {
  width: 100%;
  transition: 0.4s ease;
}

.project-img .img-hover-box:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}

/* Hover Icon */
.project-img .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: 0.3s ease;
  color: #fff;
  font-size: 45px;
}

.project-img .img-hover-box:hover .icon-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.policy-content h2 {
  margin-top: 55px;
}

section.login-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-check a {
  text-decoration: underline;
  color: #000;
}

.form-check a:hover {
  color: #000000;
}

.login-form form {
  width: 50% !important;
  margin: 0px auto;
}

.login-form form h2 {
  color: #000000;
}

/* CTA section */

.cta {
  position: relative;
  background-color: #203e79;
  padding: 90px;
  color: #fff;
}

.cta-heading h3 {
  font-size: 37px;
}

.cta-heading p {
  color: #447bf1;
}

.cta-heading {
  position: relative;
}

.cta-heading::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 150px;
  top: -26px;
  left: 285px;
  background-color: #447bf1;
}


.cta-heading p {
  font-size: 25px;
}

.cta-img img {
  position: absolute;
  width: 520px;
  top: -28px;
  right: 160px;
}

.cta-2 a:hover {
  background-color: #fff;
  color: #000;
}

.navbar ul .dropdown-menu {
  background-color: #000;
}

.navbar ul .dropdown-menu a {
  color: #fff;
}

/* COURSES SECTION */

.main-courses {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px 15px;
  margin: 10px -8px;
}

.course-img {
  position: relative;
}

.course-img img {
  border-radius: 10px;
}

.time {
  position: absolute;
  background-color: #000;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  top: 18px;
  left: 26px;
}

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

.courses-two__info a {
  border: 1px solid #ccc;
  padding: 10px 12px;
  margin: 2px;
  width: 95px;
  font-weight: 400;
  border-radius: 6px;
  color: #737272;
}

.courses-two__info h4 {
  color: #000000;
}

ul.d-flex.justify-content-between li a {
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.main-courses ul {
  padding-left: 0px;
  padding-right: 0px;
}

.pegi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pegi a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.pegi a:hover {
  background-color: #2258f2;
  color: #fff;
  border: 1px solid #000;
}

.input-group.flex-nowrap {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 2px 2px 50px 0 rgba(0, 0, 27, 0.1);
}

.input-group.flex-nowrap .form-control {
  background-color: #f5f5f5;
  margin: -15px;
  border-radius: 10px;
}

.input-group.flex-nowrap .input-group-text {
  margin: -15px;
  background-color: #007aff;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.input-group.flex-nowrap .input-group-text svg {
  margin: 4px 0px 4px 17px;
}

.categories {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 2px 2px 50px 0 rgba(0, 0, 27, 0.1);
}

.ct-1 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  border-radius: 5px;
  box-shadow: 2px 2px 50px 0 rgba(0, 0, 27, 0.1);
  padding: 14px 20px;
  gap: 5px;
  font-size: 15px;
  font-weight: 700;
}

.ct-1 a:hover {
  background-color: #007aff;
  color: #fff;
}

.ct-1 {
  margin: 15px -18px;
}

.skills {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 2px 2px 50px 0 rgba(0, 0, 27, 0.1);
}

.skills .form-check {
  margin: 12px;
  font-size: 17px;
}

/* COURSE DETAIL */

.video iframe {
  width: 800px;
  height: 500px;
}

.course-detail span {
  /* background-color: #000000; */
  color: #000000;
  padding: 8px;
  border-radius: 9px;
}

.course-detail h1 {
  font-size: 30px;
  font-weight: 700;
}

.f-1 p {
  color: #0d6efd;
  font-size: 16px;
  font-weight: 600;
}

.f-1 p span {
  color: #000;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.f-1 img {
  width: 100px;
}

ul#pills-tab {
  border: 1px solid #0d6efd;
  padding: 10px;
}

.nav-item button {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

div#pills-tabContent p {
  font-size: 20px;
}

.box-3 ul.inline_block {
  display: flex;
  flex-wrap: wrap;
}

.topbar ul.inline_block li {
  /* width: 424px;
    padding: 12px; */
  font-size: 19px;
  font-weight: 600;
}

ul.inline_block svg {
  color: #0d6efd;
}

.detail-1 span {
  font-size: 19px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #fff;
  margin: 8px 3px 0 1px;
  padding: 14px;
  box-shadow: 2px 2px 50px 0 rgba(0, 0, 27, 0.1);
}

.detail-1 svg {
  color: #0d6efd;
}

.share h4 {
  padding: 18px;
}

.share svg {
  font-size: 25px;
  margin: 5px;
  color: #0d6efd;
}

/* .share svg:hover{
  background-color: #0d6efd;
  color: #fff;
  border-radius: 100px;
  border: 1px solid #0d6efd;
} */

.discp_left ul {
  position: relative;
  gap: 110px;
}

.discp_left h3,
.discp_list h3 {
  font-weight: 600;
}

.discp_left ul::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 2px;
  background-color: #a0a0a0;
  top: 12px;
  left: 42%;
}

.discp_left ul li span img {
  max-width: 75% !important;
}

.discp_right {
  background-color: #fdf9f8;
  position: sticky;
  top: 0;
}

.discp_right .discp_list {
  padding: 40px;
}

.discp_right ul li span {
  font-size: 18px;
}

.share_detail .head_right ul li i {
  background-color: #000;
}

.share_detail .head_right ul li i:hover {
  background-color: #ffd700;
}

.lesson {
  font-size: 20px;
}

.lesson_list li {
  padding: 10px 10px 10px 20px;
  background-color: #fdf9f8;
}

.time_btn {
  background-color: #e9dad2;
  padding: 1px 5px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #000;
}

.time_btn .preview {
  background-color: #00adff;
  color: #fff;
  font-size: 14px;
  padding: 1px 3px;
}

.fa-lock {
  font-size: 20px;
}

.course-detail ul.inline_block li {
  width: 424px;
  padding: 12px;
  font-size: 19px;
  font-weight: 600;
}













/* newsletter Css */

.newsletter {
  /* background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.699), rgba(0, 0, 0, 0.699)),
    url(https://static.vecteezy.com/system/resources/thumbnails/011/914/760/small/industrial-factories-silhouette-background-blue-oil-refinery-complex-with-pipes-and-tanks-gas-production-rigs-with-endless-steel-vector.jpg); */
  /* margin-bottom: 30px; */
  padding: 25px;
}

.newsletter-content p {
  color: #fff;
}

.newsletter-img img {
  width: 340px;
  object-fit: cover;
  margin-left: 130px;
}

.newsletter-content {
  position: relative;
  margin: 52px;
}

.newsletter-content .btn-1 {
  background-color: #467dc0;
}

.newsletter-content h2 {
  font-size: 41px;
  font-weight: 800;
  color: #fff;
}