:root {
  --primary-color: #0a66c2;
  --primary-dark: #084f98;

  --secondary-color: #333;
  --light-color: #f8f9fa;
  --dark-overlay: rgba(0, 0, 0, 0.7);

  /* Accent Colors */
  --color-accent: #0dcaf0;
  --color-highlight: #ffd333;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-dark: #212529;

  --font-h1: 2.5rem;
  --font-h2: 2rem;
  --font-h3: 1.75rem;
  --font-h4: 1.5rem;
  --font-h5: 1.25rem;
  --font-h6: 1rem;
  --font-p: 1rem;
  --font-small: 0.875rem;

  --section-margin-lg: 5rem;
  --section-margin-sm: 2.5rem;
}

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-light);
  /* background-color: whitesmoke; */
  font-family: "Roboto", sans-serif;
  font-size: var(--font-p);
  color: var(--color-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--color-dark);
}

h1 {
  font-size: var(--font-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 600;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 600;
}

h4 {
  font-size: var(--font-h4);
  font-weight: 500;
}

h5 {
  font-size: var(--font-h5);
  font-weight: 500;
}

h6 {
  font-size: var(--font-h6);
  font-weight: 500;
}

p {
  font-size: var(--font-p);
  font-weight: 400;
  line-height: 1.6;
}

li {
  color: var(--color-dark);
}

section {
  padding: var(--section-margin-lg) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-margin-sm) 0;
  }
}

small {
  font-size: var(--font-small);
  color: var(--color-gray);
}

i {
  color: var(--primary-color);
}

a {
  text-decoration: none;
}

#head-banner {
  background-color: var(--primary-color);
  color: var(--color-light);
}

#head-banner a,
i {
  color: var(--color-white);
}

.gradient-text {
  background: linear-gradient(90deg, #084f98 0%, #0a66c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* For Firefox */
  background-clip: text;
  color: transparent;
}

/* Custom tab styling */
.nav-tabs .nav-link {
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: var(--color-dark);
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.nav-link span i {
  color: var(--primary-dark);
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.nav-link.active span i {
  color: var(--color-white) !important;
}

.nav-tabs .nav-link:hover:not(.active) {
  background-color: #f0f0f0;
  border-color: #dee2e6;
}

.nav-tabs {
  border-bottom: none;
  margin-bottom: 20px;
}

.tab-pane h3 {
  margin-bottom: 20px;
  color: #333;
}

.tab-pane p {
  color: #666;
}

.icon-wrapper {
  margin-right: 10px;
  font-size: 1.25rem;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333 !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.owl-nav button:hover {
  background-color: var(--primary-dark) !important;
  color: #fff !important;
}

.owl-prev {
  left: -25px;
}

.owl-next {
  right: -25px;
}

/* =========================================

NAVBAR

===========================================*/

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: whitesmoke;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-dark);
}

.nav-link {
  font-size: 1.1rem;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  margin-inline: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .nav-link.active {
  color: var(--primary-dark);
  font-weight: bold;
}

.navbar.bg-blue {
  background-color: var(--primary-color) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar.bg-blue .nav-link:hover,
.navbar.bg-blue .nav-link:focus {
  color: var(--color-light) !important;
  transform: none;
  text-decoration: none;
  transform: translateY(-3px);
}

.navbar.bg-blue .nav-link {
  color: var(--color-light);
}

.navbar.bg-white {
  background-color: whitesmoke !important;
}



/* =========================================

CAROUSEL

===========================================*/

.carousel-inner {
  height: 800px;
}

.carousel-item {
  height: 100%;
}

.carousel-item-content {
  height: 100%;
  display: flex;
}

.text-section {
  width: 50%;
  padding: 50px;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='4' fill='%23b0c4de' fill-opacity='0.15'/%3E%3Ccircle cx='50' cy='25' r='3' fill='%23084f98' fill-opacity='0.10'/%3E%3Ccircle cx='80' cy='40' r='5' fill='%230a66c2' fill-opacity='0.12'/%3E%3Ccircle cx='20' cy='70' r='4' fill='%23084f98' fill-opacity='0.10'/%3E%3Ccircle cx='60' cy='80' r='3' fill='%23b0c4de' fill-opacity='0.15'/%3E%3Ccircle cx='85' cy='85' r='4' fill='%230a66c2' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;
}

.image-section {
  width: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.5) 0%,
    rgba(8, 79, 152, 0.4) 100%
  );
  z-index: 1;
}

.tagline {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.tagline::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin-left: 10px;
  vertical-align: middle;
}

.main-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.carousel-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.carousel-btn svg {
  margin-left: 10px;
}

.animated-element {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .carousel-inner {
    height: auto;
  }

  .carousel-item-content {
    flex-direction: column-reverse;
    height: auto;
  }

  .text-section,
  .image-section {
    width: 100%;
  }

  .text-section {
    padding: 40px 20px;
  }

  .image-section {
    height: 300px;
  }

  .main-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .text-section {
    padding: 30px 15px;
  }

  .image-section {
    height: 250px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .tagline::after {
    width: 30px;
  }

  .carousel-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .image-section {
    height: 200px;
  }

  .main-heading {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.9rem;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  right: 20px;
  left: auto;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 5px;
  margin-left: 5px;
  border-radius: 50%;
  text-indent: -999px;
  cursor: pointer;
  background-color: white;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--primary-color);
}

.about-section {
  background-color: #f9f9f9;
}

.text-primary {
  color: #0a66c2 !important;
}

h5 {
  letter-spacing: 1px;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================

SERVICES

===========================================*/

.services-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.service-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin: 15px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: var(--primary-dark);
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--primary-dark);
}

.service-number {
  color: #e9ecef;
  font-size: 24px;
  font-weight: 700;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-desc {
  color: #6c757d;
  margin-bottom: 20px;
}

.read-more {
  color: #333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more svg {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(5px);
}

.service-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.service-tab {
  padding: 15px 30px;
  border-radius: 4px;
  margin: 0 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.service-tab svg {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.service-tab.active {
  background-color: var(--primary-dark);
  color: #fff;
}

.service-tab:not(.active) {
  background-color: #fff;
  color: #333;
}

.service-tab:hover:not(.active) {
  background-color: #f1f1f1;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #e9ecef;
  margin: 20px 0;
}

.services-heading {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.services-heading::before,
.services-heading::after {
  content: "—";
  padding: 0 10px;
  color: var(--primary-color);
}

.services-title {
  font-size: 42px;
  margin: 10px 0 40px;
  color: #222;
}

.services-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.services-section {
  background-image: url("../images/service_bg_1.jpg");
  object-fit: cover;
}

/* =========================================

COUNTER - SECTION

===========================================*/

.parallax-section {
  background-image: url("../images/counter_1.jpg");
  background-attachment: fixed;
  /* background-color: var(--primary-dark); */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  position: relative;
  margin-top: var(--section-margin-lg);
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-content h1 {
  color: white;
}

.counter {
  margin: 20px 0;
}

.counter-number {
  font-size: 48px;
  font-weight: bold;
  /* color: var(--color-light); */
  color: var(--color-accent);
  /* color: #333333; */
}

.counter p {
  font-size: 24px;
  margin-top: 10px;
  color: whitesmoke;
  text-align: center;
  font-weight: bolder;
  letter-spacing: 3px;
}

#why_choose_us {
  background-image: url("../images/why_bg_1.jpg");
  object-fit: contain;
}

.feature-card {
  border: 1px solid #eee;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
}

.testimonials-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h4 {
  color: #f7941d;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

/* Testimonial Card Styles */
.testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin: 10px;
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  flex-grow: 1;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  max-height: 150px;
  overflow-y: auto;
}

.testimonial-quote::before {
  content: "" "";
  font-size: 60px;
  color: #f1f1f1;
  position: absolute;
  left: -10px;
  top: -20px;
  font-family: Georgia, serif;
  z-index: -1;
}

.testimonial-quote::after {
  content: "" "";
  font-size: 60px;
  color: #f1f1f1;
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-family: Georgia, serif;
  z-index: -1;
}

.testimonial-author {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.testimonial-rating {
  color: #ffc107;
  margin-top: 5px;
}

/* Owl Carousel Navigation Styles */
.testimonial-unique-carousel .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-unique-carousel .owl-prev,
.testimonial-unique-carousel .owl-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  margin: 0 -20px !important;
  pointer-events: auto;
}

.testimonial-unique-carousel .owl-prev:hover,
.testimonial-unique-carousel .owl-next:hover {
  background-color: var(--primary-dark) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    height: 340px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .testimonial-unique-carousel .owl-nav {
    position: static;
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
  }

  .testimonial-unique-carousel .owl-prev,
  .testimonial-unique-carousel .owl-next {
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    height: 360px;
    padding: 20px;
  }
}

#project-showcase-76821 {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

#project-showcase-76821::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 123, 0, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
}

.section-heading {
  position: relative;
  margin-bottom: 60px;
}

.heading-accent {
  display: inline-block;
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 0 10px;
  vertical-align: middle;
}

/* .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
} */

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 15px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 400px;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  background: linear-gradient(
    to top,
    var(--dark-overlay) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.project-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.project-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  opacity: 0;
}

.project-card:hover .project-description {
  opacity: 1;
  transform: translateY(0);
}

.project-link {
  display: inline-block;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.project-link:hover {
  color: var(--primary-color);
}

.project-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.project-link:hover i {
  transform: translateX(5px);
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: var(--primary-color) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: var(--secondary-color) !important;
  font-size: 24px !important;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.owl-prev {
  left: -25px;
}

.owl-next {
  right: -25px;
}

.owl-dots {
  margin-top: 30px !important;
}

.owl-dot span {
  background: #ddd !important;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: var(--primary-color) !important;
  width: 25px !important;
}

.animated-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), #ffaa33);
  filter: blur(150px);
  opacity: 0.7;
  z-index: -1;
}

.bg-1 {
  top: -150px;
  left: -100px;
}

.bg-2 {
  bottom: -100px;
  right: -50px;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }

  .project-card {
    height: 350px;
  }

  .project-overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .project-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .heading-accent {
    width: 60px;
  }

  #project-showcase-76821 {
    padding: 60px 0;
  }

  .project-card {
    height: 300px;
  }

  .owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .owl-nav {
    display: none;
  }

  .project-title {
    font-size: 1.3rem;
  }
}

.gallery-container {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.gallery-title {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.gallery-item a {
  padding: 15px;
}
.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery-item a:hover img {
  transform: scale(1.05);
}

.gallery-filters {
  margin-bottom: 30px;
  text-align: center;
}

.gallery-filters .btn {
  margin: 5px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  border-color: var(--primary-dark);
}

.gallery-filters .btn.active {
  background-color: var(--primary-dark);
  color: white;
}

@media (max-width: 768px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-item img {
    height: 180px;
  }
}

/* Add spacing between images */
.gallery-items {
  margin: 0 -10px;
}

.gallery-item {
  padding: 0 10px;
}

/* =========================================

ONGOING PROJECTS

===========================================*/

/* #ongoing-projects .ongoing-gallery-section {
  background-color: var(--color-dark);
  color: white;
} */

.ongoing-gallery-section {
  position: relative;
  padding: var(--section-margin-lg) 0;
  color: var(--secondary-color);

  background-image: linear-gradient(
      270deg,
      rgba(15, 15, 15, 0.95),
      rgba(40, 40, 40, 0.95)
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23222222' fill-opacity='0.4' d='M0 300 Q200 350 400 300 T800 300 L800 600 L0 600 Z'/%3E%3Cpath fill='%23111111' fill-opacity='0.6' d='M0 320 Q250 400 500 320 T800 320 L800 600 L0 600 Z'/%3E%3Cpath fill='%23000000' fill-opacity='0.8' d='M0 340 Q300 450 600 340 T800 340 L800 600 L0 600 Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  animation: darkWaveMove 0.2s ease-in-out infinite;
}

@keyframes darkWaveMove {
  0%,
  100% {
    background-position: 0% 50%, center;
  }
  50% {
    background-position: 100% 50%, center;
  }
}

/* =========================================

CONTACT US

===========================================*/
#contact-us i {
  color: var(--primary-color);
}

.contact-card {
  background-color: var(--primary-color);
}

.contact-card button {
  background-color: var(--gray);
}

#contact-us {
  background-color: whitesmoke;
  padding: 24px 0;
}

/* =========================================

FOOTER

===========================================*/

.footer {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 4rem 0 0 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer h5 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.footer .list-unstyled a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer .list-unstyled a:hover {
  color: #4ecdc4;
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  width: 20px;
  margin-right: 12px;
  color: #4ecdc4;
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: #4ecdc4;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.company-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4ecdc4;
  margin-bottom: 1rem;
}

/* Animation for footer sections */
.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Generic Arrow Styling */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex !important; /* Force visibility */
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  pointer-events: all;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.owl-nav button:hover {
  background-color: #333;
}

/* Animation */
/* @keyframes lightBlueGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
} */

.gallery-tabs .gallery-link {
  border: 1px solid #dee2e6;
  background-color: var(--color-light);
  color: #495057;
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.gallery-tabs .gallery-link.active {
  background-color: var(--primary-dark);
  color: white;
  border-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0 0;
  }

  .footer h5 {
    margin-top: 2rem;
  }

  .footer h5:first-child {
    margin-top: 0;
  }
}

/*  */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px); /* increased from 30px */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
  animation-timing-function: ease-out;
}

.animated-element.animate__fadeInUp {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* On small screens only (below 768px), make full width */
@media (max-width: 767.98px) {
  .responsive-width {
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    background-color: var(--primary-dark) !important;
  }

  .navbar.bg-blue,
  .navbar.bg-white {
    background-color: var(--primary-dark) !important;
    box-shadow: none !important;
  }

  .navbar .nav-link{
    color: white !important;
  }
}