@import url("https://fonts.googleapis.com/css2?family=Anton&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Liter&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #007bff;
  --dark-blue: #001f3f;
  --light-gray: #f8f9fa;
  --white: #fff;
  --shadow-color: rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.carousel-inner img {
  height: 100vh;
  object-fit: cover;
}

/* Navbar */
.home-page-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background: #0a2a76;
  z-index: 1000;
}

.navdiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: "Poppins";
  font-weight: 500;
  transition: 0.3 ease;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  background-image: linear-gradient(to right, #fcc735, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-underline-offset: 10px;
  text-decoration: underline;
}

/* Hero Section - Parallax Effect */
/* .hero {
    background: url('images/image1.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    height:109vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1; 
} */
/* Hero Section - Parallax Effect */
/* Hero Section - Background Image Slider */
.hero {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;

  /* Set initial background */
  background: url("images/image1.jpg") no-repeat center/cover;

  /* Animation for smooth movement */
  animation: backgroundSlide 20s infinite linear;
}

/* Keyframes for Sliding Background */
@keyframes backgroundSlide {
  0% {
    background: url("images/image1.jpg") no-repeat center/cover;
    background-position: 0% 50%;
  }
  33% {
    background: url("images/image2.jpg") no-repeat center/cover;
    background-position: 50% 50%;
  }
  66% {
    background: url("images/image3.jpg") no-repeat center/cover;
    background-position: 100% 50%;
  }
  100% {
    background: url("images/image1.jpg") no-repeat center/cover;
    background-position: 0% 50%;
  }
}

#hero {
  height: 100vh;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 3rem;
  max-width: 800px;
  color: yellow;
}

#typed {
  color: #ff5733;
  font-weight: bold;
}

/* About Us - Overlapping Hero */
.about {
  padding: 120px 20px;
  text-align: center;
  background: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.about h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 20px;
}
.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  color: #555;
}

.mission-vision {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
}

.mission,
.vision {
  background: #f3a14ad8;
  padding: 30px;
  color: #0d0d0d;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mission h3,
.vision h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.mission {
  border-left: 5px solid #007bff;
  background: #e9f2ff;
}
.vision {
  border-right: 5px solid #28a745;
  background: #e6f7ea;
}

/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
  background: #e3e6ea;
}

.services h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 40px;
}
.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid Layout for Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

/* Card Styling */
.service-cards .card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

/* Image Styling */
.service-cards .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Title Styling */
.service-cards .card h3 {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #001f3f;
  transition: color 0.3s ease-in-out;
}

/*  Hover Effect */
.service-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.service-cards .card:hover img {
  transform: scale(1.1);
}

.service-cards .card:hover h3 {
  color: #ff5733;
}
/* Services Section with Background Image */
.services {
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

/* Background Image */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/services-bg.jpg") no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}
.services > * {
  position: relative;
  z-index: 1;
}

/* Staffing selection */

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/webfonts/fa-solid-900.ttf)
      format("truetype");
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}

.staffing-container {
  font-family: Arial, sans-serif;
  background-color: #0a0f1f;
  color: #fff;
  text-align: center;
  margin: auto;
  padding: 20px;
  max-width: 1200px;
}

h1 {
  text-align: center;
  color: #333;
}

.staffing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.staffing-hse-section {
  margin-top: 40px;
}

.staffing-box {
  background: #1a1f2e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.staffing-hse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas {
  font-family: "Font Awesome 6 Free";
}

.fas {
  font-weight: 900;
}

.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.staffing-box i {
  font-size: 2.5rem;
  color: #ccee55;
  margin-bottom: 15px;
}

.fa-map-location-dot:before,
.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-users-cog:before,
.fa-users-gear:before {
  content: "\f509";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
  content: "\f19d";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-cogs:before,
.fa-gears:before {
  content: "\f085";
}

.fa-expand-arrows-alt:before,
.fa-maximize:before {
  content: "\f31e";
}

.fa-database:before {
  content: "\f1c0";
}

.staffing-hse-box {
  background: #1a1f2e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.staffing-hse-box i {
  font-size: 2.5rem;
  color: #ccee55;
  margin-bottom: 15px;
}

.fa-shield-alt:before,
.fa-shield-halved:before {
  content: "\f3ed";
}

.fa-shield-alt:before,
.fa-shield-blank:before {
  content: "\f3ed";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-first-aid:before,
.fa-kit-medical:before {
  content: "\f479";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

/* Our Products Section */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

.products {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #eef2f3, #d9e7e9);
}

.products h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.products p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #f0f2f5;
  margin-bottom: 100px;
}

.products > p {
  color: #333;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.4rem;
}
.products > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500;
  margin: 10px auto 0;
  border-radius: 2px;
}
/*  Card Container */
.product-cards {
  display: grid;
  grid-gap: 20px;
  padding: 21px;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
/*  Card Styling */
.products .card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 8px 16px var(--shadow-color);
  transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
}
/* Background Image Effect */
.products .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transition: transform 0.5s ease-in-out;
}
.card:hover:before {
  transform: scale(1.1);
}

/* Background Images */
.card:nth-child(1):before {
  background-image: url("./images/product1.jpg");
}
.card:nth-child(2):before {
  background-image: url("./images/product2.jpg");
}
.card:nth-child(3):before {
  background-image: url("./images/product3.jpg");
}
.card:nth-child(4):before {
  background-image: url("./images/product4.jpg");
}
.card:nth-child(5):before {
  background-image: url("./images/product5.jpg");
}
.card:nth-child(6):before {
  background-image: url("./images/product6.jpg");
}

/*  Content inside the card */
.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  transform: translateY(40%);
}
.card:hover .content {
  transform: translateY(0%);
}
.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.products .title {
  color: #eef2f3;
}
.copy {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Background Image */
.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/product-bg.jpg") no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

/* Ensure content stays above the background */
.products > * {
  position: relative;
  z-index: 1;
}

/*  Button */
.btn {
  cursor: pointer;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}
.btn:hover {
  background-color: #0056b3;
}

/*  Join Our Team Section */
.join-team {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #eef2f3, #d9e7e9);
  position: relative;
  overflow: hidden;
}

/* Optional: background image */
.join-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/careers-bg.jpg") no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.join-team .container {
  position: relative;
  z-index: 1;
}

/*  Heading */
.join-team h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
}
.join-team h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500; /* Highlight color */
  margin: 10px auto 0;
  border-radius: 2px;
}

/*  Paragraph */
.join-team p {
  max-width: 700px;
  margin: auto;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

/*  Button Styling */
.join-team .btn {
  display: inline-block;
  padding: 14px 30px;
  background: #007bff;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.join-team .btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .join-team {
    padding: 60px 15px;
  }

  .join-team h2 {
    font-size: 2.2rem;
  }

  .join-team p {
    font-size: 1rem;
  }

  .join-team .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Global Presence Section */
.locations {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.locations h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  padding-bottom: 10px;
  width: 100%;
}

/* underline effect */
.locations h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Card Container */
.location-card {
  width: 250px;
  height: 300px;
  perspective: 1000px;
  overflow: hidden;
  min-height: 300px;
}

/* Inner flipping effect */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/* Flip on hover */
.location-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Side Styles */
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px;
}
/* Front Side (Image with Title) */
.card-front {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Gradient Overlay for Better Readability */
.card-front::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.8)
  );
  border-radius: 15px;
}

.card-front * {
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Title Text */
.card-front h3 {
  margin: 0;
  padding: 10px;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Back Side (Info and Button) */
.card-back {
  background: #001f3f;
  transform: rotateY(180deg);
  font-size: 20px;
  display: flex;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px); /* Adds blur effect */
}

/* Icon and Text Styling */
.card-back i {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-back p {
  margin: 5px 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* View More Button */
.card-back .view-more {
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff4500;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.card-back .view-more:hover {
  background: #cc3700;
}

/* Trusted By Section */
.trusted-by {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.trusted-by h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 30px;
}

.trusted-by h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4500;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Logo Container */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Logo Styling  */
.trusted-logos img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  padding: 10px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* Contact Form */
/* Floating Contact Sidebar */
.contact-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Compact Vertical Contact Button */
.contact-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 8px;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.contact-btn:hover {
  background: #0056b3;
}

/* Contact Form - Initially Hidden */
.contact-form {
  display: none;
  position: absolute;
  right: 50px;
  top: 0;
  width: 250px;
  background: white;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* Contact Form Fields */
.contact-form h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  background: #007bff;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Trick: Show Form When Sidebar is Hovered */
.contact-sidebar:hover .contact-form {
  display: block;
}

/* Footer */
.footer {
  background: #0d0d0d;
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffc107;
  margin-top: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.footer-section ul li {
  margin: 8px 0;
  font-size: 17.5px;
  font-weight: 100;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffc107;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin-top: 10px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  margin: 0 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffc107;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease-in-out, transform 0.2s;
}

/* Hover effect */
.back-to-top:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* Font Awesome Icon */
.back-to-top i {
  font-size: 1.3rem;
  margin: 0;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 300;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 4rem;
  }
}

.highlight {
  background: linear-gradient(to right, #3498db, #9b59b6);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-info {
  margin-top: 1rem;
  color: #b0b0b0;
  /* Gray color */
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
  }
}

.map {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.form {
  width: 100%;
  max-width: 400px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.input {
  padding: 0.75rem;
  background: transparent;
  color: #000000;
  border: none;
  border: 1px solid #000000;
  /* Gray color */
  outline: none;
}

.phone-inputs {
  display: flex;
  gap: 1rem;
}

.phone-code {
  width: 25%;
  /* padding-left: 50px; */
}

.phone-number {
  width: 75%;
}

.textarea {
  height: 6rem;
  border: 1px solid #000000;
  resize: none;
}

.submit-button {
  padding: 0.75rem;
  background: #000000;
  color: #ffff;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: 0.3s ease;
}

.submit-button:hover {
  background: #fff;
  color: #000000;
  border: 1px solid #000000;
}

.product-button {
  cursor: pointer;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.our-experience-heading {
  color: #fff;
}
