* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}
:root {
  /* === BRAND COLORS === */
  --primary-color: #ff6600; /* Orange */
  --secondary-color: #1b1b1b;
  --accent-color: #ff6600;
  --light-color: #f8f9fa;
  --dark-color: #1a1a1a;
  --text-color: #333333;
  --bg-color: #f8f9fa;
  --Hover: #0056b3;
  --pg-color: #555555;
  --ft-color: #d8d6d6; /* === FEEDBACK COLORS === */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --bs-primary: #003366; /* Deep Blue */
  --bs-primary-rgb: 255, 122, 0;
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #007bff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #007bff;
  --bs-btn-hover-border-color: #007bff;
} /* === GENERAL USAGE === */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow: hidden;
}
/* ===== Navbar ===== */
.navbar {
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===== Nav Items ===== */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-item {
  position: relative;
  margin-left: 20px;
}

.nav-link {
  color: #ff7a00 !important;
  font-weight: 500;
  padding: 8px 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0056b3 !important;
}
.nav-item .btn {
  background-color: var(--primary-color);
  color: white;
}
/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;

  /* animation effect */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: none;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #0056b3;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Toggle ===== */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ====================================HERO SECTION============================== */
.hero-section {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Assets/carouse\ 2.jpg") center center/cover no-repeat; */
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
}
.carousel {
  width: 100% !important;
  height: 100vh;
  margin: 0 !important;
}
.carousel-item {
  height: 100vh !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.carousel-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/asset/images/heroImg1.jpg); /* height: 100% !important; */
}
.carousel-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/asset/images/heroImg2.jpg);
}
.carousel-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/asset/images/heroImg3.jpg);
}
.carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-y: hidden;
}
.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 600px;
}
.hero-section .btn {
  background-color: #ff7a00;
  border: none;
  transition: all 0.3s ease;
}
.hero-section .btn:hover {
  background-color: #084298;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
} /* ===========================Innovation=========================== */
.support-company {
  background-color: #f8f9fa; /* Light gray background */
}
.support-image img {
  height: 600px;
  width: 500px;
  border-radius: 15px;
  object-fit: cover;
}
.support-content .section-title {
  color: #ff7a00; /* Bootstrap primary orange */
}
.support-content p {
  line-height: 1.7;
}
.support-content .btn {
  background-color: #ff7a00;
  border: none;
  transition: all 0.3s ease;
}
.support-content .btn:hover {
  background-color: #084298;
  transform: translateY(-3px);
} /* -------------------------------------------Appointment section---------------------------------- */
.appointment {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/ACOF3.jpg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 70%;
  background-attachment: fixed; /* Desktop only */
}

/* Blue slanted overlay */
.appointment::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: var(--bs-primary);
  z-index: 1;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0 100%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-left: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  color: white;
}

.appointment button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

/* ---------- Responsive (Mobile) ---------- */
@media screen and (max-width: 768px) {
  .appointment {
    height: auto;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* fixes the dark gray issue */
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .appointment::before {
    width: 0;
    height: 0;
  }

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    text-align: center;
  }

  .appointment p {
    max-width: 100%;
  }
}
/* ======================================SERVICE SECTION================================= */
.text-orange {
  color: #ff7a00 !important;
}
.service-card {
  overflow: hidden;
  border-radius: 10px;
}
.service-img {
  width: 200%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.service-card .card-body {
  padding: 20px;
}
.service-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.btn-outline-primary {
  color: #ff7a00;
  border-color: #ff7a00;
}
.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}
.slash-divider {
  width: 100vw;
  height: 120px; /* adjust the height you want */
  background-color: #ebe9e8;
  overflow: hidden;
  position: relative;
}
.slash-line {
  position: absolute;
  white-space: nowrap;
  font-size: 30px;
  color: #ff7a00;
  animation: slideText 30s linear infinite;
} /* Keyframes for sliding motion */
@keyframes slideText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
} /* =========================================PROJECT SECTION=========================== */ /* Project Section Slider */

.text-orange {
  color: #ff7a00 !important;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slide-track {
  display: flex;
  width: calc(250px * 20); /* width for number of slides */
  animation: scroll 40s linear infinite;
}
.slide {
  width: 300px;
  margin: 0 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.slide img {
  width: 300%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.slide img:hover {
  transform: scale(1.05);
} /* Animation for continuous scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 10));
  }
} /* Responsive Adjustments */
@media (max-width: 768px) {
  .slide {
    width: 180px;
  }
  .slide img {
    height: 140px;
  }
  .slide-track {
    animation: scroll 30s linear infinite;
  }
}
/* ===== TEAM SECTION ===== */

#team {
  background: #f8f9fa;
}

/* Center content */
.team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

/* Circular Image */
.team-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: contain;   /* ✅ full image, no cropping */
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 6px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.team-circle:hover {
  transform: scale(1.05);
}

/* Names */
.team-box h6 {
  font-size: 0.95rem;
  margin-top: 10px;
  text-align: center;
}

/* Role */
.team-box small {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* MOBILE VIEW */
@media (max-width: 576px) {
  .team-circle {
    width: 160px;   /* ✅ Bigger circle for single view */
    height: 160px;
  }

  .team-box h6 {
    font-size: 1rem;
  }

  .team-box small {
    font-size: 0.85rem;
  }
}

/* TABLET */
@media (max-width: 992px) and (min-width: 577px) {
  .team-circle {
    width: 130px;
    height: 130px;
  }
}


.client-slider {
  background: #f8f9fa;
}
.client-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-logo:hover {
  transform: scale(1.1);
}
.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
} /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
} /* Section Overlay (optional for better text contrast) */
section.position-relative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
section.position-relative > .container {
  position: relative;
  z-index: 1;
}
.slider-track {
  display: flex;
  width: calc(250px * 18); /* width for smooth scroll */
  animation: scrollClients 25s linear infinite;
}
.client-item {
  text-align: center;
  flex: 0 0 auto;
}
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} /* Floating WhatsApp B
utton */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
} /* Section Overlay (optional for better text contrast) */
section.position-relative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
section.position-relative > .container {
  position: relative;
  z-index: 1;
}
.contact-form {
  background-color: white !important;
  z-index: 100;
  /* width: 50%; */
  text-align: center;
  padding: 20px 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.contact-form h1 {
  font-size: 2rem;
  color: var(--Hover);
}
.contact-form i {
  color: var(--primary-color);
  font-size: 2rem;
  padding: 0.5rem 0;
}
.contact-form p {
  max-width: 400px;
  margin: auto;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding: 10px;
  color: black;
  outline: none;
}
.contact-form button {
  border: none;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}
