:root {
  --domala-dark: #018401; /* Deep green */
  --domala-light: #ca3402; /* Vibrant red-orange */
  --domala-white: #005b9c; /* Deep blue */
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Loader */
.loader-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 9999;
  transition: opacity 0.5s;
}

.loader-logo {
  width: 150px;
  height: 150px;
  position: relative;
}

.loader-circle {
  position: absolute;
  inset: 0;
  border: 4px solid;
  border-color: #018401 #ca3402 #005b9c;
  border-radius: 50%;
  animation: rotate-loader 1.5s infinite linear;
}

.loader-logo img {
  height: 100px;
  width: 100px;
  display: flex;
  object-fit: contain;
  margin: 20px auto;
}

@keyframes rotate-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  padding: 0rem 0;
  background-color: white;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0rem 0;
}

.navbar-brand img {
  height: 70px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

.nav-link {
  position: relative;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin: 0 0.75rem;
}

.nav-link:hover {
  color: var(--domala-dark);
}

/* .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--domala-light);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
} */

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.active-nav-link {
  color: var(--domala-dark);
}

.active-nav-link::after {
  transform: scaleX(1);
}

/* Buttons */
.domala-btn {
  background-color: var(--domala-light);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.domala-btn:hover {
  background-color: var(--domala-dark);
  box-shadow: 0 4px 12px rgba(202, 52, 2, 0.3);
  color: white;
  transform: translateY(-2px);
}

.domala-btn:focus {
  outline: none;
}

.domala-btn-outline {
  background-color: transparent;
  color: var(--domala-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--domala-light);
  cursor: pointer;
}

.domala-btn-outline:hover {
  background-color: var(--domala-light);
  color: white !important;
  box-shadow: 0 4px 12px rgba(202, 52, 2, 0.3);
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 90vh;
  padding-top: 200px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section styling */
section {
  padding: 5rem 0;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  color: #0c62a0;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 80px;
  height: 3px;
  background-color: var(--domala-light);
}

.section-center .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-center {
  text-align: center;
}

.section-heading img {
  height: 60px;
}

.nature-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.left-icon {
  animation: waveLeft 3s ease-in-out infinite alternate;
}

.right-icon {
  animation: waveRight 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}

@keyframes waveLeft {
  0%,
  100% {
    transform: rotate(-5deg) translateX(0);
  }
  50% {
    transform: rotate(5deg) translateX(-5px);
  }
}

@keyframes waveRight {
  0%,
  100% {
    transform: rotate(5deg) translateX(0);
  }
  50% {
    transform: rotate(-5deg) translateX(5px);
  }
}

/* About Section */
.about-img-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.about-img-primary {
  width: 100%;
  border-radius: 0.5rem;
}

.about-img-secondary {
  position: absolute;
  width: 50%;
  bottom: -30px;
  left: -30px;
  border-radius: 0.5rem;
  border: 5px solid #ffffff; /* Retained white for contrast */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Moving domala Background */
.domala-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  /* opacity: 0.15; */
}

.domala-bg-img {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: cover;
  /* border-radius: 50%; */
  filter: sepia(30%) hue-rotate(0deg); /* Adjusted for new color scheme */
  animation: float 25s linear infinite;
}

.domala-bg-img:nth-child(1) {
  top: 3%;
  left: 2%;
  animation-delay: 0s;
  animation-duration: 30s;
}

.domala-bg-img:nth-child(2) {
  bottom: 4%;
  left: 4%;
  animation-delay: 1s;
  animation-duration: 35s;
}

.domala-bg-img:nth-child(3) {
  top: 10%;
  right: 2%;
  animation-delay: 2s;
  animation-duration: 40s;
}

.domala-bg-img:nth-child(4) {
  bottom: 4%;
  right: 4%;
  animation-delay: 3s;
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(10deg);
  }
  25% {
    transform: translate(10px, 10px) rotate(12deg);
  }
  50% {
    transform: translate(10px, 0) rotate(14deg);
  }
  75% {
    transform: translate(10px, -10px) rotate(15deg);
  }
  100% {
    transform: translate(0, 0) rotate(16deg);
  }
}

/* Ensure content stays above background */
#about > .container {
  position: relative;
  z-index: 1;
}

/* Counter Section */
.counter-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(rgba(1, 132, 1, 0.85), rgba(202, 52, 2, 0.9)),
    url("../images/bzx.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.counter-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.counter-text {
  color: #9cd6ff; /* Deep blue for contrast */
  font-weight: 500;
}

/* Why Choose Us Section */
.why-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(202, 52, 2, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--domala-light);
}

.why-choose-img-wrapper {
  position: relative;
}

.why-choose-img-wrapper img {
  width: 100%;
  height: 480px;
  margin-top: -32px;
  object-fit: cover;
}

.why-choose-img-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -15px;
  right: -15px;
  border: 2px solid var(--domala-light);
  border-radius: 12px;
  z-index: -1;
}

@media (max-width: 992px) {
  .why-choose-img-wrapper {
    margin-top: 3rem;
  }
}

/* Career Section */
.career-section {
  background: url("https://images.unsplash.com/photo-1649972904349-6e44c42644a7?auto=format&fit=crop&w=600&q=80")
    center center;
  background-size: cover;
  padding: 5rem 0;
  position: relative;
}

.career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.career-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.career-list {
  margin-bottom: 2rem;
}

.career-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.career-dot {
  width: 8px;
  height: 8px;
  background-color: var(--domala-light);
  border-radius: 50%;
  margin-right: 1rem;
}

/* Testimonial Section */
.testimonial-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("../images/nature.png"); */
  background-size: 30px 30px;
  background-position: 1px 1px;
  background-repeat: repeat;
  background: #0c62a0;
  /* opacity: 0.1; */
  z-index: 0;
}

#testimonials {
  position: relative;
  padding: 5rem 0;
  background-color: #f8f9fa;
}

#testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  color: var(--domala-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--domala-dark);
  margin: 0;
}

.testimonial-position {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Blog & Gallery */
.blog-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--domala-light);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-date {
  color: #777;
  font-size: 0.875rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 30px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(1, 132, 1, 0.8), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #1c1c1c;
  color: #ccc;
  padding: 4rem 0 0 0;
}

.footer-heading {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--domala-light);
}

.footer-link {
  color: #ccc;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  display: block;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--domala-light);
  margin-right: 1rem;
  font-size: 1.25rem;
  min-width: 20px;
}

.footer-social {
  display: flex;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--domala-light);
  transform: translateY(-5px);
  color: white;
}

.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-logo img {
  height: 45px;
}

/* Book Now Form Modal */
.modal-content {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.5rem;
}

.modal-title {
  color: var(--domala-dark);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 1.5rem;
}

.form-label {
  color: #555;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--domala-light);
  box-shadow: 0 0 0 0.25rem rgba(202, 52, 2, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .about-img-secondary {
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .about-img-secondary {
    width: 40%;
    bottom: -15px;
    right: -15px;
  }
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--domala-light);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background-color: rgba(1, 132, 1, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--domala-light);
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

:root {
  --t: 6.5s; /* Animation duration for one slide */
  --e1: cubic-bezier(0.8, 0, 0.1, 1);
  --e2: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --er: linear;
  --color: #ffffff00;
  --font: "Arial", sans-serif;
  --slides: 4; /* Number of slides */
}

.my-hero-section {
  display: flex;
  height: 75vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.my-hero-section__untitled {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.my-hero-section__shutters {
  position: absolute;
  height: 150vmax;
  width: 150vmax;
  left: calc(50% - 75vmax);
  top: calc(50% - 75vmax);
  pointer-events: none;
  z-index: 2;
  animation: rotateFrame calc(var(--t) * 1) var(--er) infinite;
}

@keyframes rotateFrame {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.my-hero-section__shutters::before,
.my-hero-section__shutters::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: white;
  pointer-events: auto;
}

.my-hero-section__shutters::before {
  bottom: 50%;
  animation: openTop calc(var(--t) * 1) infinite;
}

@keyframes openTop {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }
  30%,
  70% {
    transform: translate3d(-50%, -65vmax, 0);
  }
}

.my-hero-section__shutters::after {
  top: 50%;
  animation: openBottom calc(var(--t) * 1) infinite;
}

@keyframes openBottom {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }
  30%,
  70% {
    transform: translate3d(-50%, 65vmax, 0);
  }
}

.my-hero-section__slides {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

.my-hero-section__slide {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: showHideSlide calc(var(--t) * var(--slides)) infinite;
}

@keyframes showHideSlide {
  0% {
    opacity: 1;
    z-index: 1;
  }
  24% {
    opacity: 1;
    z-index: 1;
  }
  25% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

.my-hero-section__slide:nth-child(1) {
  animation-delay: calc(var(--t) * 0);
}
.my-hero-section__slide:nth-child(2) {
  animation-delay: calc(var(--t) * 1);
}
.my-hero-section__slide:nth-child(3) {
  animation-delay: calc(var(--t) * 2);
}
.my-hero-section__slide:nth-child(4) {
  animation-delay: calc(var(--t) * 3);
}

.my-hero-section__slideImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  min-height: 100vh;
  min-width: 100vw;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--color);
  background-blend-mode: hard-light;
  z-index: -1;
}

.my-hero-section__slideContent {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: var(--font);
  letter-spacing: -0.025em;
  z-index: 2;
  opacity: 1;
  text-shadow: 2px 2px 2.5em rgba(0, 0, 0, 0.5);
  background: #0000005c;
  padding: 20px;
  text-align: center;
}

.my-hero-section__slideContent span {
  display: block;
  font-size: 8vmin;
}

.my-hero-section__sub-header {
  font-size: 18px !important;
  padding-top: 20px;
}

.my-hero-section__button {
  font-family: var(--font);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2vmin;
  display: inline-block;
  position: relative;
  border: 3px solid white;
  box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
  background: transparent;
  margin-top: 5vmin;
  mix-blend-mode: hard-light;
  color: white;
  padding: 2vmin 2vmin 1.8vmin 2vmin;
  letter-spacing: 0.1em;
  text-shadow: none;
  line-height: 1;
  transform: translate3d(0.5vmin, -0.5vmin, 0);
  transition: all 100ms linear;
}

.my-hero-section__button:hover {
  transform: translate3d(1vmin, -1vmin, 0);
  box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
  background: black;
  color: white;
}

.my-hero-section__button:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.counter-icon {
  text-align: center;
  margin-bottom: 10px;
}
.counter-card i {
  font-size: 2rem !important;
  color: #038503; /* Adjust to match your design */
}

/* .rap-bg {
background: repeating-linear-gradient(
  45deg,
  #ca3402,
  #ca3402 20px,
  #018401 20px,
  #018401 40px,
  #005b9c 40px,
  #005b9c 60px
); */

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -6px;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.navbar-nav .nav-link {
  color: #005b9c;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ca3402;
}

.active-nav-link {
  color: #ca3402 !important;
  font-weight: bold;
}

.dropdown-menu {
  background-color: #f8f9fa;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0;
  min-width: 200px;
}

.dropdown-item {
  color: #005b9c;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #018401;
  color: white;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar-collapse {
  justify-content: center;
}

.modal-dialog {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.modal {
  --bs-modal-margin: 1.75rem;
  background: rgb(18 18 18 / 89%);
  --bs-modal-box-shadow: var(--bs-box-shadow);
}

.products-grid .product-card {
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  height: 325px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.products-grid .product-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.products-grid .content {
  padding: 20px;
}

.products-grid .content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #333;
}

.products-grid .content p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Ensure the section background and overlay work as intended */
.products-section {
  background-size: cover;
  background-position: center;
}

.overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* Adjust opacity as needed */
}

/* Root color variables */
:root {
  --domala-dark: #018401; /* Deep green */
  --domala-light: #ca3402; /* Vibrant red-orange */
  --domala-white: #005b9c; /* Deep blue */
}

/* Services Section (Modified to show content below images) */
.products-section {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent white overlay */
}

.product-container {
  position: relative;
}

.my-singl {
  text-align: center;
}

.section-heading {
  color: #005b9c; /* Deep green */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.products-grid .product-card:hover {
  transform: translateY(-5px); /* Subtle lift effect */
}

.products-grid .content {
  padding: 20px;
}

.products-grid .content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--domala-dark); /* Deep green */
}

.products-grid .content p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Sub-Services Section */
.sub-ser-sec {
  background: #f8f9fa; /* Light background for contrast */
  padding: 60px 0;
}

.sub-ser-sec-heading {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-ser-sec-heading h2 {
  color: #005b9c; /* Deep green */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.sub-ser-sec-heading p {
  max-width: 600px;
  color: #666;
  margin: 0 auto;
}

.sub-ser-sec-card {
  /* background: #fff; */
  border-radius: 10px;
  /* padding: 20px; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

/* .sub-ser-sec-card:hover {
  transform: translateY(-5px); 
} */

.sub-ser-sec-card img {
  height: 250px;
  width: 100%;
  border-radius: 7px;
  margin-bottom: 10px;
  /* border: 1px solid #ff0101; */
  object-fit: cover;
}

/* .sub-ser-sec-card:hover img {
  height: 150px;
  width: 100%;
  border-radius: 100px 100px 10px 10px;
  margin-bottom: 10px;
  object-fit: cover;
} */

.sub-ser-sec-title {
  font-size: 1.25rem;
  color: var(--domala-dark) !important; /* Deep green */
  text-decoration: none !important;
  margin-bottom: 10px;
  font-weight: 600;
}

.sub-ser-sec-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.sub-ser-sec a {
  text-decoration: none !important;
  color: var(--domala-dark) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .products-grid .product-card {
    margin-bottom: 30px;
  }

  .sub-ser-sec-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .section-heading,
  .sub-ser-sec-heading h2 {
    font-size: 2rem;
  }

  .sub-ser-sec-icon {
    font-size: 2rem;
  }

  .sub-ser-sec-title {
    font-size: 1.1rem;
  }

  .sub-ser-sec-desc {
    font-size: 0.85rem;
  }
}

a {
  text-decoration: none !important;
  color: black;
}

.hm-ser-sec .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.4s ease; /* Enables smooth animation */
}

.hm-ser-sec .card:hover {
  transform: translateY(-10px); /* Moves card upward */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Adds a shadow on hover */
  border-color: #aaa; /* Optional subtle border color change */
}

.hm-ser-sec .card-img-top {
  height: 7%;
  width: 70px;
  padding: 0.5rem;
  /* border-radius: 50%; */
  object-fit: cover;
}
.hm-ser-sec .card-header h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}

.hm-ser-sec h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
}

.spl-pad {
  padding: 2.5rem 0rem 1rem 0rem;
}

.sub-services-slider {
  position: relative;
  padding: 0 25px;
  overflow: hidden;
}
.swiper-container {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
.sub-ser-sec-card {
  width: 100%;
  /* max-width: 300px; */
  /* padding: 20px; */
  box-sizing: border-box;
}
.sub-ser-sec .swiper-button-prev,
.sub-ser-sec .swiper-button-next {
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.sub-ser-sec .swiper-button-prev:after,
.sub-ser-sec .swiper-button-next:after {
  font-size: 20px;
}

.poster-slider .image-wrapper {
  width: 394px;
  height: 222px;
  overflow: hidden;
  display: inline-block;
}

.poster-slider .sub-services-slider {
  position: relative;
  padding: 0 25px;
  overflow: hidden;
}

.poster-slider .swiper-container {
  width: 100%;
  padding: 20px 0;
}

.poster-slider .swiper-slide {
  display: flex;
  justify-content: center;
}

.poster-slider .sub-ser-sec-card {
  width: 100%;
  /* max-width: 300px; */
  /* padding: 20px; */
  box-sizing: border-box;
}

.poster-slider .sub-ser-sec .swiper-button-prev,
.poster-slider .sub-ser-sec .swiper-button-next {
  color: #333;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.poster-slider .sub-ser-sec .swiper-button-prev:after,
.poster-slider .sub-ser-sec .swiper-button-next:after {
  font-size: 20px;
}

.poster-slider .zoom-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px !important;
  display: inline-block;
  width: 100%;
}

.poster-slider .zoom-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 394px;
  height: 222px;
  border-radius: 10px !important;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.poster-slider .zoom-img-wrap img {
  width: 394px;
  height: 222px;
  border-radius: 10px !important;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.poster-slider .zoom-img-wrap:hover::before {
  opacity: 0.4;
  border-radius: 8px !important;
  visibility: visible;
}

.poster-slider .zoom-img-wrap:hover img {
  transform: scale(1.01);
  border-radius: 10px !important;
}

:root {
  --domala-dark: #018401; /* Deep green */
  --domala-light: #ca3402; /* Vibrant red-orange */
  --domala-white: #005b9c; /* Deep blue */
}

.my-posters {
  padding: 40px 0;
  background-color: #ffffff;
}

.my-posters .my-posters-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 10px;
}

.my-posters .my-posters-swiper {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}

.my-posters .my-posters-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--domala-white);
}

.my-posters .my-posters-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  border-radius: 8px;
}

.my-posters .my-posters-prev,
.my-posters .my-posters-next {
  color: white !important;
  background-color: var(--domala-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.my-posters .my-posters-prev {
  left: -20px;
  right: auto;
}

.my-posters .my-posters-next {
  right: -20px;
  left: auto;
}

.my-posters .my-posters-prev:hover,
.my-posters .my-posters-next:hover {
  background-color: var(--domala-light);
  color: var(--domala-dark);
}

.my-posters .my-posters-prev::after,
.my-posters .my-posters-next::after {
  font-size: 20px;
}

.my-posters .my-posters-pagination {
  position: absolute;
  bottom: 0px !important;
}

.my-posters .my-posters-pagination .swiper-pagination-bullet {
  background-color: var(--domala-white);
  opacity: 0.5;
}

.my-posters .my-posters-pagination .swiper-pagination-bullet-active {
  background-color: var(--domala-light);
  opacity: 1;
}

@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;
  }

  .counter-card {
    padding: 5px 0;
    border-radius: 0.5rem;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
  }
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}

.my-breadcum {
  padding: 20px 0;

  background-size: cover;
  background-position: center;
  background-color: #005b9c;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solidrgb(226, 180, 13);
}

.my-breadcum-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  /* padding: 50px 0 0px; */
  position: relative;
}

.my-breadcum-container h1 {
  text-transform: uppercase;
}

.my-breadcum-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.my-breadcum-item {
  display: flex;
  align-items: center;
  color: rgb(245, 206, 63);
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.my-breadcum-item:not(:last-child)::after {
  content: "/";
  /* Indian-style arrow */
  margin: 0 5px;
  color: rgb(153 199 255);
  font-size: 18px;
}

.my-breadcum-link {
    color: rgb(153 199 255);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex
;
    align-items: center;
    font-size: 20px;
}

.my-breadcum-link:hover {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 8px rgba(216, 180, 254, 0.6);
}

.my-breadcum-active .my-breadcum-text {
  color: #fbbf24;
  /* Indian gold/yellow */
  font-weight: 600;
  display: flex;
  align-items: center;
}

.my-breadcum-icon {
  margin-right: 8px;
  font-size: 14px;
}

.breacum-img-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.my-breadcum-img {
  overflow: hidden;
  padding: 30px;
  gap: 0px;
}

.needle img {
  width: 100px; /* Adjust as needed */
  height: auto;
  display: block;
}

/* Left needle animation */
.needle-left {
  animation: slideInLeft 3s ease-in-out infinite alternate;
}

/* Right needle animation */
.needle-right {
  animation: slideInRight 3s ease-in-out infinite alternate;
}

/* Keyframes for left */
@keyframes slideInLeft {
  0% {
    transform: translateX(-30px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* Keyframes for right */
@keyframes slideInRight {
  0% {
    transform: translateX(30px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.my-mis-vis-val-section {
  padding: 80px 0;
  /* color: #333 !important; */
}

.my-mis-vis-val-section.dark-bg {
  background-color: var(--domala-dark);
  color: white;
}

.my-mis-vis-val-section .nav-tabs {
  border-bottom: none;
  gap: 10px;
  display: flex;
  justify-content: space-between;
}

.my-mis-vis-val-section .nav-link {
  border: none;
  border-radius: 0;
  padding: 15px 25px;
  font-weight: 600;
  color: #333;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.my-mis-vis-val-section .nav-link i {
  font-size: 20px;
}

.my-mis-vis-val-section .nav-link:hover {
  background-color: #e9ecef;
  border-radius: 8px 8px 0 0;
}

.my-mis-vis-val-section .nav-link.active {
  background-color: var(--domala-white);
  border-radius: 8px 8px 0 0;
  color: white;
}

.my-mis-vis-val-section .tab-content {
  background-color: #005b9c;
  border-radius: 0 0px 8px 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.my-mis-vis-val-section .tab-pane {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.my-mis-vis-val-section .image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-mis-vis-val-section .tab-image {
  max-width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease;
  opacity: 1;
}

.my-mis-vis-val-section .tab-image.hidden {
  opacity: 0;
  position: absolute;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
}
.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid rgba(69, 122, 185, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover .team-img {
  border-color: #005b9c;
}

.profile-name {
  color: #015708;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* Services Section */
.services-section {
  background-color: #f8f9fa;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 15px 20px;
  text-align: center;
}

.service-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-content a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-content a:hover {
  color: var(--primary-dark);
}

.services-view-inn .sidebar {
  position: sticky;
  top: 100px;
  /* height: calc(100vh - 40px); */
  overflow-y: auto;
  background-color: #dfeeff;
  padding: 20px;
  border-radius: 8px;
}

.services-view-inn .sidebar ul {
  list-style: none;
  padding: 0;
}

.services-view-inn .sidebar li {
  margin-bottom: 15px;
  position: relative;
  /* padding-right: 30px; */
}

.services-view-inn .sidebar li a {
  color: #005b9c;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.services-view-inn .sidebar li :hover {
  background-color: #005b9c;
  color: white !important;
}

.services-view-inn .sidebar li:hover::before {
  color: white !important;
}

.services-view-inn .sidebar li.active a {
  background-color: #005b9c;
  color: white;
}

.services-view-inn .sidebar li {
  position: relative; /* required for ::after positioning */
}

.services-view-inn .sidebar li::after {
  content: "\f061"; /* Unicode for fa-angle-right */
  font-family: "Font Awesome 5 Free"; /* or "Font Awesome 6 Free" based on version */
  font-weight: 900; /* solid icons use 900 */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-dark);
}

.services-view-inn .sidebar li.active::after {
  color: white;
}

.services-view-inn .owl-carousel .owl-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.services-view-inn .owl-nav .owl-prev,
.services-view-inn .owl-nav .owl-next {
  background-color: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.8;
}

.services-view-inn .owl-nav .owl-prev {
  left: 10px;
}

.services-view-inn .owl-nav .owl-next {
  right: 10px;
}

.services-view-inn .service-heading {
  color: var(--primary-dark);
  /* margin-top: 30px; */
  font-size: 2.5rem;
  font-weight: bold;
}

.services-view-inn .service-content {
  margin: 0px 0 10px;
  font-size: 1.1rem;
  color: #333;
  padding: 0;
  text-align: left;
}

.services-view-inn .image-row {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.services-view-inn .image-container {
  text-align: center;
  /* flex: 1; */
  /* margin: 0 15px; */
}

.services-view-inn .image-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.services-view-inn .image-heading {
  color: var(--primary-dark);
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.services-view-inn .image-content {
  color: #333;
  margin: 10px 0;
  font-size: 0.9rem;
}

.services-view-inn .main-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 20px 0;
}

.services-view-inn .main-content ul {
  list-style: none;
  padding-left: 0px;
}

.services-view-inn .main-content ul li {
  margin-bottom: 10px;
  position: relative;
  color: #000000;
  padding-left: 20px;
  font-size: 1rem;
}

.services-view-inn .main-content ul li::before {
  content: "\2713";
  font-family: "Font Awesome 5 Free"; /* or "Font Awesome 6 Free" based on version */
  font-weight: 900; /* solid icons use 900 */
  position: absolute;
  left: 0px;
  /* top: 50%;
  transform: translateY(-50%); */
  color: #005b9c;
}
.services-view-inn .sidebar li:hover::after {
  color: white;
}

.services-view-inn .owl-carousel .owl-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.services-view-inn .sidebar li.active a {
  background-color: #005b9c;
  color: white;
}

.serv-reg-form {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  max-width: 1280px;
  margin: 1rem auto;
  position: relative;
  overflow: hidden;

  border: 2px solid var(--domala-dark);
}

/* .serv-reg-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--domala-dark),
    var(--domala-light)
  );
} */

.serv-reg-form h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--domala-white);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.025em;
}

.serv-reg-form h2 i {
  color: var(--domala-light);
  margin-right: 0.5rem;
}

.serv-reg-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.serv-reg-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--domala-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.serv-reg-form label i {
  color: var(--domala-dark);
  font-size: 1rem;
}

.serv-reg-form input,
.serv-reg-form select {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1f2937;
  background-color: #f9fafb;
  transition: all 0.3s ease;
}

.serv-reg-form input:focus,
.serv-reg-form select:focus {
  outline: none;
  border-color: var(--domala-light);
  box-shadow: 0 0 0 4px rgba(202, 52, 2, 0.1);
  background-color: #ffffff;
}

.serv-reg-form select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23005b9c" d="M0 0h12L6 6z"/></svg>')
    no-repeat right 0.75rem center;
  background-size: 12px;
}

.serv-reg-form .form-group i {
  position: absolute;
  left: 0.75rem;
  top: 2.75rem;
  color: var(--domala-dark);
  font-size: 1rem;
  pointer-events: none;
}

.serv-reg-form .serv-reg-form-radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.serv-reg-form input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: var(--domala-light);
}

.serv-reg-form .serv-reg-form-radio-group label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1f2937;
}

/* Enhanced Custom File Input */
.serv-reg-form .file-upload-wrapper {
  position: relative;
  margin-bottom: 1rem;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 1.5rem;
  background-color: #f9fafb;
  text-align: center;
  transition: all 0.3s ease;
}

.serv-reg-form .file-upload-wrapper.dragover {
  border-color: var(--domala-light);
  background-color: rgba(202, 52, 2, 0.05);
}

.serv-reg-form .file-upload-wrapper input[type="file"] {
  display: none;
}

.serv-reg-form .file-upload-wrapper .file-upload-label {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--domala-dark);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.serv-reg-form .file-upload-wrapper .file-upload-label:hover {
  background-color: #016401;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 132, 1, 0.3);
}

.serv-reg-form .file-upload-wrapper .file-upload-label i {
  margin-right: 0.5rem;
}

.serv-reg-form .file-upload-wrapper .file-name {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.5rem;
  word-break: break-all;
}

.serv-reg-form .file-upload-wrapper .file-icon {
  font-size: 2rem;
  color: var(--domala-dark);
  margin-bottom: 0.5rem;
}

.serv-reg-form small {
  font-size: 0.75rem;
  color: #4b5563;
  display: block;
  margin-top: 0.25rem;
}

.serv-reg-form .serv-reg-form-btn {
  background: linear-gradient(to right, var(--domala-light), #a12b02);
  color: #ffffff;
  border: none;
  padding:0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.serv-reg-form .serv-reg-form-btn:hover {
  background: linear-gradient(to right, #a12b02, #8b2402);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(202, 52, 2, 0.3);
}

.serv-reg-form .serv-reg-form-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .serv-reg-form {
    padding: 1.5rem;
  }

  .serv-reg-form h2 {
    font-size: 1.75rem;
  }

  .serv-reg-form .form-group i {
    top: 2.5rem;
  }

  .serv-reg-form .file-upload-wrapper {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .serv-reg-form {
    margin: 1rem;
    padding: 1rem;
  }

  .serv-reg-form h2 {
    font-size: 1.5rem;
  }

  .serv-reg-form .file-upload-wrapper {
    padding: 0.75rem;
  }
}

.file-upload-wrapper i {
  position: absolute;
  left: 4.75rem  !important;
  top: 4.75rem !important;
  color: var(--domala-dark);
  font-size: 1rem;
  pointer-events: none;
}






















.tp-contact-form__subtitle {
  color: #457ab9;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-form__left-box {
    padding-bottom: 50px;
  }
}
.tp-contact-form__left-box p {
  margin-bottom: 0;
  padding-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-form__left-box p {
    font-size: 14px;
  }
  .tp-contact-form__left-box p br {
    display: none;
  }
}
.tp-contact-form__social-box a {
  font-size: 17px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  width: 40px;
  color: #457ab9;
  border-radius: 50%;
  border: 1px solid #457ab9;
  display: inline-block;
  transition: all 500ms ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-contact-form__social-box a:not(:last-child) {
  margin-right: 10px;
}
.tp-contact-form__social-box a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.tp-contact-form__social-box a:hover {
  color: #17447a;
  border: 1px solid transparent;
}
.tp-contact-form__social-box a:hover::after {
  opacity: 1;
  transform: scaleY(1);
}
.tp-contact-form__form-box {
  background-color: yellowgreen;
  padding: 60px 50px;
}
@media (max-width: 767px) {
  .tp-contact-form__form-box {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-form__form-box {
    padding: 50px 25px;
  }
}
.tp-contact-form__input-box input {
  color: var(--tp-common-black);
  border: 1px solid transparent;
  transition: 0.3s;
}
.tp-contact-form__input-box input:focus {
  border: 1px solid var(--tp-common-orange);
}
.tp-contact-form__textarea-box textarea {
  height: 150px;
  resize: none;
  border: none;
  padding: 30px;
  padding-top: 25px;
  font-size: 14px;
  width: 100%;
  color: blue;
  transition: 0.3s;
  border: 1px solid transparent;
}
.tp-contact-form__textarea-box textarea:focus {
  border: 1px solid pink;
}
.tp-contact-form__button {
  line-height: 0;
}

.tp-contact__bg {
  background-color: #154d8e;
  padding: 50px 55px;
  color: white !important;
  padding-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__bg {
    padding: 50px 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact__bg {
    padding: 50px 25px;
    padding-bottom: 20px;
  }
}
.tp-contact__item {
  margin-bottom: 30px;
}
.tp-contact__item:hover .tp-contact__icon span {
  background-color: var(--tp-common-orange);
  color: var(--tp-common-white);
}
.tp-contact__icon span {
  margin-right: 25px;
  font-size: 40px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 91px;
  text-align: center;
  display: inline-block;
  background-color: rgba(16, 11, 11, 0);
  color: rgb(190, 14, 14);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__icon span {
    font-size: 34px;
    height: 70px;
    width: 70px;
    line-height: 81px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .tp-contact__icon span {
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 55px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact__icon span {
    font-size: 30px;
    height: 70px;
    width: 70px;
    line-height: 81px;
    margin-right: 30px;
  }
}
.tp-contact__text a {
  color: var(--tp-common-white);
  display: block;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact__text a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact__text a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-contact__text a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact__text a {
    font-size: 15px;
  }
}
.tp-contact__text a:last-child {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact__wrapper {
    flex-wrap: wrap;
  }
}

.tp-location__info-box {
  line-height: 0;
}
.tp-location__info-box iframe {
  width: 100%;
}

.tp-contact-form__form-box {
  background-color: #457ab9;
  padding: 60px 50px;
}


  .tp-contact-form__area input[type=text], .tp-contact-form__area   input[type=email], .tp-contact-form__area   input[type=tel],  .tp-contact-form__area  input[type=number],  .tp-contact-form__area  input[type=password],  .tp-contact-form__area  input[type=url] {
  outline: none;
  background-color: #fff;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 30px;
  padding-right: 30px;
  border: 0;
}

.mb-30 {
  margin-bottom: 30px;
}



.tp-contact__icon img {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.tp-contact__icon img:hover  {
  filter: grayscale(100%) brightness(0%);
}



.tp-contact__icon span {
  margin-right: 7px;
  font-size: 40px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 91px;
  text-align: center;
  display: inline-block;
  background-color: #457ab9;
  color: rgb(190, 14, 14);
  transition: 0.3s;
}



.tp-contact__item:hover .tp-contact__icon span {
  background-color: rgb(255, 255, 255);
  color: var(--tp-common-white);
}

.tp-contact__item:hover  span  img{
  filter: grayscale(100%) brightness(0%);
  
}




.btn-common-sumbit:hover {
    background-color: #457ab9;
    border: 1px solid #457ab9;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.btn-common-sumbit {
    background-color: white;
    border: 1px solid white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}



.tp-location__info-box iframe{
  height: 400px;
}