@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: "Roboto", sans-serif !important;
}

:root {
  --primary-bg: #f14d5d;
  --secondary-bg: #1d5092;
}

/* Text Selection Styles */
::selection {
  background-color: var(--primary-bg);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-bg);
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h2 {
  color: var(--secondary-bg) !important;
}

.tag {
    color: var(--primary-bg, #f14d5d) !important;
    border-left: 2px solid var(--primary-bg, #f14d5d);
}

/* Breadcrumb */
.breadcrumb-section {
  background: url("./Img/breadcrumb.jpg") no-repeat center center;
  background-size: cover;
  padding: 30px 0;
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

/* Header Section */
#header {
  background-color: var(--secondary-bg) !important;
  padding: 0 !important;
}

#header #free-btn {
  background-color: white !important;
  padding: 8px;
  color: var(--secondary-bg);
  font-weight: bold;
  border-bottom: 1px solid var(--secondary-bg);
  text-wrap: nowrap;
}

.navbar-nav a:hover {
  color: var(--secondary-bg) !important;
}

.logo {
  text-shadow: 2px 2px 4px rgba(49, 45, 45, 0.5);
}

/* Hero Banner Styling */
.hero-banner {
  width: 100%;
  height: auto;
  background: url("./image/banner-vaibhav.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero & Carousel Section */
/* Carousel */
.hero-carousel {
  position: relative;
  height: 80vh;
}

.hero-slider .item {
  height: 80vh;
}

.hero-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom navigation styles */
.hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  color: #000 !important;
  font-size: 20px !important;
}

.hero-slider .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

.hero-slider .owl-prev {
  left: 20px;
}

.hero-slider .owl-next {
  right: 20px;
}

/* Custom dots styles */
.hero-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.5) !important;
}

.hero-slider .owl-dot.active span {
  background: #fff !important;
}

.hero-carousel .item {
  position: relative;
}

.carousel-content {
  position: absolute;
  top: 20%;
  left: 10%;
  /* transform: translate(-50%, -50%); */
  text-align: start;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}

.banner-content {
    flex: 2;
}

.banner-image {
    flex: 1;
}

.banner-content h1 {
  /* font-size: 3.5rem; */
  text-wrap: nowrap;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.5rem;
  /*color: var(--secondary-bg);*/
  color: white !important;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-btn1 {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-bg);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.carousel-btn1:hover {
  transform: scale(1.05);
}

.carousel-btn2 {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-bg);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.carousel-btn2:hover {
  transform: scale(1.05);
}

/* Add a dark overlay to make text more readable */
.hero-carousel .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* About Section */
.about-card {
  padding: 20px;
  color: white;
  border-radius: 10px;
}

.about-card1 {
  background-color: var(--secondary-bg);
}
.about-card2 {
  background-color: var(--primary-bg);
}

.img-shadow {
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.3)) !important;
}

/* Service Section */
.service-card {
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--secondary-bg);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-card .service-link {
  position: relative;
  display: inline-block;
}

/* CTA Section */
.cta-section {
  background-image: url("./image/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 120, 172, 0.6); /* skyblue with 60% opacity */
}

.cta-section p,
a {
  z-index: 999;
}

/* Testimonial Section */
.testimonial-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--primary-bg);
  margin: 15px;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  line-height: 1.6;
}

/* Custom navigation for testimonials */
.testimonial-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-bg) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 20px !important;
}

.testimonial-carousel .owl-nav button:hover {
  background: var(--secondary-bg) !important;
}

.testimonial-carousel .owl-prev {
  left: -50px;
}

.testimonial-carousel .owl-next {
  right: -50px;
}

.testimonial-carousel .owl-dots {
  margin-top: 20px;
}

.testimonial-carousel .owl-dot span {
  background: #ddd !important;
}

.testimonial-carousel .owl-dot.active span {
  background: var(--primary-bg) !important;
}

/* Why Choose Us Section Styles */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-section .subtitle {
  /* letter-spacing: 2px; */
  text-transform: uppercase;
}

.choose-card {
  transition: all 0.3ms ease-in;
  border: 2px solid var(--secondary-bg);
}

.choose-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.choose-card .icon-wrapper {
  width: 80px;
  height: 80px;
  /* background: rgba(var(--primary-bg-rgb), 0.1); */
  background: var(--secondary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.choose-card .icon-wrapper i {
  color: white !important;
}

.choose-card h3 {
  position: relative;
  padding-bottom: 15px;
  color: var(--secondary-bg);
  font-weight: bold;
}

.choose-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-bg);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

@media (max-width: 768px) {
  .why-choose-section .section-header h2 {
    font-size: 2rem;
  }

  .choose-card {
    text-align: center;
  }

  .choose-card h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Stats Section */
#stats-section {
  background-image: url("/image/statistic.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gallery Section */
.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content {
  transform: translateY(0);
}

/* Banner Section */
.banner-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./image/banner.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-section h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-section p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Experience Section Styling */
.experience-section {
  position: relative;
  overflow: hidden;
}

.section-header .subtitle {
  letter-spacing: 2px;
  font-size: 1rem;
}

.header-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-bg);
  margin: 20px auto 0;
}

.experience-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(var(--primary-bg-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-stats .stat-item {
  background: #fff;
  transition: all 0.3s ease;
}

.expertise-stats .stat-item:hover {
  background: var(--primary-bg);
  color: white;
}

.expertise-stats .stat-item:hover h4 {
  color: white !important;
}

.list-unstyled li {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.list-unstyled li:hover {
  padding-left: 10px;
  color: var(--primary-bg);
}

.card-section {
  margin-top: -150px;
}

.vertical-line {
  width: 2px;
  height: 50px;
  background-color: white;
  margin: 10px 0;
}

.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.feature-card {
  background-color: var(--primary-bg);
  padding: 30px;
  height: 250px;
  /* border-radius: 5px; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.feature-card:hover {
  /* background-color: var(--hover-color); */
  transform: translateY(-5px);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover i {
  color: #fff;
}

.feature-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card i {
  color: var(--hover-bg);
  font-size: 28px;
  transition: color 0.3s ease;
}

.card2 {
  background-color: var(--secondary-bg);
  color: white;
}

/* Our Approach Section */
.approach-images {
  height: 100%;
}

.approach-images img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.approach-points i {
  transition: transform 0.3s ease;
}

.approach-points div:hover i {
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .approach-small-images {
    display: none;
  }
}

/* About Page */

/* Breadcrumb Section */
.breadcrumb-section {
  background: url("./image/breadcrumb-bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.breadcrumb-section .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

/* Accordion Section */
.accordion-button {
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-bg);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--secondary-bg);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

.accordion-body li {
  position: relative;
  padding-left: 20px;
}

.accordion-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-bg);
}

/* Gallery page */
.skeleton-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 0.375rem;
}

.gallery-img {
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
}

/* Contact Page */
.contact-form {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-bg);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  flex-shrink: 0 !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-bg-rgb), 0.1);
  border-radius: 50%;
}

.map-container {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Service Detail Styles */
.service-content h3 {
  color: var(--primary-bg);
  margin-bottom: 1.5rem;
}

.feature-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(var(--primary-bg-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-timeline {
  position: relative;
  padding: 20px 10px;
}

.timeline-item {
  position: relative;
  padding: 20px 0 20px 50px;
  border-left: 2px solid var(--primary-bg);
}

.timeline-number {
  position: absolute;
  left: -20px;
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-list li a {
  display: block;
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-list li a:hover {
  color: var(--primary-bg);
  padding-left: 10px;
}

.widget {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.widget-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.contact-widget a {
  text-decoration: none;
}

.contact-widget .btn:hover {
  background: var(--secondary-bg);
  color: white;
}

/* Appointment Modal Styles */
.modal-content {
  border: none;
  border-radius: 10px;
}

.modal-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #dc3545 !important;
}

.modal-body {
  padding: 2rem;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-control,
.form-select {
  border-radius: 5px;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-bg);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-bg-rgb), 0.25);
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.btn-primary:hover {
  background-color: var(--secondary-bg);
  border-color: var(--secondary-bg);
}

/* Footer Styling */
.footer-section {
  background-color: #f8f9fa;
  position: relative;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-links li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-bg);
  padding-left: 5px;
}

.footer-section .contact-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-bg);
  border-radius: 50%;
  flex-shrink: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section .contact-icon i {
  color: white !important;
  font-size: 16px;
}

.contact-info p,
.contact-info a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-bg);
}

.footer-section .social-links {
  display: flex;
  gap: 15px;
}

.footer-section .social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section .social-icon:hover {
  background: var(--secondary-bg);
  color: white;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  color: #666;
}

.footer-bottom a:hover {
  color: var(--secondary-bg) !important;
}
/* Float Icon */
        /*#go-to-top {*/
        /*    position: fixed !important;*/
        /*    bottom: 20px;*/
        /*    right: 20px;*/
        /*    z-index: 999;*/
        /*    transition: all 0.4s ease-out;*/
        /*}*/
        
        /*#go-to-top:hover {*/
        /*    transform: translateY(-5px);*/
        /*}*/
        
        /*#phone {*/
        /*    width: 50px;*/
        /*    position: fixed !important;*/
        /*    top: 50%;*/
        /*    right: -0px;*/
        /*    z-index: 999;*/
        /*    transition: all 0.4s ease-out;*/
        /*}*/
        
        /*#phone:hover {*/
        /*    width: 100px;*/
        /*}*/
        
        /*#whatsapps {*/
        /*    position: fixed !important;*/
        /*    bottom: 6%;*/
        /*    left: 20px;*/
        /*    z-index: 999;*/
        /*    transition: all 0.4s ease-out;*/
        /*}*/
        
        /*#whatsapps:hover {*/
        /*    transform: rotate(45deg);*/
        /*}*/


        /*#go-to-top {*/
        /*    display: none;*/
        /*}*/
