/*Theme Name: Femoza
Theme URI: https://femoza.com/
Description: Custom theme converted from static HTML.
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  scroll-behavior: smooth;
}

:root {
  --blue: #00535E;
  --black: #000;
  --white: #fff;
  --gold: #d4af37;
}

.section-gap {
  padding: 5rem 0rem;
}

/* Common Styles */
#femoza-breadcrumb {
  background-position: bottom;
  position: relative;
  background-size: cover;
  min-height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Page Specific Backgrounds */
#femoza-breadcrumb.about-breadcrumb-section {
  background-image: url("assets/About\ us@3x.jpg");
}

#femoza-breadcrumb.carries-breadcrumb-section {
  background-image: url("assets/carrier@3x.jpg");
}

#femoza-breadcrumb.contact-us-breadcrumb-section {
  background-image: url("assets/contactbread.jpg");
}

#femoza-breadcrumb.service-breadcrumb-section {
  background-image: url("assets/services@3x.jpg");
}
#femoza-breadcrumb.industry-breadcrumb-section {
  background-image: url("assets/industrybread.jpg");
}

.global-btn {
  all: unset;
  background-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  text-decoration: none;
	cursor:pointer;
}

#femoza-breadcrumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#femoza-breadcrumb h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#femoza-header .menu-item a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
	padding:8px;
}
#femoza-header .menu-item a:hover {
    color: var(--gold);
}
#femoza-breadcrumb .breadcrumb {
  background: transparent;
}

#femoza-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "›";
}

#femoza-breadcrumb .breadcrumb a:hover {
  color: var(--yellow-gold);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 767px) {
  #femoza-breadcrumb {
    min-height: 30vh;
  }

  #femoza-breadcrumb h1 {
    font-size: 2rem;
  }
}

/* ============ TOP BAR ============ */
#femoza-topbar {
  background-color: var(--blue);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}

#femoza-topbar .femoza-contact a {
  color: var(--white);
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.3s;
}

#femoza-topbar .femoza-contact a:hover {
  color: var(--gold);
}

#femoza-topbar .femoza-social a {
  margin-left: 12px;
  color: var(--white);
  transition: color 0.3s, transform 0.3s;
}

#femoza-topbar .femoza-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
#femoza-header {
  background-color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--white);
}

#femoza-header .navbar {
  padding: 0.8rem 0;
}

#femoza-header .navbar-brand img {
  height: 55px;
}

#femoza-header .navbar-toggler {
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
}

#femoza-header .navbar-collapse {
  justify-content: center;
}

#femoza-header .navbar-nav {
  gap: 1.5rem;
}

#femoza-header .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}

#femoza-header .navbar-nav .nav-link:hover {
  color: var(--gold);
}

/* ============ BUTTON ============ */
#femoza-header .btn-touch {
  background-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  transition: background 0.3s, color 0.3s;
}

#femoza-header .btn-touch:hover {
  background-color: var(--white);
  color: var(--black);
}

#femoza-header .close-btn {
  display: none;
}

/* ============ RESPONSIVE ============ */

/* Mobile menu slide-in from right */
/* ---------- MOBILE NAV STYLES ---------- */
@media (max-width: 991px) {
  #femoza-header .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--black);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.4s ease-in-out;
    z-index: 9999;
  }

  #femoza-header .navbar-collapse.show {
    right: 0;
  }

  /* Cross Button */
  #femoza-header .close-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
  }

  #femoza-header .close-btn:hover {
    color: var(--white);
  }

  /* Nav Links in Mobile */
  #femoza-header .navbar-nav {
    gap: 1.8rem;
    flex-direction: column;
    margin-top: 2rem;
  }

  /* Optional overlay effect for background */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: opacity 0.3s;
  }
}

/* ============================================
    Hero SECTION - Scoped with #about-us-section
   ============================================ */

#hero.hero-section {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

#hero .typewrite {
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  height: 105px;
  display: inline-block;
  animation: blink 0.7s infinite;
}

#hero .hero-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: start;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  margin: 0px;
}
#hero .hero-title {
  color: #fff;
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: left;
}
#hero .hero-content h1 {
  font-size: 5.5rem;
  margin-bottom: 15px;
  text-shadow: 0px 0px 4px #000000;
  font-family: "Abel", sans-serif !important;
}

#hero .hero-content p {
  font-size: 2.2rem;
  max-width: 80%;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  font-family: "Abel", sans-serif !important;
}

#hero .hero-btn {
  background-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

#hero .hero-btn:hover {
  background-color: var(--white);
  color: var(--black);
}
@media (max-width: 991px) {
  #hero .hero-content h1 {
    font-size: 4rem;
  }
  #hero .hero-content p {
    font-size: 1.8rem;
  }
  #hero .typewrite {
    height: 87px;
  }
}
@media (max-width: 767px) {
  #hero .hero-content h1 {
    font-size: 3rem;
  }
  #hero .typewrite {
    height: 57px;
  }
}
@media (max-width: 476px) {
  #hero .hero-content p {
    font-size: 1.4rem;
    max-width: 90%;
  }

  #hero .typewrite {
    height: 42px;
  }
  #hero .hero-content h1 {
    font-size: 2.1rem;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ============================================
   ABOUT US SECTION - Scoped with #about-us-section
   ============================================ */

/* SECTION BASE */

/* ===== ABOUT US SECTION ===== */
#about-us {
  background-color: #fff;
  color: var(--black);
}

#about-us > .container-fluid > h1 {
  font-size: 9rem;
  font-weight: 500;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
  color: #000;
}

#about-us .about-hidden {
  display: none;
}

#about-us .display-1 {
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
}

/* Text Section */
#about-us p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 90%;
}

/* Center Image */
.about-main-img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
}

.about-main-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-right-box img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-right-box h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 10px;
}

.about-right-box p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  #about-us > .container-fluid > h1 {
    text-align: center;
    font-size: 4rem;
  }

  #about-us .display-1 {
    text-align: center;
    font-size: 4rem;
    -webkit-text-stroke: 1px #000;
  }

  #about-us p {
    text-align: center;
    margin: 0 auto;
  }

  .about-main-img {
    height: 300px;
  }

  .about-right-box {
    text-align: center;
  }
}

@media (max-width: 576px) {
  #about-us > .container-fluid > h1 {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #about-us .about-hidden {
    display: block;
  }

  #about-us .display-1 {
    display: none;
  }

  #about-us .display-1 {
    font-size: 3rem;
  }

  .about-us h3 {
    text-align: center;
  }

  .about-main-img {
    height: 250px;
  }

  .about-mobile-head {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ================================== */

/* ==============================
   ENGINEERING SOLUTION SECTION
============================== */
#engineering-solution {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Header Styling */
.section-header {
  position: relative;
  z-index: 2;
}
.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.divider {
  width: 80px;
  height: 3px;
  background: var(--yellow-gold);
  border-radius: 2px;
}

/* Box Styling */
.solution-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  height: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.solution-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.08);
}

/* Icon Styling */
.icon-wrapper {
  font-size: 2.5rem;
  color: var(--yellow-gold);
}

/* Texts */
.solution-box h6 {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.solution-box h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}

.solution-box p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

/* Hover Accent */
.solution-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow-gold);
  transition: width 0.3s ease;
}
.solution-box:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .solution-box {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .solution-box h3 {
    font-size: 1.1rem;
  }
  .solution-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  #engineering-solution {
    padding: 3rem 1rem;
  }
}

/* ================================= */

/* ==============================
   CAD SERVICES SECTION
============================== */
#cad-services {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#cad-services .section-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 2.5rem;
}

#cad-services .section-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: var(--black);
}

#cad-services .section-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--black);
}

#cad-services .divider {
  width: 100px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 1.2rem;
  border-radius: 5px;
}

/* Service Card */
#cad-services .service-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.4s ease;
  border: 1px solid var(--gold);
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

#cad-services .service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--yellow-gold);
  transition: width 0.4s ease;
}

#cad-services .service-card:hover::before {
  width: 100%;
}

#cad-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

/* Icon Styling */
#cad-services .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: 2px solid var(--gold);
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  color: var(--black);
  font-size: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

#cad-services .service-card:hover .service-icon {
  transform: scale(1.2);
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(49, 50, 111, 0.2);
}

/* Texts */
#cad-services .service-card h4 {
  color: var(--black);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: capitalize;
}

#cad-services .service-card p {
  color: #474747;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  #cad-services .service-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  #cad-services .service-card h4 {
    font-size: 1.1rem;
  }
  #cad-services .service-card p {
    font-size: 0.95rem;
  }
  #cad-services .service-icon {
    height: 50px;
    width: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  #cad-services {
    padding: 3rem 1rem;
  }
}

/* =========== industry section  ============ */

/* ---- INDUSTRY SLIDER ---- */

/* WRAPPER (same position as your senior’s code) */
#industry-slider .industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

#industry-slider .industry-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

/* Overlay same as senior */
#industry-slider .industry-overlay {
  position: absolute;
  bottom: 10px;
  transform: translateY(80%);
  background-color: #000000ad;
  width: 100%;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

#industry-slider .industry-overlay h3 {
  font-size: 22px;
  font-weight: 700;
}

#industry-slider .industry-overlay p {
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

/* Hover Animation */
#industry-slider .industry-card:hover .industry-img img {
  transform: scale(1.1);
}

#industry-slider .industry-card:hover .industry-overlay {
  transform: translateY(0);
  background-color: #000000cf;
  padding-top: 30px;
}

#industry-slider .industry-card:hover .industry-overlay p {
  opacity: 1;
  visibility: visible;
}

#industry-slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fab12f;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

#industry-slider .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 20px;
  background-color: #fab12f !important;
}

#industry-slider .swiper-button-next,
#industry-slider .swiper-button-prev {
  color: #fab12f;
}

/* ===========  Service area ============ */

/* --- SERVICES SECTION --- */
#services-slider {
  background-color: var(--blue);
  color: #fff;
}

#services-slider .section-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: var(--white);
}

/* --- Service Card --- */
#services-slider .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

#services-slider .service-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

#services-slider .service-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

/* --- Overlay (Desktop Only) --- */
#services-slider .service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  padding: 20px;
}

#services-slider .overlay-content {
  text-align: center;
  color: #fff;
  max-width: 85%;
}

#services-slider .overlay-content h5 {
  color: #f8c146;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

#services-slider .overlay-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#services-slider .overlay-content p {
  font-size: 0.95rem;
  color: #eaeaea;
}

#services-slider .service-card:hover .service-overlay {
  opacity: 1;
  visibility: visible;
}

#services-slider .service-card:hover img {
  transform: scale(1.1);
}

/* --- Below image info --- */
#services-slider .service-info {
  padding: 1.2rem 0 0;
}

#services-slider .service-mobile-btn {
  display: none;
}

#services-slider .service-info h5 {
  color: #f8c146;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#services-slider .service-info h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- Swiper Controls --- */
#services-slider .swiper-button-next,
#services-slider .swiper-button-prev {
  color: #f8c146;
}

#services-slider .swiper-button-next:hover,
#services-slider .swiper-button-prev:hover {
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #services-slider .service-overlay {
    display: none; /* remove hover overlay on mobile */
  }

  #services-slider .service-mobile-btn {
    display: block;
  }

  #services-slider .service-img img {
    height: 250px;
  }

  #services-slider .service-info {
    text-align: left;
    padding: 1rem 0;
  }
}

/* CTA Section */
#enquiry-cta {
  background: var(--white);
}

#enquiry-cta .container {
  position: relative;
  z-index: 2;
}

#enquiry-cta h2 {
  font-size: 2rem;
  color: var(--black);
}

#enquiry-cta p {
  color: var(--black);
  max-width: 700px;
  font-weight: 600;
  margin: 0 auto;
}

#enquiry-cta .btn {
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--black);
}

#enquiry-cta .btn:hover {
  background-color: #f8c146;
  color: var(--black);
  border: none;
}

/* =============================== */

.footer {
  background-color: var(--blue);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer .container {
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #faa634;
  margin-top: 6px;
  border-radius: 2px;
}
.footer .footer-col .navbar-nav li a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-col .navbar-nav li {margin-bottom: 10px;}
.footer-logo img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background-color: #faa634;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  max-width: 70%;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #faa634;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--yellow-gold);
  font-size: 16px;
  margin-top: 3px;
}

/* Divider & Bottom */
.footer-divider {
  border: none;
  border-top: 2px solid var(--gold);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-col,
  .footer-social,
  .footer-contact li {
    text-align: left;
  }

  .footer-list li {
    margin-bottom: 10px;
    max-width: 100%;
  }
  /* .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  } */
}

/* Footer ends here */

/* ========== social meida icon ========= */
.floating-social {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* transform: translateY(-50%); */
}

.floating-social a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 25px 14px;
  border-radius: 8px 0 0 8px;
  width: 160px;
  transform: translateX(100px);
  transition: all 0.3s ease;
}

.floating-social a:hover {
  transform: translateX(0);
  text-decoration: none;
  color: white;
}

.floating-social a i {
  font-size: 30px;
  margin-right: 10px;
}

/* Specific Button Colors */
.floating-social .whatsapp {
  background-color: #25d366; /* WhatsApp official brand color */
}

.floating-social .support {
  background-color: #ff5722; 
}

.floating-social .phone {
  background-color: #0d6efd; /* Bootstrap Primary (professional blue) */
}

.floating-social .brochure {
  background-color: #7460EE !important; 
}

/* Responsive */
@media (max-width: 576px) {
  .floating-social {
    bottom: 15%;
  }

  .floating-social a:hover {
    transform: translateX(100px);
  }
  .floating-social a {
    width: 145px;
    font-size: 14px;
    padding: 20px 10px;
  }

  .floating-social a i {
    font-size: 25px;
  }
}

#ScrollTop {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  position: fixed;
  bottom: 30px;
  text-decoration: none;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#ScrollTop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#ScrollTop:hover {
  cursor: pointer;
  background-color: #333;
}
#ScrollTop:active {
  background-color: #555;
}
#ScrollTop.show {
  opacity: 1;
  visibility: visible;
}

/* ===========  Contact Us CSS ========== */

#femoza-contact {
  background: var(--white);
  color: var(--white);
  position: relative;
}

/* Left Side Info */
#femoza-contact .contact-info-box {
  background: url("assets/contact-us.jpg") center/cover no-repeat;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

#femoza-contact .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

#femoza-contact .content {
  position: relative;
  z-index: 1;
}

#femoza-contact .text-gold {
  color: var(--gold);
}

/* Right Side Form */
#femoza-contact .contact-form-box {
  background: #111;
  border-left: 5px solid var(--gold);
  border-right: 5px solid var(--gold);
  transition: transform 0.3s ease;
}

#femoza-contact .contact-form-box:hover {
  transform: translateY(-5px);
}

#femoza-contact .form-control,
#femoza-contact .form-select {
  background: whitesmoke;
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 8px;
  transition: 0.3s;
}

#femoza-contact .btn-touch {
  all: unset;
  background-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  transition: background 0.3s, color 0.3s;
}

#femoza-contact .btn-touch:hover {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

/* Responsive */
@media (max-width: 992px) {
  #femoza-contact .contact-info-box {
    text-align: center;
  }
  #floating-enquiry-btn {
    bottom: 20px;
    right: 20px;
  }
}

/* ========  Service page css ================== */

/* Service Page Styling */
#servicepage .service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  border: 2px solid #eee;
}

#servicepage .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#servicepage .service-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

#servicepage .service-name {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

#servicepage .service-desc {
  font-size: 14px;
  opacity: 0.8;
}

#servicepage .service-title {
  font-size: 3rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  #servicepage .service-title {
    font-size: 2rem;
    font-weight: 700;
  }
}

/* =============  Carries Page ===================== */

#careersPage .why-femoza h1 {
  color: var(--black);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
#careersPage .why-femoza p {
  color: var(--black);
  text-align: center;
  font-size: 20px;
  margin-bottom: 2rem;
}

#careersPage .career-box {
  padding: 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

#careersPage .career-box:hover {
  transform: translateY(-5px);
}

#careersPage .apply-form-section {
  padding: 4rem;
  background: var(--blue);
}

#careersPage .apply-form-section h1 {
  margin-bottom: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

#careersPage .apply-form-section .form-label {
  font-size: 1rem;
  font-weight: 700;
}

#careersPage .apply-form-section .form-control,
#careersPage .apply-form-section .form-select {
  padding: 1rem;
  border: 1px solid var(--gold);
  color: var(--black);
}

@media (max-width: 768px) {
  #careersPage .apply-form-section {
    padding: 3rem 1rem;
  }
}

/* =========  Service Details ===================== */

/* ======================= Service Detail Page ======================= */
#service-detail-page .service-title {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#service-detail-page .service-subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 17px;
  color: #6c757d;
}

#service-detail-page .service-banner img {
  width: 100%;
  border-radius: 15px;
}

#service-detail-page .service-desc {
  font-size: 16px;
  line-height: 1.7;
}

#service-detail-page .service-list {
  list-style: none;
  padding-left: 0;
}

#service-detail-page .service-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

#service-detail-page .service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0078ff;
}

#service-detail-page .service-sub-card {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.09);
  transition: 0.35s ease;
}
#service-detail-page .service-sub-card h5 {
  margin-top: 1rem;
  color: var(--black);
  font-weight: 700;
}
#service-detail-page .service-sub-card p {
  font-size: 18px;
  color: var(--black);
  text-align: left;
}

#service-detail-page .sub-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

#service-detail-page .service-sub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #service-detail-page .service-title {
    font-size: 24px;
    font-weight: 700;
  }
}




/* ============ Industry page ============= */

/* #industry-page .project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex: 0 0 30%;
  border: 1px solid #000;
}

#industry-page .project-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 20px;
}

#industry-page .project-image {
  position: relative;
  overflow: hidden;
}

#industry-page .project-image img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

#industry-page .tag {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #e30613;
  color: #fff;
  font-size: 20px;
  border-top-right-radius: 10px;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: capitalize;
}

#industry-page .project-info {
  padding: 15px 18px;
}

#industry-page .project-info h3 {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}
#industry-page {
  padding: 80px 0px;
}
#industry-page .industry-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #industry-page .project-card {
    flex: 1 0 34%;
  }
}
@media (max-width: 767px) {
  #industry-page .project-card {
    flex: 1 0 100%;
  }
} */
