@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  color: var(--text-light);
  margin: 0 !important;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-color);
}

#root,
#__next {
  isolation: isolate;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}
/* !============== Reusable Styles ============== */

:root {
  /* Primary Theme */
  --primary-color: #ff7029;
  --primary-light: #66b2ff;
  --primary-dark: #0056b3;

  --secondary-color: #3a954f;
  --secondary-light: #a2a9af;
  --secondary-dark: #494f54;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;

  /* Text & Background */
  --text-color: #1f2220;
  --text-light: rgb(130, 130, 130);
  --text-light2: rgba(255, 255, 255, 0.65);

  --background-color: var(--white);
  --background-dark: #ebf3ed;
  --background-2: #1f2220;
  --background-light: #ebf3ed;

  /* Alerts / Feedback */
  --success: #28a745;
  --success-light: #71d88a;
  --success-dark: #1e7e34;

  --danger: #dc3545;
  --danger-light: #f28b98;
  --danger-dark: #a71d2a;

  --warning: #ffc107;
  --warning-light: #ffe082;
  --warning-dark: #c69500;

  --info: #17a2b8;
  --info-light: #7fd6e5;
  --info-dark: #0f6674;

  /* Accent Colors */
  --link-color: #0d6efd;
  --hover-color: #0b5ed7;
  --border-color: var(--gray-300);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.4s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
  --highlight-color: #ffffff;
}

.btn {
  background-color: var(--primary-color);
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
  display: block !important
  ;
  width: fit-content;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn:active {
  scale: 1.05;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

/* -------- btn 2 --------- */
.btn2 {
  background-color: var(--secondary-color);
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
  display: block !important;
  width: fit-content;
}

.btn2:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn2:active {
  scale: 1.05;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}
/* --------- btn 2 end ---------- */

section,
.footer {
  padding: 8rem 1rem;
}

.section_pre_title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.section_title {
  font-size: 4.6rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 2rem;
}

section,
main,
footer {
  /* top-bottom, left-right */
  padding: 9rem 7rem !important;
}

header {
  padding-inline: 7rem;
}

.container {
  max-width: 1350px; /* best balance */
  margin: 0 auto;
}
/* !============== Reusable Styles End ============== */

/* ============== Header Section start ============== */

header {
  background-color: rgba(95, 158, 160, 0);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 0.1rem solid rgba(224, 224, 224, 0.334);
  z-index: 999; /* Ensure header is above other content */
  transition: background-color 0.4s ease-in-out, top 0.4s ease-in-out; /* Smooth transition for background and top */
}

header .container {
  padding: 1.2rem 0;
}

.logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.logo_container:hover {
  color: white !important;
}
.navbar {
  border-color: transparent !important;
}

/* Dropdown open on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* removes flicker gap */
}

/* Space between brand & nav items */
.navbar-brand {
  margin-right: 40px; /* adjust as needed */
}

/* Default hidden */
.navbar .dropdown-menu {
  display: block; /* keep it for transition */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease; /* smooth animation */
  position: absolute; /* required for dropdown */
}

/* On hover - visible with animation */
.navbar .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-brand {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white); /* Default color */
  transition: color 0.4s ease-in-out;
}

.nav-link.active {
  font-weight: 500 !important;
  color: var(--primary-color) !important; /* Default active color */
}

.nav-link {
  font-size: 1.6rem;
  padding: 0 !important;
  font-weight: 500 !important;
  color: var(--white); /* Default color */
  transition: color 0.4s ease-in-out;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* When fixed after scroll */
#mainHeader.fixed {
  top: -100px; /* Hide the header completely when fixed */
  background-color: var(--background-2); /* Solid background for fixed header */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* When fully visible after scroll */
#mainHeader.fixed.show {
  top: 0; /* Slide down to visible position */
}

/* Adjust text color for fixed header */
#mainHeader.fixed .navbar-brand,
#mainHeader.fixed .nav-link {
  color: var(--white); /* Change text color for readability */
}

#mainHeader.fixed .nav-link.active {
  color: var(--primary-color) !important; /* Keep active link color */
}
/* ===============================
   Sidebar Navigation + Overlay
   =============================== */

/* Sidebar base */
.sidebar {
  position: fixed;
  top: 0;
  right: -320px; /* hidden by default */
  width: 300px;
  height: 100vh;
  background: #000; /* dark background */
  color: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
  padding: 3rem 2rem 2rem 4.4rem;
  transition: right 0.45s ease-in-out;
  z-index: 1500;
  display: flex;
  flex-direction: column;
}

/* Sidebar open */
.sidebar.show {
  right: 0;
}
/* Close Button */
.close-btn {
  position: absolute;
  background-color: var(--secondary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  right: 25px;
  border-radius: 5px;
}

.close-btn span {
  display: inline-block; /* ✅ rotation ke liye */
  font-size: 2rem;
  line-height: 1; /* ✅ extra space hatane ke liye */
  color: #fff;
  transition: transform 0.3s ease;
  transform-origin: center center; /* ✅ rotate from center */
}

.close-btn span:hover {
  transform: rotate(90deg);
}

/* Sidebar Nav */
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin-top: 7rem;
  flex-grow: 1;
}
.sidebar-nav li {
  margin-bottom: 1rem;
}
.sidebar-nav a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
}
.sidebar-nav a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(22, 22, 22, 0.739);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1400;
}
#overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Desktop disables sidebar + overlay */
@media (min-width: 992px) {
  #sidebarMenu,
  #overlay {
    display: none;
  }
  body {
    transform: none !important;
  }
}

/* ============== Header Section end ============== */

/* ============== Hero Section start ============== */
.hero_section {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    /* rgba(0, 0, 0, 0), */ rgba(0, 0, 0, 0.2)
  );
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: start;
  width: 100%;
  position: relative;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 102%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  scale: 1.01;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.hero_content {
  /* padding: 2rem; */
  max-width: 800px;
}

.hero_content h1 {
  font-size: clamp(5rem, calc(2.655rem + 2.955vw), 6.4rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero_content p {
  font-size: clamp(1.4rem, calc(1rem + 0.42vw), 1.5rem);
  line-height: 1.6;
  margin-bottom: 0 !important;
  color: var(--white);
}

.highlight_txt {
  color: var(--highlight-color);
}

.welcome_text {
  position: relative;
  font-size: clamp(1.4rem, calc(1rem + 0.42vw), 1.6rem);
}
.welcome_text::after {
  content: " ";
  position: absolute;
  width: 100%;
  display: block;
  bottom: -0.1rem;
  height: 0.1rem;
  background-color: white;
}

/* ============== Hero Section end ============== */

/* ============== Services Section start ============== */
.tp-service-5-item {
  gap: 1.4rem;
  align-items: center;
  transition: all 0.3s ease;
  /* padding-top: 5rem; */
}

.tp-service-5-item-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  box-shadow: 0 4px 8px rgba(57, 57, 57, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tp-service-5-item:hover .tp-service-5-item-icon span {
  background-color: var(--secondary-color);
}
.tp-service-5-item-icon span {
  color: var(--secondary-color);
}
.tp-service-5-item:hover .tp-service-5-item-icon span {
  color: white;
}
.tp-service-5-item:hover .tp-service-5-item-content h4 {
  color: var(--secondary-color);
}

.tp-service-5-item-content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
}

.tp-service-5-item-content p {
  font-size: 1.4rem;
}
/* ============== Services Section end ============== */

/* ============== Who_we_are_section Section start ============== */
.Who_we_are_section .grid_col_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.content_side p {
  font-size: 1.6rem;
  color: var(--text-light);
  font-weight: 400;
}
.content_list {
  margin-bottom: 40px;
  margin-top: 20px;
}
.content_list li {
  list-style: none;
  font-size: 1.6rem;
  color: var(--text-color);
  display: flex;
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style-position: inside;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content_list li span {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  height: 1.8rem;
  width: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3rem;
  margin-right: 0.8rem;
}
/* ============== Who_we_are_section Section end ============== */

/* ============== cta area Section start ============== */

.cta_section {
  background-color: var(--primary-color);
  padding: 2.2rem 4rem;
}

.tp-cta-wrapper p {
  margin-bottom: 0 !important;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;

  & a {
    color: var(--white);
    text-decoration: underline;
  }
}
/* ============== cta area Section end ============== */

/* ============== type of services Section start ============== */

.services_mini_card_container {
  margin-top: 6rem;
}
.section-desc {
  font-size: 1.6rem;
  width: 80%;
}
.card_title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.card_title ~ p {
  font-size: 1.6rem;
}
.services_mini_card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
.services_mini_card_container .services_mini_card {
  border: 1px solid var(--secondary-color);
  padding: 3rem 3rem;
  width: fit-content;

  margin-bottom: 0 !important;
  max-width: 40rem;
  border-radius: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.services_mini_card_container .services_mini_card:hover {
  box-shadow: 0px 0px 20px 0px rgba(15, 16, 36, 0.1);
  transform: translateY(-5px);
}

.tp-service-4-item-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.tp-service-4-item-icon span {
  transition: all 0.3s ease;
}

.services_mini_card:hover .tp-service-4-item-icon span {
  transform: translateY(-10px);
  scale: 1.05;
}
/* ============== type of services Section end ============== */

/* ============== counter Section start ============== */
.tp-counter-item {
  flex-direction: column;
}
.tp-counter-wrap {
  padding: 4rem 8rem;
  border-radius: 8rem;
  box-shadow: 0px 0px 40px 0px rgba(15, 16, 36, 0.08);
  justify-content: space-between;
  gap: 8rem;
  background-color: var(--white);
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.tp-counter-item-title {
  color: var(--primary-color);
  font-size: 6rem;
  font-weight: 700;
  margin-right: 1.4rem;
}
.tp-counter-item-text {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 600;
}
.counter_section .row {
  max-width: 70vw;
  margin-inline: auto;
}
/* ============== counter Section end ============== */

/* ============== our_projects_section Section start ============== */

.our_projects_section {
  background-color: var(--background-2);
}
.our_projects_section .section_title {
  color: var(--white);
}

.swiper {
  width: 100%;
  height: 64vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  width: 60%;
}

.swiper-slide:nth-child(2n) {
  width: 40%;
}

.swiper-slide:nth-child(3n) {
  width: 20%;
}

.section_top {
  display: flex !important;
  margin-bottom: 3rem;
}
.swiper-nav,
.swiper-nav2 {
  display: flex;
  gap: 10px;
}

.swiper_prev_btn {
  border: none !important;
  outline: none !important;
}

.swiper_prev_btn,
.swiper_next_btn {
  position: static; /* default absolute hatao */
  width: 60px;
  height: 60px;
  background: var(--secondary-color); /* Changed to secondary-color */
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper_prev_btn:hover,
.swiper_next_btn:hover {
  background-color: var(--primary-color); /* Hover effect for both */
}

.swiper_prev_btn i,
.swiper_next_btn i {
  color: white; /* Changed to white for both */
  font-size: 2rem;
  line-height: 0;
  transition: all 0.3s ease;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%; /* The visible height when hovered */
  background: linear-gradient(
    to top,
    #40b85c 0%,
    rgba(69, 176, 69, 0.3) 60%,
    rgba(0, 128, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  padding-bottom: 30px;
  color: #fff;
  transform: translateY(100%); /* Initially hidden below the card */
  opacity: 0; /* Initially invisible */
  transition: transform 0.4s ease-out, opacity 0.4s ease-out; /* Smooth transition for both */
  display: none;
}

/* .project-card:hover .overlay {
  transform: translateY(0);
  opacity: 1; 
} */

.project-card .title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light2);
  text-align: left;
}

.project-card .subtitle {
  margin: 0 0 5px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
}

/* -------- slider_bottom_text -------- */

.slider_bottom_text {
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

.slider_bottom_text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
}

.slider_bottom_text span {
  color: var(--secondary-color);
}

/* ============== our_projects_section Section end ============== */

/* ============== feedback Section start ============== */
.feedback_section .grid_col_2 {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
}

.feedback_card {
  height: 45vh;
  border-radius: 18px;
  box-shadow: 0px 0px 10px 0px rgba(0, 1, 38, 0.2);
}
.mySwiperFeedback {
  height: fit-content;
  background-color: #f9f9fb !important;
}

.feedback_user_container {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.feedback_user_container img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 0px 10px 0px rgba(0, 1, 38, 0.2);
}

.user_info {
  flex: 1;
}
.user_name {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1;
}
.designation {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
}

.swiper-slide.feedback_card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 1, 38, 0.1);
  padding: 3rem 2rem 3rem 3rem;
  text-align: left;
}

.quote {
  display: flex;

  margin-top: 1rem;
  padding-top: 2rem;
}

.quote img {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  margin-top: -1rem;
}

.feedback_text {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-color);
  text-align: left;
  text-justify: inter-word; /* balances word spacing */ /* breaks long words nicely */
  text-align-last: left; /* only last line aligns left, looks natural */
  line-height: 1.5; /* breaks long words nicely */
}

/* 
.swiper-button-next2 {
  background-color:  #f2f2f2;
  
 
} */

.swiper_prev_btn:hover {
  background-color: var(--secondary-color);
}
.swiper_prev_btn:hover i {
  color: white;
}

.swiper_prev_btn i,
.swiper_next_btn i {
  color: white;
  font-size: 2rem;
  line-height: 0;
  transition: all 0.3s ease;
}

/* ============== feedback Section end ============== */

/* ============== Team Section start ============== */
.team_member_card .team_img_container {
  height: 280px;

  /* margin-bottom: -4rem; */
}
.team_member_card {
  width: 280px;
  background-color: var(--secondary-color);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1),
    0 16px 24px rgba(0, 0, 0, 0.1);
}
.team_member {
  gap: 4rem !important;
}

.team_member_card {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.team_member_card .team_img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.social_media {
  position: absolute;
  bottom: 10rem;
  right: 0%;
  z-index: 10;
  background-color: #ffe8d558;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 55%;
  padding: 0.7rem 0.7rem;
  border-radius: 3rem;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.68, -1.5, 0.27, 2.5);
}

/* .team_member_card:hover .team_img_container img {
  transform: scale(1.05);
} */
.team_member_card:hover .social_media {
  transform: translateX(60%);
}
.team_member_details {
  border-radius: 16px;
  padding: 2rem;
  display: flex; /* keep it always flex */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  /* position: absolute; */
  /* transform: translate(-50%, -10px);  */
  left: 50%;
  /* bottom: -7rem; */
  transition: all 0.3s ease-in-out;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
}

/* .team_member_card:hover .team_member_details {
  opacity: 1;
  transform: translate(-50%, 0); 
  pointer-events: auto;
} */

.team_member_name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1;
}
.team_member_role {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light2);
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}

.social_media {
  display: flex;
  gap: 1rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.social_icon {
  transition: all 0.3s ease;
}
.social_icon svg {
  transition: all 0.3s ease-in-out;
  width: 3.6rem;
  height: fit-content;
  background-color: white;
  border-radius: 50%;
  padding: 0.3rem;
}
.social_icon:hover i {
  color: var(--primary-color);
}
/* ============== Team Section end ============== */

/* ============== work_safety Section start ============== */
.work_safety .grid_col_2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
}
/* ============== work_safety Section end ============== */

/* ============== Our_client slider Section start ============== */
.our_client {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our_client img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
}
.our_client img:hover {
  filter: grayscale(0%);
  scale: 1.05;
  transition: all 0.3s ease-in-out;
}
.swiper-wrapper.our_client_wrapper {
  height: 170px !important;
}
.mySwiperOurClient {
  height: fit-content !important;
}
/* ============== Our_client slider Section end ============== */

/* ============== contact_us_form Section start ============== */
.contact_us_form .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;

  gap: 8rem;
}
.contact_us_form {
  background: linear-gradient(
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.4)
    ),
    url("bg1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.left_side {
  order: 2;
}

.contact_us_form .section_heading {
  margin-bottom: 3rem;
}
.contact_us_form .section_heading h5 {
  margin-top: 1rem;
  font-size: 2rem;
  color: var(--text-color);
  font-weight: 600;
}

.contact_us_form .section_heading p {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact_details_container {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0rem;
  margin-top: 2rem;

  /* background-image: linear-gradient(
    20deg,
    var(--background-2) 0%,
    var(--background-2) 30%,
    rgba(9, 235, 99, 0.095) 60%,
    rgba(9, 235, 99, 0.215) 80%,
    rgba(30, 255, 109, 0.367) 100%
  ); */
}

.contact_details_container > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0rem;
  margin-bottom: 5rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(0, 0, 0);
  padding: 2rem 2rem;
  position: relative;
  padding-top: 4.4rem;
}
.contact_details_container > div .icon-container {
  display: flex;
  position: absolute;
  background-color: black;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -3.2rem;
}

.contact_details_container div i {
  font-size: 2.4rem;
  color: var(--primary-color);
}
.contact_details_container div span {
  font-size: 1.7rem;
  color: var(--text-color);
  font-weight: 700;
}
.contact_details_container div a {
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: 400;
  transition: color 0.3s ease;
  text-align: center;
}
.contact_details_container div a:hover {
  color: var(--primary-color);
}
.form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact_details_container {
  position: relative;
  z-index: 1;
}

.contact_details_container i {
  font-size: 24px;
  color: #667eea;
  /* margin-right: 20px; */
}

.contact_details_container span {
  color: #f7fafc;
  font-size: 16px;
  font-weight: 500;
}

.form_group {
  margin-bottom: 16px;
  position: relative;
}

.form_group label {
  display: block;
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  font-size: 16px;
  color: #2d3748;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: none;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.form_group.error input,
.form_group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form_group.success input,
.form_group.success textarea {
  border-color: #38a169;
}

.form_group .error {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 6px;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form_group.error .error {
  opacity: 1;
  transform: translateY(0);
}

#contactForm {
  position: relative;
}
.success-message {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  display: block;
  transform: translateY(-40px);
  opacity: 0;
  position: absolute;
  z-index: 10;
  bottom: 80px;
  margin: 0 !important;
  font-size: 1.6rem;
  font-weight: 600;
  left: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Default button */
.contact_us_form .btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 1.6rem 3rem;
  border: none;
  border-radius: 12px;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  margin-top: 4.2rem;
}

/* Smooth elegant loading background */
.contact_us_form .btn.loading-state {
  background: var(--secondary-color);
}

.contact_us_form .btn.loading-state::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--success-dark);
  animation: shimmer 2s infinite linear;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Loader and text (same as before) */
.btn-loading-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
  position: relative;
}

.loading {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sending-text::after {
  content: "...";
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.career_info_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info_card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background-color: white;
  border-radius: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.info_card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-left-color: var(--secondary-color);
}

.info_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  border-radius: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info_card:hover .info_icon {
  background: linear-gradient(135deg, var(--secondary-color), #52c75a);
  transform: scale(1.05);
}

.info_icon i {
  font-size: 2.5rem;
  color: white;
}

.info_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.info_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.info_text,
.info_link {
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 !important;
}

.info_link {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.info_link:hover {
  color: var(--secondary-color);
}

/* Responsive Career Info Cards */
@media (width < 900px) {
  .info_card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .info_icon {
    width: 5.5rem;
    height: 5.5rem;
  }

  .info_icon i {
    font-size: 2.2rem;
  }

  .info_title {
    font-size: 1.6rem;
  }

  .info_text,
  .info_link {
    font-size: 1.4rem;
  }
}

@media (width < 768px) {
  .career_info_container {
    gap: 1.5rem;
  }

  .info_card {
    padding: 1.8rem;
    gap: 1.2rem;
  }

  .info_icon {
    width: 5rem;
    height: 5rem;
  }

  .info_icon i {
    font-size: 2rem;
  }

  .info_title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .info_text,
  .info_link {
    font-size: 1.3rem;
  }
}

@media (width < 580px) {
  .info_card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }

  .info_icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .info_icon i {
    font-size: 1.8rem;
  }

  .info_title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .info_text,
  .info_link {
    font-size: 1.2rem;
  }
}

/* ============== contact_us_form Section end ============== */

/* ============== footer Section start ============== */
footer {
  background-color: var(--background-2);
  padding: 4rem 1rem;
  color: var(--text-light2);
}

.footer_logo {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer_description {
  font-size: 1.6rem;
  color: var(--text-light2);
  line-height: 1.6;
  width: 60%;
}

footer h5 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2rem;
}
.social_icon_container {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}
.footer_links {
  list-style: none;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.footer_links li {
  margin-bottom: 1rem;
}
.footer_links li a {
  font-size: 1.6rem;
  color: var(--text-light2);
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-block; /* important for transform to work properly */
}

.footer_links li a:hover {
  color: var(--primary-color);
  transform: translateX(5px); /* move right by 5px */
}

.footer_links i {
  margin-right: 0.8rem;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.social_icon_container a {
  font-size: 1.8rem;
  color: var(--text-light2);
  transition: all 0.3s ease-in-out;
  border: 0.1rem solid var(--text-light2);
  display: inline-block;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  position: relative;
  border-radius: 50%;
  margin-top: 0.5rem;
}

.social_icon_container a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social_icon_container a:hover {
  border-color: var(--primary-color);
}

.copyright_container {
  padding: 2rem 0;
  color: var(--text-light2);
  border-top: 0.1rem solid rgba(128, 128, 128, 0.193);
}

.copyright_container p {
  margin-bottom: 0 !important;
  font-size: 1.4rem;
}

.contact_footer_links li {
  position: relative;
}

.contact_footer_links li i {
  position: absolute;
}

.contact_footer_links li a {
  margin-left: 3rem;
}
/* ============== footer Section end ============== */

.navbar-toggler {
  padding: 1rem;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.navbar-toggler:hover {
  background-color: var(--secondary-color);
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%233a954f' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

@media (width < 992px) {
  .header_btn {
    display: none !important;
  }
  .navbar-collapse {
    background-color: white;
  }
  .nav-link {
    color: var(--text-color) !important;
    padding: 1.2rem 0 !important;
    border-bottom: 0.1rem solid rgba(224, 224, 224, 0.334);
  }
  .nav-link:hover {
    color: var(--primary-color) !important;
  }
  .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
  }

  .nav-link::after {
    display: none;
  }
}

/* ! ===================================================================== */
/* ?----------------------- About Us Page ----------------------------- */
/* ! ===================================================================== */

.page_top_heading {
  height: 60vh;
  background: url("bg2.avif");
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;
}

.services-pg.page_top_heading {
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.716)),
    url("bg4.avif");
  background-position: center center;
}

.contact-us-page.page_top_heading {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("bg6.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.career-us-page.page_top_heading{
 background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("bg8.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page_top_heading_container h1 {
  text-align: left;
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.breadcrumb {
  font-size: 1.6rem;
  font-weight: 500;
  color: white !important;
}
.breadcrumb a {
  color: var(--secondary-color);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.Who_we_are_section.about_us img {
  object-fit: cover;
  height: 100%;
}

.Who_we_are_section.about_us {
  background-color: var(--background-light);
}

/* ============== values Section start ============== */
.values_card_container {
  max-width: 90%;
  display: flex;
  gap: 2.4rem;
  margin-top: 6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
}
.values_card_container div {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 2rem 2rem;
  box-shadow: 0px 0px 2px 1px rgba(0, 1, 38, 0.1);
  flex: 1 0 85%; /* grow, shrink, basis */
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.values_card_container div svg {
  display: inline-block;
  background-color: white;
  height: 50px;
  width: 50px;
  padding: 1rem;
  border-radius: 50%;
}
.values_card_container div p {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 0 !important;
  font-weight: 600;
}
/* ============== values Section end ============== */

.team_section.about_us {
  background-color: var(--background-light);
  padding: 10rem 0;
}

/* ============== our_commitment Section start ============== */
.our_commitment_section {
  background-color: var(--background-2);
}

.our_commitment_section .section_heading h4 {
  color: var(--white);
}
.our_commitment_section .section_heading p {
  color: var(--text-light2);
}

.our_commitment_section .d-flex {
  display: flex;
  margin-top: 6rem;
  justify-content: center;
  gap: 4rem;
}
.our_commitment_section .d-flex div {
  color: var(--text-light2);
}
.our_mission div,
.our_vision div {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  max-width: 70rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.our_commitment_section .d-flex .card_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}
.our_vision,
.our_mission {
  box-shadow: 0 0 0 5px #4dff9a2e;
  padding: 30px 40px;
  border-radius: 20px;
}

.our_mission {
  background-image: linear-gradient(
    20deg,
    var(--background-2) 0%,
    var(--background-2) 30%,
    rgba(9, 235, 99, 0.095) 60%,
    rgba(9, 235, 99, 0.215) 80%,
    rgba(30, 255, 109, 0.367) 100%
  );

  overflow: hidden;
}
/* ============== our_commitment Section end ============== */

/* ============== founder_message Section start ============== */

.founder_message_section .d-flex {
  background-color: var(--background-2);
  border-radius: 30px;
  display: flex;
  padding: 6rem 7rem 4rem 9rem;
  gap: 6rem;
  align-items: center;
  /* flex-wrap: wrap; */
  background-image: linear-gradient(
    var(--background-2),
    rgba(0, 255, 110, 0),
    rgba(9, 235, 99, 0.05) 60%,
    rgba(9, 235, 99, 0.2) 80%,
    rgba(30, 255, 109, 0.28) 100%
  );
}
.founder_message_section .founder_details img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;

  box-shadow: 0 0 0 5px rgba(43, 255, 128, 0.533);
  margin-bottom: 2rem;
}
.founder_details {
  flex: 1 0 250px;
}
.message {
  position: relative;
}
.message img {
  position: absolute;
  width: 170px;
  left: -4rem;
  top: -5rem;
  opacity: 0.2;
  pointer-events: none;
}
.message .founder_quote {
  padding-left: 2rem;
  display: inline-block;
  margin-top: 60px;
  font-size: 1.6rem;
  color: var(--text-light2);
  line-height: 1.8;
  margin-bottom: 0 !important;
}
.message .founder_name {
  display: block;
  color: var(--primary-color);
  font-size: 1.6rem;
  text-align: right;
  margin-top: 1rem;
  margin-right: 5rem;
}

/* ============== founder_message Section end ============== */

/* ============== iso Section start ============== */

.iso_section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  /* flex-direction: column; */
}
.iso_section .container span {
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: 500;
  /* text-align: center; */
  width: 70%;
}
.iso_section .container img {
  max-width: clamp(300px, 50vw, 660px);
}
/* ============== iso Section end ============== */

/* ! ===================================================================== */
/* ?----------------------- About Us Page End ----------------------------- */
/* ! ===================================================================== */

/* ! ===================================================================== */
/* ?----------------------- Services Page start ----------------------------- */
/* ! ===================================================================== */

/* ============== all_services Section start ============== */

.all_services {
  background-color: var(--background-light);
}
.all_services .section_heading span,
.image_gallery .section_heading span {
  font-size: 1.6rem;
  width: 60%;
  text-align: center;
  margin-inline: auto;
  display: inline-block;
  color: var(--text-light);
}
.services_container .d-flex {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.services_container .d-flex div {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.6rem;
  background-color: white;
  padding: 2rem 3rem;
  border-radius: 25px;
  box-shadow: 0 0 20px -7px rgba(43, 255, 128, 0.477);
}

.services_container .d-flex div:hover {
  box-shadow: 0 0 30px -3px rgba(43, 255, 128, 0.477);
}
/* ============== all_services Section end ============== */

/* ============== get in touch Section start ============== */

.get_in_touch {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.273)),
    url("img4.avif");
  background-repeat: no-repeat;
  background-position: center;
  padding: 11rem 0;
}
.get_in_touch .header_btn {
  width: fit-content;
}
.get_in_touch .section_title {
  color: var(--white);
}
.get_in_touch span {
  color: rgba(255, 255, 255, 0.788);
  font-size: 1.4rem;
  margin-bottom: 3.4rem;
  margin-top: 1rem;
}
/* ============== get in touch Section end ============== */

/* ! ===================================================================== */
/* ?----------------------- Services Page End ----------------------------- */
/* ! ===================================================================== */

/* ! ===================================================================== */
/* ?----------------------- Projects Page  ----------------------------- */
/* ! ===================================================================== */

.our_projects_section.projects {
  background-color: var(--background-light);
}
.our_client_slider.projects {
  background-color: var(--background-2);
}

/* ! ===================================================================== */
/* ?----------------------- Projects Page End ----------------------------- */
/* ! ===================================================================== */

/* ! ===================================================================== */
/* ?----------------------- Responsive Design ----------------------------- */
/* ! ===================================================================== */

/* Tablets (768px–1023px) */
@media (width < 1024px) {
  .feedback_section .grid_col_2 {
    grid-template-columns: 1fr;
  }
  .swiper-nav2 {
    display: none;
  }
  .feedback_section .section_heading {
    margin-bottom: 40px;
  }
  .contact_details_container div a {
    text-align: center;
  }

  .founder_message_section .d-flex {
    flex-direction: column;
    gap: 4rem;
    flex-direction: column-reverse;
    padding: 4rem 3rem;
  }
  .founder_message_section .founder_details {
    max-width: 50%;
  }
  .founder_details {
    flex: 0;
  }

  .message .founder_quote {
    padding-left: 0;
  }
  .all_services .section_heading span {
    width: 95%;
  }

  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (width < 900px) {
  html {
    font-size: 57%;
  }
  .Who_we_are_section .grid_col_2,
  .work_safety .grid_col_2 {
    display: flex;
    gap: 4rem;
    flex-direction: column;
  }

  .img-fluid {
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
  }

  .tp-counter-item {
    flex-direction: column;
    text-align: center;
  }

  .tp-counter-wrap {
    padding: 7rem 7rem;
    gap: 6rem;
  }
  .counter_section .row {
    max-width: 100%;
  }

  .section_title.text-center {
    width: 100% !important;
  }

  .contact_details_container {
    display: flex;
    max-width: 100%;
  }

  .contact_details_container div {
    margin-bottom: 6rem;
  }
  .contact_details_container div:last-child {
    margin-bottom: 0rem;
  }

  .contact_us_form .grid {
    grid-template-columns: 1fr;

    & .left_side {
      order: 1;
    }
    & .right_side {
      order: 2;
    }
  }

  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .all_services .section_heading span {
    width: 100%;
  }
}
/* Small devices (480px–767px) */
@media (width < 768px) {
  section,
  main,
  footer {
    /* top-bottom, left-right */
    padding: 8rem 5rem !important;
  }

  header {
    padding-inline: 5rem;
  }
  .tp-counter-wrap {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 5rem;
    border-radius: 50px;
  }

  .swiper-nav {
    display: none;
  }

  .swiper_height_1 {
    height: 55vh;
  }

  .project-card .overlay {
    height: 60%; /* The visible height when hovered */
    background: linear-gradient(
      to top,
      #40b85c 0%,
      rgba(69, 176, 69, 0.3) 60%,
      rgba(0, 128, 0, 0) 100%
    );
    padding: 20px;
    padding-bottom: 30px;
    color: #fff;
    transform: translateY(0); /* Initially hidden below the card */
    opacity: 1; /* Initially invisible */
  }
  .slider_bottom_text {
    width: 100%;
    display: flex;
  }

  .our_client img {
    width: 150px;
  }
  .swiper-wrapper.our_client_wrapper {
    height: 120px !important;
  }

  .feedback_section .section_heading {
    text-align: center;
  }

  .our_commitment_section .d-flex {
    flex-direction: column;
    padding: 0 0rem;
  }
  .founder_message_section .d-flex {
    gap: 2rem;
  }

  .iso_section .container {
    flex-direction: column;
    gap: 3rem;
  }

  .iso_section .container span {
    text-align: center;
    width: 100%;
  }
}
@media (width < 580px) {
  section,
  main,
  footer {
    /* top-bottom, left-right */
    padding: 7rem 3rem !important;
  }

  header {
    padding-inline: 3rem;
  }

  .hero_content {
    text-align: center;
  }

  .welcome_text::after {
    left: 0;
  }

  .mySwiperFeedback {
    background-color: white;
  }

  .swiper-wrapper.feedback_wrapper {
    padding: 10px;
  }
  .mySwiperFeedback {
    background-color: white !important;
  }

  .form_row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form_group {
    margin-bottom: 0;
  }

  .form_group input,
  .form_group textarea {
    padding: 1.4rem 1.6rem;
  }

  footer .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer_description {
    width: 100%;
  }
  .page_top_heading {
    height: 50vh;
  }
  .page_top_heading_container h1 {
    font-size: 5rem;
    margin-top: 4rem;
  }

  .values_card_container div {
    max-width: 100%;
  }
  .message .founder_name {
    margin-right: 0;
  }
  .type_of_services_section .section-desc {
    width: 100% !important;
    text-align: start;
  }

  .contact-us-page.page_top_heading {
    background-position: 38%;
  }
  .services-pg.page_top_heading {
    background-position: 24% center;
  }
}
/* Mobile phones (<480px) */
@media (width < 480px) {
  section,
  main,
  footer {
    /* top-bottom, left-right */
    padding: 7rem 2rem !important;
  }

  header {
    padding-inline: 2rem;
  }

  .tp-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .section_title {
    font-size: 4rem;
  }

  .form_group input,
  .form_group textarea {
    padding: 1.2rem 1.4rem;
  }

  header .container {
    padding: 0.7rem 0rem;
  }
  .navbar-brand {
    font-size: 2.6rem;
  }
  .tp-service-4-item-icon svg {
    max-width: 80%;
    margin-inline: auto;
  }
  .team_member,
  .team-member-card-container {
    gap: 4rem !important;
  }

  .team_member.about_us {
    padding-bottom: 6rem;
  }

  .type_of_services_section {
    padding-bottom: 2rem !important;
  }

  .team_section {
    padding-bottom: 0 !important;
  }

  footer {
    padding-bottom: 0 !important;
  }
  footer .container {
    padding-bottom: 4rem;
  }

  .swiper-slide.feedback_card {
    height: fit-content !important;
  }
}
.address {
  display: flex !important;
}
.img-fluid {
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

/* ---------------- gallery -------------- */
/* Gallery Grid */
.gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 4rem;
}

.gallery_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery_img:hover {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery_grid {
    grid-template-columns: 1fr;
  }
  .prev_btn {
    left: 10px !important;
  }

  .next_btn {
    right: 10px !important;
  }
}

/* Popup Overlay */
.img_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup_image {
  max-height: 75vh;
  width: auto;
  max-width: 85%;
  border-radius: 10px;
}

/* Close button */
.close_popup {
  position: absolute;
  top: 40px;
  right: 20px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  z-index: 100000;
  width: 50px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(92, 92, 92, 0.5);
  transition: all 0.25s ease;
}

/* Hover Effect */
.close_popup:hover {
  background-color: rgba(255, 255, 255, 0.425);
  color: black;
  transform: scale(1.02);
}

/* Click (Active) Effect */
.close_popup:active {
  transform: scale(0.8);
  background-color: rgba(230, 230, 230, 0.964);
}

/* Navigation Buttons */
.nav_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 40px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100000;
  transition: all 0.25s ease;
  width: 60px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effect */
.nav_btn:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) scale(1.1);
}

/* Click (Active) Effect */
.nav_btn:active {
  transform: translateY(-50%) scale(0.85);
  background: rgba(255, 255, 255, 0.6);
}

.prev_btn {
  left: 60px;
}

.next_btn {
  right: 60px;
}

.hidden-gallery-item {
  display: none;
}

.view-more-button {
  display: inline-block;
  padding: 12px 32px;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-inline: auto;
  margin-top: 20px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.view-more-button:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.view-more-button:active {
  transform: scale(0.95);
}
/* Hover (Desktop only) */
@media (hover: hover) {
  .view-more-button:hover {
    background: #2e3a47;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(60, 74, 90, 0.5);
  }
}

.view-more-button:active {
  transform: scale(0.95);
}

/* Mobile View (Better UX) */
@media (max-width: 576px) {
  .view-more-button {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(60, 74, 90, 0.25);
    margin-top: 16px;
  }
}

/* ---------------- gallery end -------------- */

.user_info span {
  display: inline-block;
  line-height: 1.4;
  margin-top: 0.4rem;
}

/* ------------loader ------------ */
/* Loader Background */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
}

/* Zoom Out Effect */
#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0); /* shrinks to nothing */
}

/* Loader Design (Uiverse Code) */
.three-body {
  --uib-size: 35px;
  --uib-speed: 0.8s;
  --uib-color: #5d3fd3;
  position: relative;
  display: inline-block;
  height: var(--uib-size);
  width: var(--uib-size);
  animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
  position: absolute;
  height: 100%;
  width: 30%;
}

.three-body__dot:after {
  content: "";
  position: absolute;
  height: 0%;
  width: 100%;
  padding-bottom: 100%;
  background-color: var(--uib-color);
  border-radius: 50%;
  will-change: transform, opacity;
}

.three-body__dot:nth-child(1) {
  bottom: 5%;
  left: 0;
  transform: rotate(60deg);
  transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite ease-in-out;
  animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
  bottom: 5%;
  right: 0;
  transform: rotate(-60deg);
  transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15)
    ease-in-out;
}

.three-body__dot:nth-child(3) {
  bottom: -5%;
  left: 0;
  transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
  top: 0;
  left: 0;
  animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

/* Animations */
@keyframes spin78236 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wobble1 {
  0%,
  100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-66%) scale(0.65);
    opacity: 0.8;
  }
}

@keyframes wobble2 {
  0%,
  100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(66%) scale(0.65);
    opacity: 0.8;
  }
}

/* ============== Why Join Us Benefits Section start ============== */
.why_join_us_section {
  background: linear-gradient(135deg, #1a3a52 0%, #0f2436 50%, #1a3a52 100%);
  padding: 8rem 1rem !important;
}

.benefits_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 7rem;
}

.benefit_card {
  background-color: transparent;
  padding: 3rem 2.5rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border-left: 0.4rem solid var(--primary-color);
  position: relative;
}


.benefit_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit_icon i {
  color: white;
  font-size: 2.8rem;
}

.benefit_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.benefit_description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 !important;
}

/* ============== Why Join Us Benefits Section end ============== */

/* ============== Responsive Benefits Section ============== */
@media (width < 1024px) {
  .benefits_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 5rem;
  }
}

@media (width < 768px) {
  .why_join_us_section {
    padding: 6rem 1rem !important;
  }

  .benefits_container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 3rem;
  }

  .benefit_card {
    padding: 2.5rem 2rem;
    border-left-width: 0.3rem;
  }

  .benefit_icon {
    width: 5rem;
    height: 5rem;
  }

  .benefit_icon i {
    font-size: 2.4rem;
  }

  .benefit_title {
    font-size: 1.8rem;
  }

  .benefit_description {
    font-size: 1.4rem;
  }
}

@media (width < 580px) {
  .why_join_us_section {
    padding: 5rem 1rem !important;
  }

  .benefits_container {
    padding: 0 2rem;
    gap: 1.5rem;
  }

  .benefit_card {
    padding: 2rem 1.5rem;
    gap: 1rem;
    border-left-width: 0.3rem;
  }

  .benefit_icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .benefit_icon i {
    font-size: 2rem;
  }

  .benefit_title {
    font-size: 1.6rem;
  }

  .benefit_description {
    font-size: 1.3rem;
  }
}
