:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #222;
}

/* Import Poppins from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 100px;
  height: 100px;
  position: relative;
}

.loader img {
  height: 100px;
  width: 100px;
}

/* .loader:before,
.loader:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  mix-blend-mode: multiply;
  animation: rotate 1s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

.loader:before {
  background-color: var(--primary-color);
}

.loader:after {
  background-color: var(--secondary-color);
  animation-delay: 0.5s;
} */

@keyframes rotate {
  0%,
  100% {
    left: 50px;
  }
  25% {
    transform: scale(0.3);
  }
  50% {
    left: 0;
  }
  75% {
    transform: scale(1);
  }
}

/* Header */
.header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1px 0;
}

.header.scrolled {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
}

.logo {
  max-height: 80px;
  transition: all 0.3s ease;
  padding: 0 0 !important;
}

.header.scrolled .logo {
  max-height: 75px;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  transition: all 0.3s ease;
}

/* .navbar-nav .nav-link:before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        } */

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  visibility: visible;
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.enquiry-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.enquiry-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.offcanvas {
  background-color: var(--light-color);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-body .navbar-nav .nav-link {
  padding: 10px 20px;
}

/* Banner */
.banner {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.banner .swiper-slide {
  position: relative;
  padding: 150px 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.banner .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--light-color);
}

.banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--light-color);
  border-color: var(--light-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 15px;
  border-radius: 5px;
}

.btn-outline:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--light-color);
  background-color: rgba(9, 73, 103, 0.7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: transparent !important;
  opacity: 1 !important;
  border: 2px solid white !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--light-color) !important;
  width: 20px !important;
  border-radius: 100px !important;
}

/* Section Common Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

/* .section-title h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
} */

.section-title.light h2,
.section-title.light h2:after {
  color: var(--light-color);
  /* background-color: var(--light-color); */
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 73, 103, 0.8);
  z-index: 0;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.content-box {
  position: relative;
  z-index: 1;
}
/* Counter Section */
.counter-section {
  background-image: url("../images/cbg1.png");
  color: var(--light-color);
  padding: 80px 0;
}

.counter-content h2 {
  font-size: 2.5rem;
  text-align: right;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-color);
}

.counter-content p {
  font-size: 1.1rem;
  text-align: right;
  margin-bottom: 30px;
  opacity: 0.9;
}

.counter-items {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  /* background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px); */
  border-radius: 8px;
  transition: all 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
  /* background-color: rgba(255, 255, 255, 0.2); */
}

.counter-item i {
  font-size: 2rem;
  color: var(--light-color);
  margin-right: 0px;
  width: 50px;
  margin-bottom: 10px;
  text-align: center;
}

.counter-item .counter {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: orange;
}

.counter-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .counter-content {
    margin-bottom: 40px;
    text-align: center;
  }

  .counter-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .counter-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Projects Section */
.projects-section {
  background-color: var(--light-color);
}

.project-filter {
  margin-bottom: 40px;
  text-align: center;
}

.project-filter button {
  background: none;
  border: none;
  padding: 8px 20px;
  margin: 0 1px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 7px;
}

.project-filter button:hover,
.project-filter button.active {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.project-item {
  position: relative;
  margin-bottom: 0px !important;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-img {
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0 !important;
  transition: all 0.5s ease;
}

.project-item:hover .project-img img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 73, 103, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-info {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.project-item:hover .project-info {
  transform: translateY(0);
}

.project-info h4 {
  color: var(--light-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.project-info p {
  color: var(--light-color);
  margin-bottom: 15px;
}

.project-info a {
  color: var(--light-color);
  font-size: 1.5rem;
}

/* How We Work Section */
.process-section {

  color: var(--light-color);
}

.process-box {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.process-step {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
}

.process-step:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--light-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.process-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--secondary-color);
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--light-color);
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding-left: 45px;
}

textarea.form-control {
  height: auto;
  padding-left: 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.input-group-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  z-index: 4;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
  .banner h1 {
    font-size: 2.5rem;
  }

  .banner p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .enquiry-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .banner {
    padding-top: 80px;
  }

  .swiper-slide {
    padding: 100px 0;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .logo {
    max-height: 50px;
  }

  .banner h1 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

:root {
  --primary-color: #094967;
  --light-color: #ffffff;
  --dark-overlay: rgba(0, 0, 0, 0.7);
  --light-overlay: rgba(255, 255, 255, 0.3);
}

/* Banner Styles */
.banner {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.banner .swiper-slide {
  position: relative;
  padding: 150px 0;
  height: 90vh !important;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay that slides in with the slide */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.315);
  z-index: 1;
}

/* Light overlay that slides in after */
.light-overlay {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.164);
  z-index: 2;
  transition: left 1s ease 0.2s;
}

/* When slide is active */
.swiper-slide-active .light-overlay {
  left: 0; /* Slides in from right */
}

/* Image container */
.banner .slide-image-container {
  position: absolute;
  right: 5%;
  bottom: -100%;
  width: 40%;
  max-width: 600px;
  height: auto;
  z-index: 3;
  transition: bottom 1s ease 1.5s; /* Starts after light overlay */
}

.banner .swiper-slide-active .slide-image-container {
  bottom: 0% !important;
}

.banner .slide-image-container img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Banner content */
.banner-content {
  position: relative;
  z-index: 2;
  color: var(--light-color);
  /* padding-right: 50%; */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.8s;
}

.banner .swiper-slide-active .banner-content {
  opacity: 1;
  transform: translateX(0);
}

.banner h1 {
  font-size: 3rem !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
  color: white;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--light-color);
  border-color: var(--light-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 15px;
  border-radius: 5px;
}

.btn-outline:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--light-color);
  background-color: rgba(9, 73, 103, 0.3);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem !important;
  color: white !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
  border: 2px solid var(--light-color) !;
}

.swiper-pagination-bullet-active {
  background-color: var(--light-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .banner-content {
    padding-right: 0;
  }

  .slide-image-container {
    display: none;
  }

  .swiper-slide {
    padding: 100px 0;
    height: auto;
    min-height: 100vh;
  }

  .banner h1 {
    font-size: 2.5rem;
  }
}

/* Modern About Section Styles */
.about-section {
  padding: 100px 0;
  position: relative;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.media-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.about-media:hover .media-img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.experience-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.experience-badge small {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.about-content {
  padding: 0 20px;
}

.content-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.content-intro {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
}

.content-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin: 0;
  font-style: italic;
  color: #444;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: #1a5276;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.btn i {
  margin-left: 8px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    justify-content: center;
  }
}

/* Modal Enquiry Styles */
.modal-enquiry .modal-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-enquiry .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 20px 25px;
}

.modal-enquiry .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

.modal-enquiry .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.modal-enquiry .modal-body {
  padding: 30px;
}

.modal-enquiry .input-icon {
  position: absolute;
  left: 15px;
  top: 12px;
  /* transform: translateY(-50%); */
  color: var(--primary-color);
  font-size: 1.1rem;
  z-index: 4;
}

.modal-enquiry .form-control,
.modal-enquiry .form-select {
  padding-left: 45px !important;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.modal-enquiry .form-control:focus,
.modal-enquiry .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.modal-enquiry textarea.form-control {
  height: auto;
  padding-top: 10px !important;
  min-height: 100px;
}

.modal-enquiry .btn-primary {
  background-color: var(--primary-color);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-enquiry .btn-primary:hover {
  background-color: #1a5276;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation for modal entrance */
.modal-enquiry.fade .modal-dialog {
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

.modal-enquiry.show .modal-dialog {
  transform: translateY(0);
}

/* Testimonial Slider Styles with my-testi prefix */
.my-testi-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.my-testi-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-testi-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.my-testi-slider-container {
  position: relative;
  padding: 0 10px;
}

.my-testi-section .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 0px);
  right: auto;
}

.my-testi-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
  /* height: 100%; */
  transition: all 0.3s ease;
}

.my-testi-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-color);
}

.my-testi-img img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.my-testi-content {
  margin-bottom: 20px;
}

.my-testi-content p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  position: relative;
  padding: 0 10px;
}

.my-testi-content p::before,
.my-testi-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.my-testi-content p::before {
  top: -15px;
  left: -5px;
}

.my-testi-content p::after {
  bottom: -25px;
  right: -5px;
}

.my-testi-author h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.my-testi-author p {
  color: #777;
  font-size: 0.9rem;
}

/* Swiper Navigation with prefix */
.my-testi-button-next,
.my-testi-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.my-testi-button-next::after,
.my-testi-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.my-testi-button-next:hover,
.my-testi-button-prev:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .my-testi-section {
    padding: 80px 0;
  }

  .my-testi-title {
    font-size: 2rem;
  }

  .my-testi-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .my-testi-slider-container {
    padding: 0 30px;
  }

  .my-testi-button-next,
  .my-testi-button-prev {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .my-testi-title {
    font-size: 1.8rem;
  }

  .my-testi-slider-container {
    padding: 0 15px;
  }

  .my-testi-button-next,
  .my-testi-button-prev {
    display: none;
  }
}

.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0 0;
}

/* Footer with Background Image - Scoped Styles */
.footer {
  position: relative;
  color: white;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer .footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #094967d9;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer .footer-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.footer p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: white;
  color: var(--primary-color);
}

.footer .footer-links h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer .footer-links h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li i {
  width: 20px;
  text-align: center;
}

.footer .footer-links ul li a {
  color: white;
  opacity: 0.9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .footer-links ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer .footer-bottom {
  /* background-color: rgba(0, 0, 0, 0.2); */
  padding: 20px 0;
  margin-top: 60px;
  display: flex;
  border-top: 2px solid rgb(255, 255, 255);
  justify-content: space-between;
  text-align: center;
}

.footer .footer-bottom p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer .footer-bottom p a {
  color: skyblue;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer .footer-links h4 {
    font-size: 1.2rem;
  }
}

.dark-bg {
  background-color: var(--dark-color);
  padding: 40px;
  border-radius: 8px;
}

.light-bg {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
}

h2 {
  margin-top: 0;
  color: var(--primary-color);
  text-align: center;
}

.dark-bg h2 {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: color 0.3s ease 0.1s;
  z-index: 1;
  min-width: 200px;
}

/* Light background button */
.btn-light {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-light:hover {
  color: var(--light-color);
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.5s ease-out;
  z-index: -1;
}

.btn-light:hover::before {
  left: 0;
}

/* Dark background button */
.btn-dark {
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-dark:hover {
  color: var(--dark-color);
}

.btn-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: all 0.5s ease-out;
  z-index: -1;
}

.btn-dark:hover::before {
  left: 0;
}

.common-title-discription h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}

.services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.service-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-section .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}

.service-card:hover .card-bg {
  transform: scale(1.1);
}

/* New primary color overlay */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(
    --primary-color
  ); /* Change this to your primary color */
  z-index: 2;
  transition: width 0.4s ease;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.service-card:hover::before {
  width: 100%;
}

.services-section .card-content {
  position: relative;
  z-index: 3; /* Increased z-index to appear above overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
}

/* Modified background gradient to work with overlay */
.services-section .card-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.services-section .card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.services-section .card-hover-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover .card-hover-content {
  opacity: 1;
  height: auto;
  margin-top: 15px;
}

.service-card:hover .card-content h3 {
  transform: translateY(-1px);
}

.services-section .card-hover-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.services-section .card-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services-section .card-link:hover {
  color: #cbe8f5;
}

.services-section .card-link i {
  margin-left: 8px;
  font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .service-card {
    height: 250px;
  }

  .services-section .card-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .service-card {
    height: 220px;
  }

  .services-section .card-content {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .service-card {
    height: 200px;
  }

  .services-section .card-content h3 {
    font-size: 1.2rem;
  }
}

/* Why Choose Us Section Styles */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.divider {
  width: 80px;
  height: 4px;
  background: white;
  margin: 0 auto 25px;
  border-radius: 2px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Feature Cards */
.feature-card-wrapper {
  height: 100%;
  padding: 15px;
  transition: all 0.3s ease;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transform: scale(1);
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: white;
  transition: all 0.6s ease;
}

/* Isolated hover effect - only affects the hovered card */
.feature-card-wrapper:hover .feature-card {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-card-wrapper:hover .feature-card::before {
  height: 100%;
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s ease;
}

.icon-wrapper i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.6s ease;
}

.feature-card-wrapper:hover .icon-wrapper {
  background: white;
}

.feature-card-wrapper:hover .icon-wrapper i {
  color: var(--primary-color);
}

.feature-card-wrapper:hover .icon-bg {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-hover {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

.feature-card-wrapper:hover .feature-hover {
  max-height: 300px;
  opacity: 1;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-benefits li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.feature-benefits i {
  color: white;
  margin-right: 10px;
  font-size: 0.9rem;
  margin-top: 3px;
}

.feature-benefits span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile "View More" button */
.feature-mobile-toggle {
  display: none;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-mobile-toggle i {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-card-wrapper:hover .feature-card {
    transform: scale(1.03);
  }

  /* Mobile hover alternative */
  .feature-hover {
    max-height: 0;
    opacity: 0;
    transition: none;
  }

  .feature-mobile-toggle {
    display: inline-flex;
    align-items: center;
  }

  /* Active state for mobile */
  .feature-card-wrapper.active .feature-card {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.15);
  }

  .feature-card-wrapper.active .feature-hover {
    max-height: 1000px;
    opacity: 1;
    transition: all 0.6s ease;
  }

  .feature-card-wrapper.active .feature-mobile-toggle {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .feature-card-wrapper {
    padding: 10px;
  }
}

.stat-icon i {
  color: #094967;
  font-size: 24px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Gallery Row */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px; /* Negative margin to counteract column padding */
}

.gallery-col {
  padding: 10px; /* Spacing between items */
}

/* Gallery Item - Ensures perfect image fit */
.gallery-item {
  position: relative;
  width: 100%;
  height: 250px;
  /* overflow: hidden; */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .gallery-item:hover img {
  transform: scale(1.05);
} */

/* Zoom Button */
.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.gallery-zoom:hover {
  background: white;
  color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-item {
    padding-bottom: 70%; /* Adjust aspect ratio for tablets */
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .gallery-item {
    padding-bottom: 100%; /* Square aspect ratio on mobile */
  }
}

.floating-icons-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-icons-bg i {
  position: absolute;
  color: rgba(0, 0, 0, 0.05);
  font-size: 2rem;
  animation: subtleFloat 8s infinite ease-in-out;
  z-index: 0;
}

/* Icon positions (same as before) */
.floating-icons-bg i:nth-child(1) {
  top: 10%;
  left: 5%;
}
.floating-icons-bg i:nth-child(2) {
  top: 10%;
  left: 97%;
}
.floating-icons-bg i:nth-child(3) {
  top: 70%;
  left: 10%;
}
.floating-icons-bg i:nth-child(4) {
  top: 50%;
  left: 90%;
}
.floating-icons-bg i:nth-child(5) {
  top: 80%;
  left: 60%;
}
.floating-icons-bg i:nth-child(6) {
  top: 20%;
  left: 15%;
}
.floating-icons-bg i:nth-child(7) {
  bottom: 0%;
  left: 4%;
}
.floating-icons-bg i:nth-child(8) {
  top: 75%;
  left: 70%;
}
.floating-icons-bg i:nth-child(9) {
  top: 12%;
  left: 30%;
}
.floating-icons-bg i:nth-child(10) {
  top: 85%;
  left: 40%;
}
.floating-icons-bg i:nth-child(11) {
  top: 35%;
  left: 50%;
}
.floating-icons-bg i:nth-child(12) {
  top: 50%;
  left: 1%;
}

/* Very subtle floating animation */
@keyframes subtleFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, -1px) rotate(0.5deg);
  }
  50% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  75% {
    transform: translate(1px, -1px) rotate(0.3deg);
  }
}

/* Randomize animation duration and delay */
.floating-icons-bg i:nth-child(1) {
  animation-duration: 7s;
  animation-delay: 0s;
}
.floating-icons-bg i:nth-child(2) {
  animation-duration: 8s;
  animation-delay: 1s;
}
.floating-icons-bg i:nth-child(3) {
  animation-duration: 9s;
  animation-delay: 2s;
}
.floating-icons-bg i:nth-child(4) {
  animation-duration: 6s;
  animation-delay: 0.5s;
}
.floating-icons-bg i:nth-child(5) {
  animation-duration: 7.5s;
  animation-delay: 1.5s;
}
.floating-icons-bg i:nth-child(6) {
  animation-duration: 8.5s;
  animation-delay: 0.8s;
}
.floating-icons-bg i:nth-child(7) {
  animation-duration: 7.2s;
  animation-delay: 2.2s;
}
.floating-icons-bg i:nth-child(8) {
  animation-duration: 6.8s;
  animation-delay: 1.2s;
}
.floating-icons-bg i:nth-child(9) {
  animation-duration: 9.2s;
  animation-delay: 0.3s;
}
.floating-icons-bg i:nth-child(10) {
  animation-duration: 8.2s;
  animation-delay: 1.8s;
}
.floating-icons-bg i:nth-child(11) {
  animation-duration: 7.8s;
  animation-delay: 0.7s;
}
.floating-icons-bg i:nth-child(12) {
  animation-duration: 6.5s;
  animation-delay: 2.5s;
}

a {
  text-decoration: none;
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #ff6b00;
}

.my-breacum {
  background-color: var(--primary-color);
  color: white;
  height: 300px;
  margin-top: 90px;
  overflow: hidden;
}

.my-breacum-content {
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  margin-top: 20px;
}

.my-breacum-title {
  font-size: 2rem;
  /* margin-bottom: 1rem; */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.my-breacum-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.my-breacum-links a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-breacum-links a:hover {
  color: var(--accent-color);
}

.my-breacum-links span {
  color: var(--secondary-color);
}

.my-breacum-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.my-breacum-category {
  padding: 8px 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--secondary-color);
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-breacum-category:hover,
.my-breacum-category.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.my-breacum-slider {
  height: 100%;
  /* background-color: white; */
  position: relative;
  overflow: hidden;
}

.my-breacum-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.my-breacum-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.my-breacum-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .my-breacum {
    height: auto;
    min-height: 300px;
  }

  .my-breacum-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .my-breacum-title {
    font-size: 1.6rem;
  }

  .my-breacum-links a,
  .my-breacum-links span {
    font-size: 0.9rem;
  }

  .my-breacum-category {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
}

.mep-team-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.mep-team-section h2{
  color: black;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  /* border-top: 4px solid var(--secondary-color); */
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img-container {
  padding: 40px 20px 0;
  text-align: center;
}

.team-img {
  /* width: 150px; */
  height: 250px;
  /* border-radius: 50%; */
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 15/20;
  border: 5px solid var(--secondary-color);
}

.team-img img {
  border-radius: 10px;
}

.team-details {
  padding: 10px 20px 20px;
  text-align: center;
}

.team-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

.team-specialty {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.team-experience {
  background: var(--secondary-color);
  color: var(--primary-color);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.team-skills {
  margin-bottom: 20px;
}

.skill-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin: 0 5px 5px 0;
}

.social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --card-top-border: #4caf50;
  --card-bottom-border: #ffc107;
}

.my-mis-vis-val {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.my-mis-vis-val .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: white;
  font-size: 2.5rem;
}

.my-mis-vis-val .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.my-mis-vis-val .card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 100%;
  position: relative;
  border-top: 8px solid var(--card-top-border);
  border-bottom: 8px solid var(--card-bottom-border);
  margin-bottom: 20px;
}

.my-mis-vis-val .card-content {
  padding: 30px;
}

.my-mis-vis-val .card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.my-mis-vis-val .card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.my-mis-vis-val .card p {
  margin-bottom: 20px;
  color: #666;
}

.my-mis-vis-val .card .expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: #666;
  padding: 0 30px;
  margin: 0 -30px;
}

/* This is the crucial fix - only affects hovered card */
.my-mis-vis-val .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.my-mis-vis-val .card:hover .expand-content {
  max-height: 500px;
  padding: 0 30px 20px;
  margin: 0 -30px;
}

.my-mis-vis-val .card:hover .card-icon {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .my-mis-vis-val .card {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}

.gallery-inn {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gallery-inn .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-inn .section-heading h2 {
  font-size: 2.5rem;
  color: #094967;
  position: relative;
  padding-bottom: 15px;
}

.gallery-inn .section-heading h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #094967;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-inn .gallery-item {
  margin-bottom: 30px;
  /* overflow: hidden; */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.gallery-inn .gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-inn .gallery-link {
  display: block !important;
  text-decoration: none;
  color: inherit;
}

.gallery-inn .gallery-img-container {
  position: relative;
  /* overflow: hidden; */
  height: 250px;
}

.gallery-inn .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-inn .gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Project Name Styling - Below Image */
.gallery-inn .project-name {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.gallery-inn .project-name h3 {
  font-size: 1.25rem;
  color: #094967;
  margin-bottom: 0;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .gallery-inn .gallery-img-container {
    height: 200px;
  }
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --dark-color: #063045;
  --light-color: #f5fbff;
  --text-color: #2d3748;
  --text-light: #718096;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-inn {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}




/* Header Section */
.contact-inn__header {
  text-align: center;
  padding: 80px 0 40px;
  position: relative;
}

.contact-inn__title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-color), var(--dark-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-inn__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Column Layout */
.contact-inn__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-inn__col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.contact-inn__col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.contact-inn__col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.contact-inn__col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Contact Cards */
.contact-inn__card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.contact-inn__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-inn__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
}

.contact-inn__card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-inn__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-inn__card-content {
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-inn__card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-inn__card-link:hover {
  color: var(--dark-color);
}

.contact-inn__card-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.contact-inn__card-link:hover i {
  transform: translateX(4px);
}

/* Contact Form Section */
.contact-inn__form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-inn__form-col {
  padding: 0 15px;
  margin-bottom: 0px;
}

.contact-inn__form-col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.contact-inn__form-col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.contact-inn__form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}

.contact-inn__form-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-inn__form-info-text {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-inn__form-container {
  background: #094967;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-inn__form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.contact-inn__form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-inn__form-label {
  display: block;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 14px;
  color: #a1e1ffa1;
}

.contact-inn__form-input,
.contact-inn__form-textarea {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f8fafc;
}

.contact-inn__form-input:focus,
.contact-inn__form-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(9, 73, 103, 0.1);
}

.contact-inn__form-textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-inn__form-button {
  background: linear-gradient(135deg, #4bb2e2, #007fbf);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
  display: flex;
}

.contact-inn__form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(9, 73, 103, 0.2);
}

.contact-inn__form-button i {
  margin-left: 10px;
}

/* Map Section */
/* .contact-inn__map-section {
  margin-bottom: 80px;
} */

.contact-inn__map-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.contact-inn__map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  position: relative;
}

.contact-inn__map {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-inn__map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(9, 73, 103, 0.8), transparent);
  padding: 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contact-inn__map-address {
  font-weight: 600;
}

.contact-inn__map-directions {
  background: white;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-inn__map-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-inn__title {
    font-size: 2.75rem;
  }

  .contact-inn__form-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact-inn__header {
    padding: 60px 0 30px;
  }

  .contact-inn__title {
    font-size: 2.25rem;
  }

  .contact-inn__subtitle {
    font-size: 1.1rem;
  }

  .contact-inn__col-lg-4,
  .contact-inn__col-lg-6,
  .contact-inn__form-col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-inn__card {
    padding: 30px;
  }

  .contact-inn__form-container {
    padding: 30px;
  }

  .contact-inn__map-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-inn__title {
    font-size: 2rem;
  }

  .contact-inn__form-info-title {
    font-size: 2rem;
  }

  .contact-inn__map-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #222;
}

/* body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
  } */

.my-services-inn {
  padding: 60px 0;
}

/* Enhanced Related Services Sidebar with Cards */
.my-services-inn .services-sidebar {
  padding: 20px;
  height: 100%;
  position: sticky;
  top: 100px;
  border: 1px solid skyblue;
  border-radius: 10px;
  height: auto;
  width: 90%;
}

.my-services-inn .services-sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  position: relative;
}

.my-services-inn .services-sidebar h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.my-services-inn .se-ca {
  background: var(--light-color);
  border-radius: 8px;
  padding: 10px 20px;
  height: auto;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-services-inn .se-ca:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.my-services-inn .se-ca.active {
  background: var(--primary-color);
  color: var(--light-color);
}

.my-services-inn .se-ca a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.my-services-inn .se-ca .arrow-icon {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.my-services-inn .se-ca.active .arrow-icon {
  color: var(--light-color);
  transform: translateX(5px);
}

/* .my-services-inn .se-ca:hover i{
  transform: translateX(5px);
  color:white !important;
} */

/* Swiper custom navigation */
.my-services-inn .service-slider {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.my-services-inn .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s ease;
}

.my-services-inn .swiper-slide:hover {
  transform: scale(1.02);
}

.my-services-inn .slide-content {
  background: rgba(9, 73, 103, 0.8);
  color: var(--light-color);
  padding: 30px;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.my-services-inn .swiper-slide-active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.my-services-inn .custom-navigation {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.my-services-inn .custom-prev,
.my-services-inn .custom-next {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  opacity: 0.8;
}

.my-services-inn .custom-prev:hover,
.my-services-inn .custom-next:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  opacity: 1;
  transform: scale(1.1);
}

.my-services-inn .service-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* .my-services-inn .service-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
} */

.my-services-inn .service-image {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.my-services-inn .service-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.my-services-inn .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.my-services-inn .service-image:hover img {
  transform: scale(1.05);
}

.my-services-inn .feature-list {
  padding-left: 0;
}

.my-services-inn .feature-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  list-style: none;
  transition: all 0.3s ease;
}

.my-services-inn .feature-list li:hover {
  transform: translateX(5px);
}

.my-services-inn .feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23094967"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.my-services-inn .feature-list li:hover:before {
  transform: scale(1.2);
}

.my-services-inn .text-block {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.my-services-inn .text-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: all 0.4s ease;
}

.my-services-inn .text-block:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.my-services-inn .text-block:hover:before {
  height: 100%;
}

.my-services-inn .text-block h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.my-services-inn .text-block h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

@media (max-width: 991.98px) {
  .my-services-inn .services-sidebar {
    margin-bottom: 30px;
  }

  .my-services-inn .service-slider {
    height: 350px;
  }
}

@media (max-width: 767.98px) {
  .my-services-inn {
    padding: 30px 0;
  }

  .my-services-inn .service-slider {
    height: 300px;
  }

  .my-services-inn .feature-list li {
    padding-left: 25px;
  }

  .my-services-inn .se-ca {
    padding: 15px;
  }
}

.se-ca:hover {
  background-color: #063045;
  color: white;
}

.se-ca:hover i {
  color: white;
}

.feature-list ul {
  padding-left: 0px;
}

.contact-card {
  position: relative;
  /* width: 300px; */
  /* height: 400px; */
  border-radius: 15px;
  overflow: hidden;
  margin-top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 73, 103, 0.8);
}

.card-content {
  position: relative;
  padding: 30px;
  color: var(--light-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card 3: Sidebar Style */
.card-3 {
  background: url("https://images.unsplash.com/photo-1568992687947-868a62a9f521")
    center/cover;
}

.card-3 .card-content {
  justify-content: center;
}

.card-3 .contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.card-3 .sidebar-item {
  display: flex;
  align-items: flex-start;
}

.card-3 .icon-wrapper {
  width: 40px !important;
  height: 40px !important;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 16px;
}

.card-3 .contact-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: var(--secondary-color);
}

.contact-info p {
  margin: 0;
  font-size: 14px;
}

.card-3 .icon-wrapper i {
  font-size: 1.5rem;
  color: #094967;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
   width: 40px !important;
  height: 40px !important;
  transition: all 0.4s ease;
}

.btnicon-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #2ac902;
  left: 10px;
  position: fixed;
  bottom: 70px;
  margin-left: 10px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

.btnicon-whatsapp a {
  color: white;
}

.btnicon-call {
  width: 40px;
  height: 40px;
  left: 20px;
  border-radius: 100%;
  background-color: #326694;
  position: fixed;
  bottom: 20px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

.btnicon-call a {
  color: white;
  font-size: 20px;
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #222;
}

.my-projects-inn {
  padding: 60px 0;
  /* background-color: var(--secondary-color); */
}

.my-projects-inn .section-title {
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.my-projects-inn .project-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  background-color: var(--light-color);
  transition: transform 0.3s ease;
}

.my-projects-inn .project-card:hover {
  transform: translateY(-3px);
}

.my-projects-inn .project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.my-projects-inn .project-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.my-projects-inn .project-title {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  padding: 15px;
  margin: 0;
}

.my-projects-inn .project-link {
  text-decoration: none;
  display: block;
}

.my-projects-inn .project-link:hover .project-title {
  color: var(--accent-color);
}

.my-projects-inn .pagination {
  justify-content: center;
  margin-top: 40px;
}

.my-projects-inn .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.my-projects-inn .page-link {
  color: var(--primary-color);
}

:root {
  --primary-color: #094967;
  --secondary-color: #cbe8f5;
  --accent-color: #094967;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #222;
}

.project-view-inn {
  padding: 60px 0;
  background-color: var(--light-color);
}

.project-view-inn .project-header {
  margin-bottom: 40px;
  text-align: center;
}

.project-view-inn .project-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.project-view-inn .project-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.project-view-inn .project-meta-item {
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.project-view-inn .project-meta-item i {
  margin-right: 8px;
  color: var(--primary-color);
}

.project-view-inn .project-tag {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.project-view-inn .project-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-view-inn .project-content {
  max-width: 900px;
  margin: 0 auto;
}

.project-view-inn .section-title {
  color: var(--primary-color);
  margin: 40px 0 20px;
  font-weight: 600;
}

.project-view-inn .project-desc {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.project-view-inn .features-list {
  list-style-type: none;
  padding-left: 0;
}

.project-view-inn .features-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.project-view-inn .features-list i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
}

.project-view-inn .gallery-img-container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.project-view-inn .gallery-img-container:hover {
  transform: translateY(-5px);
}

.project-view-inn .gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.project-view-inn .gallery-img-container:hover .gallery-img {
  transform: scale(1.05);
}

.project-view-inn .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-view-inn .gallery-img-container:hover .img-caption {
  transform: translateY(0);
}

.project-view-inn .back-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.project-view-inn .back-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

@media (max-width: 991.98px) {
  .project-view-inn .project-hero-img {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .project-view-inn .project-hero-img {
    height: 300px;
  }

  .project-view-inn .gallery-img {
    height: 150px;
  }
}











.features-list-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list-1 ul li {
    position: relative;
    padding: 10px 0;
    padding-left: 25px; /* space for icon */
    margin-bottom: 10px;
       
    border-bottom: 1px solid #eee;
   
}

.features-list-1 ul li::before {
    content: "\f058"; /* Unicode for fa-check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Solid style */
    color: #094967; /* your primary color */
    position: absolute;
    left: 0;
    font-size: 20px;
    
}


/* .pro-gal a img{
  height: 300px;
} */



@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}