:root {
  --primary-blue: #009EC4;
  /* --primary-orange: #ff9800; */
  --primary-orange: #f7a707;
  /* --dark-blue: #0d47a1; */
  --dark-blue: #009ec4;

  --light-blue: #e3f2fd;
  --text-dark: #333;
  --text-light: #fff;
  --transition: all 0.3s ease;
  --success-color: #4caf50;
  /* --warning-color: #ff9800; */
  --warning-color: #f7a707;
  --danger-color: #f44336;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #f8f9fa;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}
.mb-0{
margin-bottom: 0px;
}
.mt-0{
margin-top: 0px;
}
.pt-0{
padding-top: 0px;
}
.pb-0{
padding-bottom: 0px;
}

.preloader-content {
  text-align: center;
  color: var(--text-light);
}

.preloader-logo {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}

.preloader-logo .v {
  color: var(--primary-orange);
  text-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.preloader-logo .x {
  color: var(--text-light);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--primary-orange);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

.preloader-text {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.8;
}

#preloader.fade-out {
  opacity: 0;
}

body.preloader-active {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  /*padding: 0 15px;*/
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-blue);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: var(--transition);
}

a:hover {
  color: var(--dark-blue);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-light);
  /*box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);*/
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 152, 0, 0.4);
}

.btn-outline {
  background-color: #7F7E8A;
  color: var(--text-light);
  /*border: 2px solid var(--primary-orange);*/
}

.btn-outline:hover {
  background-color: var(--primary-orange);
  color: var(--text-dark);
}

/* Header */
header {
  background-color: var(--primary-blue);
  color: var(--text-light);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
    border-bottom: solid 4px #f7a707;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
 
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-text span {
  font-weight: 700;
  margin-left: 2px;
}

.logo-text .v {
  color: var(--primary-orange);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text .x {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
  position: relative;
}

.nav-links > li > a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition);
}

.nav-links > li > a:hover::after {
  width: 100%;
}

/* Cart Icon in Navigation */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

/* Multi-level Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
}

.dropdown-item:hover {
  background-color: rgba(30, 136, 229, 0.1);
  color: var(--primary-blue);
}

.dropdown-item i {
  color: var(--primary-orange);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 8px 0;
}

/* Second Level Dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-item::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: auto;
  color: var(--primary-blue);
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 5px;
  min-width: 200px;
}

.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1001;
}

.close-menu i {
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
     border-bottom: solid 4px #009ec4;
}
@media (max-width: 576px) {
  .hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 20px;
  }
}

.hero-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.9) 0%,
    rgba(30, 136, 229, 0.8) 100%
  );
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg_image.jpg')
    no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  margin-bottom: 30px;
  /*animation: pulse 2s infinite;*/
}

.hero-logo .logo-text {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  /*text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);*/
  color: #009ec4;
}

.hero-slide p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
      color: #625858;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 4;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(127 126 138);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: #009ec4;
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 4;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-arrow:hover {
  background-color: var(--primary-orange);
  color: var(--text-dark);
}

.hero-arrow.prev {
  left: 30px;
}

.hero-arrow.next {
  right: 30px;
}

.hero-slide-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-orange);
  animation: float 3s ease-in-out infinite;
}

/* Services Overview Section */
.services-overview {
  /*padding: 40px 0;*/
  background-color: #f9f9f9;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--primary-orange)
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  /*padding: 30px;*/
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--primary-orange)
  );
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Why Choose Section */
.why-choose {
  padding: 40px 0;
  background-color: white;
  position: relative;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(308px, 1fr));
  gap: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  background-color: rgba(30, 136, 229, 0.05);
}

.feature i {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-top: 5px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Services Section with Cart */
.services {
  /*padding: 40px 0;*/
  background-color: #f9f9f9;
  position: relative;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-title {
  text-align: left;
  margin-bottom: 0;
}

.services-controls {
  display: flex;
  gap: 15px;
}

.view-toggle {
  display: flex;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.view-option {
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.view-option.active {
  background-color: var(--primary-blue);
  color: white;
}

.view-option:first-child {
  border-radius: 30px 0 0 30px 0;
}

.view-option:last-child {
  border-radius: 0 30px 30px 0 0;
}

.cart-container {
  display: flex;
  align-items: center;
  position: relative;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.close-cart:hover {
  color: var(--primary-orange);
}

.cart-items {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.empty-cart i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-cart p {
  font-size: 1.1rem;
}

.cart-item {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
}

.item-details {
  flex: 1;
}

.item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.item-price {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--primary-blue);
  color: white;
}

.quantity-btn i {
  font-size: 0.8rem;
}

.item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
  transition: var(--transition);
}

.item-remove:hover {
  color: #d32f2f;
}

.item-total {
  font-weight: 700;
  color: var(--primary-blue);
  margin-left: 20px;
  white-space: nowrap;
}

.cart-summary {
  padding: 20px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-label {
  font-weight: 500;
  color: #666;
}

.summary-value {
  font-weight: 700;
  color: var(--text-dark);
}

.cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-clear {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-clear:hover {
  background-color: #f0f0f0;
}

.btn-checkout {
  background-color: var(--success-color);
  color: white;
}

.btn-checkout:hover {
  background-color: #45a049;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.service-description {
  margin-bottom: 15px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: var(--primary-orange);
  font-size: 0.9rem;
  width: 20px;
}

.add-to-cart {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.add-to-cart:hover {
  background-color: #e68900;
  transform: translateY(-2px);
}

.add-to-cart i {
  font-size: 1rem;
}

/* Service Details Modal */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.service-modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  max-width: 800px;
  margin: 50px auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideInUp 0.3s ease-out;
}

.modal-header {
  background-color: var(--primary-blue);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-orange);
}

.modal-body {
  padding: 30px;
}

.modal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-description {
  margin-bottom: 20px;
  line-height: 1.8;
}

.modal-features {
  margin-bottom: 30px;
}

.modal-features h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.modal-features ul {
  list-style: none;
}

.modal-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-features i {
  color: var(--primary-orange);
  font-size: 1rem;
}

.modal-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 30px;
}

.modal-actions {
  display: flex;
  gap: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-orange);
  opacity: 0.3;
}

.testimonial-text {
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-orange);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.testimonial-arrow:hover {
  background-color: var(--primary-orange);
}

.testimonial-arrow.prev {
  left: -20px;
}

.testimonial-arrow.next {
  right: -20px;
}

/* About Section */
.about {
  padding: 40px 0;
  background-color: white;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.mission,
.vision {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mission::before,
.vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-blue),
    var(--primary-orange)
  );
}

.mission h3,
.vision h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission i,
.vision i {
  color: var(--primary-orange);
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-top: 5px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-orange);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.submit-btn:hover {
  background-color: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 152, 0, 0.4);
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--text-light);
  padding: 50px 0 20px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .v {
  color: var(--primary-orange);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo .x {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-links h4 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-orange);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-orange);
  color: var(--text-dark);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
    gap: 15px;
  }

  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonial-arrow.prev {
    left: 10px;
  }

  .testimonial-arrow.next {
    right: 10px;
  }

  .hero-slide h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--primary-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 30px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-links > li > a {
    padding: 15px 25px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
  }

  .close-menu {
    display: block;
  }

  .services-header {
    flex-direction: column;
    align-items: stretch;
  }

  .view-toggle {
    width: 100%;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .hero-slide h1 {
    font-size: 2.2rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-arrow.prev {
    left: 10px;
  }

  .hero-arrow.next {
    right: 10px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    display: none;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .dropdown.active > .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 0;
    margin-top: 0;
    padding-left: 30px;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .dropdown-item {
    color: var(--text-light);
    padding: 12px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
  }

  .dropdown-item i {
    color: var(--primary-orange);
  }

  .dropdown-submenu > .dropdown-item::after {
    color: var(--text-light);
  }

  .dropdown-divider {
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
  }

  .dropdown-submenu > .dropdown-item::after {
    display: inline-block;
  }
}

/* Portfolio Section */
.portfolio {
  padding: 40px 0;
  background-color: white;
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 250px;
  background-color: #f0f0f0;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 136, 229, 0.7),
    rgba(13, 71, 161, 0.9)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.portfolio-category {
  background-color: var(--primary-orange);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* The main button container */
.whatsapp-button {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* --- Animation --- */
  animation: pulse 2s infinite;
  transition: transform 0.2s ease-in-out;
}

/* Hover effect */
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* The pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(247 167 7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Styling for the SVG icon */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: white;
}
.d-none {
  display: none;
}

/* --- The Main Header Container --- */
.about-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  height: 50vh;
  overflow: hidden;
  margin-top: 79px;
}

/* --- The Background Image --- */
.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* IMPORTANT: Replace this URL with your own image */
  background-image: url("../img/hbanner.jpg");
  background-size: cover;
  background-position: center;

  /* Add a dark overlay to make text readable */
  background-color: rgb(227 227 227 / 50%);
  background-blend-mode: multiply;

  /* Place the image behind the content */
  z-index: -1;
}

/* --- Typography --- */
.about-header h1 {
  font-size: 3.5rem;
  font-weight: 300; /* A lighter font weight can look more modern */
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-header p {
  font-size: 1.25rem;
  margin: 0 auto 30px auto; /* Center the paragraph and add bottom margin */
  line-height: 1.6;
}

/* --- Call-to-Action Button --- */
.cta-button {
  display: inline-block;
  background-color: #ffa500; /* A vibrant orange for contrast */
  color: #000000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px; /* Pill shape */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ffb733; /* A slightly lighter orange on hover */
  transform: scale(1.05); /* Subtle zoom effect */
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
  .about-header {
    height: 60vh; /* Reduce height on smaller screens */
  }
  .about-header h1 {
    font-size: 2.5rem; /* Smaller heading */
  }
  .about-header p {
    font-size: 1.1rem; /* Smaller paragraph text */
  }
}


.section-title-service {
    display: grid;
    /* gap: 0px; */
    margin: 0px;
    padding: 0px;
   
    background-color: #f7a707;
    align-items: start;
    grid-auto-flow: column;
}
.services services{
    background-color: #7f7e8a;;
}

marquee{
    font-size: 24px;
}

.service-class{
        background-color: #f7a707;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.service-class h{
    margin: 0px;
}

.section-title-service-data

{    display: flex;
    align-items: center;
    background-color: #7f7e8a;
}

.service-category-title{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}



#autocompleteResults {
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    background: #fff;
}

.autocomplete-item:hover {
    background-color: #f0f0f0;
}
mark {
    background-color: yellow;
}
.search_bar_list{
        color: black;
    font-size: 14px;
}

@media (min-width: 0px) and (max-width: 568px) {
    .search-bar{
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .search-bar{
        display: none;
    }
}

.service-class h2{
    color: #fff;
    text-transform: uppercase;
}
.service-category-title{
     text-transform: uppercase;
}
