@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
/*
        * Custom Styles by Mahtab
        * Font: Poppins
        * Color Palette:
        * - Primary: #0097A7 (Teal)
        * - Dark: #2C3E50 (Dark Charcoal)
        * - Light: #F8F9FA (Light grey for section backgrounds)
        * - White: #FFFFFF
        */

:root {
  --primary-color: #0097a7; /* Teal */
  --dark-color: #2c3e50; /* Dark Charcoal */
  --light-color: #f8f9fa;
  --font-family: "Poppins", sans-serif;
}


body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: #555;
  overflow-x: hidden !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--dark-color);
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

/* Updated Button Styles */
.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #007f8a;
  border-color: #007f8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Navbar */
header {
  background-color:#fff;
}
.navbar {
  transition: all 0.3s;
  padding: 0.8rem 0;
  z-index: 99;
}

.logo {
  object-fit: cover;
  width: 110px;
}

.navbar .nav-link {
  font-weight: 400;
  color: #3b3e99;
  transition: color 0.3s;
      font-size: 19px;
    font-weight: 500;
}
a.nav-link.px-lg-3.btn.btn-primary-custom.ms-lg-3 {
    color: #fff;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #3b3e99;
      font-size: 19px;
    font-weight: 500;
}

/* Dropdown menu */
.navbar .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 8px 0;
  width: 100%;
}

/* Dropdown items */
.navbar .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  transition: background 0.3s, color 0.3s;
}

/* Dropdown item hover */
.navbar .dropdown-item:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

/* Hero Carousel Section */
#heroCarousel {
  height: 88vh;
  min-height: 35rem;
  overflow: hidden;
  position: relative;
}

#heroCarousel .item img {
  height: 88vh;
  min-height: 35rem;
  object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(104 104 104 / 60%);
    z-index: 1;
}

.carousel-container {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.carousel-container h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.carousel-container p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 1rem auto;
}

#heroCarousel button {
  z-index: 2;
}

@media (max-width: 768px) {
  .carousel-container h2 {
    font-size: 2.2rem;
  }
}

/* Animation Keyframes for Carousel Text */
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Section Title */
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-title p {
  color: #777;
  max-width: 600px;
  margin: 10px auto 0 auto;
}
#about .section-title h2::after {
  width: 80px;
}

/* Services Section */
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sc-img-cont {
  overflow: hidden;
}

.sc-img-cont img {
  transition: transform 0.3s ease-in-out;
}

.sc-img-cont:hover img {
  transform: scale(1.1);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Product Card */
.product-card {
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Clients section */
.stats-section .dark-bg {
  background-color: var(--dark-color);
}
.stats-section .yellow-bg {
  background-color: var(--primary-color);
}
.stats-section :where(.dark-bg, .yellow-bg) {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
}
.stats-section h2 {
  color: var(--light-color);
}
.stats-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stats-box i {
  color: var(--primary-color);
}
.yellow-bg i {
  color: var(--dark-color);
}
.stats-box h2 {
  font-size: 2rem;
}
.stats-box p {
  font-weight: 600;
  color: var(--light-color);
}

/* fixed-section */
.fixed-sec {
  background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)),
    url("../images/slide-img3.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 8rem 0;
}
.fixed-sec h2 {
  font-size: calc(1.75rem + 2vw);
}

/* Feature Box (Why Us) */
.feature-box {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-box img {
  width: 4rem;
}

/* Contact Section */
.contact-info i {
  color: var(--primary-color);
  width: 30px;
  font-size: 1.2rem;
}
.contact-form .form-control {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #ced4da;
}
.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 151, 167, 0.25);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
}
.footer a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--primary-color) !important;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}

.scroll-top-btn:hover {
  background: #007f8a;
  color: #fff;
}

.scroll-top-btn.active {
  visibility: visible;
  opacity: 1;
}

.bg-light {
  background-color: var(--light-color) !important;
}

/* --- Google Translate Custom Box --- */
.gt-box {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2px 10px 2px 6px;
  height: 36px;
  width: fit-content;
}

.gt-box .gt-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Dropdown (language selector) */
.goog-te-combo {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  height: 28px;
  line-height: 28px;
}

/* Remove "Powered by Google" */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.goog-te-gadget {
  font-size: 0 !important;
}
