@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
}

h1 {
    color: #03045E;
}

h2 {
    color: #03045E !important;
}

p {
  font-size: 1rem
}

/* Hero Section */
 #hero-section {
  background-image: url("/images/hero-banner.png");
  background-position: center;
  background-size: cover;
} 

#hero-section h1 {
    color: #03045E;
}

#header {
    background-color: #01B5DA;
}

#header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#offcanvasNavbar {
    width: 80% !important;
}

.hero-img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid #0d6efd;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: white;
  transform: translateY(-2px);
}

.icon {
  color: #0d6efd;
}

/* Breadcrumb */
.breadcrumb-section {
  background: url("/images/cta-banner.png") no-repeat center center;
  background-size: cover;
  position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white !important;
}

.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;
}


/* Cta Section */
#cta-section {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/images/radiology.jpg");
  background-size: cover;
  background-position: center;
}

/* Gallery Section */
#gallery-img {
  border-radius: 10px;
  overflow: hidden;
  /* height: 300px; */
  transition: all 0.5s ease;
}

#gallery-img:hover {
  transform: scale(1.05);
}

#gallery-img img {
  border-radius: 10px;
  object-fit: contain;
}

/* Footer */
/* Footer Styles */
.footer-section {
  background-color: #1a1a1a;
  position: relative;
}

.footer-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--bs-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #a8a8a8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--bs-primary);
  transform: translateX(5px);
}

.footer-contact li i {
  color: var(--bs-primary);
  font-size: 1.2rem;
}

.social-stat {
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-stat:hover {
  background: rgba(255, 255, 255, 0.05);
}

.social-stat i {
  font-size: 2rem;
}

/* Service Section */
.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-content {
  background: white;
}

.service-content ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #6c757d;
}

.service-content ul li i {
  font-size: 0.8rem;
}

.faq-section {
    background-image: url('/images/ultrasound-faq.jpg');
    background-position: center;
    background-size: cover;
}

/* Testimonials */

/* Contact Section */
#contact-section {
  background-image: url("/images/why-choose-us.jpg");
  background-size: cover;
  background-position: center;
}

/* testimonials */

@media (max-width: 991.98px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-img {
    width: 300px;
    height: 300px;
  }

  .footer-content {
    text-align: start;
    padding: 0 20px;
  }

  .social-links {
    justify-content: start;
  }

  .footer-links,
  .footer-contact {
    text-align: start;
  }

  .footer-contact li {
    justify-content: start;
  }

  .social-stat {
    justify-content: start;
  }
}


/* Float Icon */
        #go-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            transition: all 0.4s ease-out;
        }
        
        #go-to-top:hover {
            transform: translateY(-5px);
        }
        
        #call {
            width: 50px;
            position: fixed;
            top: 50%;
            right: -0px;
            z-index: 999;
            transition: all 0.4s ease-out;
        }
        
        #call:hover {
            width: 100px;
        }
        
        #whatsapp {
            position: fixed;
            bottom: 6%;
            left: 20px;
            z-index: 999;
            transition: all 0.4s ease-out;
        }
        
        #whatsapp:hover {
            transform: rotate(45deg);
        }
        
        #appointment-btn {
            position: fixed; 
            top: 50%; 
            left: 10px;
            z-index: 1050; 
            border-radius: 0 0 6px 6px; 
            padding: 10px 20px; 
            white-space: nowrap;
        }
        
       
        
        /*#appointment {*/
        /*    position: fixed;*/
        /*    top: 50%;*/
        /*    right: 10%;*/
        /*    z-index: 999;*/
        /*}*/

        /*.float-button .btn i {*/
        /*    font-size: 20px;*/
        /*}*/

        /*.float-button .btn:hover {*/
        /*    transform: scale(1.1);*/
        /*}*/

        #go-to-top {
            display: none;
        }

        
        
/* process section */
/*.process-badge {*/
/*  background-color: var(--hover-color, #8d6e63);*/
/*  color: #ffffff;*/
/*  padding: 8px 20px;*/
/*  border-radius: 30px;*/
/*  font-weight: 600;*/
/*  font-size: 0.9rem;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 1px;*/
/*}*/

.badge {
    background-color: #01B5DA;
}

.process-subtitle {
  max-width: 600px;
  margin: 0 auto !important;
  font-size: 1.1rem;
  color: var(--primary-bg);
}

.process-card {
  background:  #ffffff;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 128, 0, 0.1);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #6794d7;
}

.process-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: #6794d7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: #0b5ed7;
  color: white;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #0b5ed7;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.process-card h3 {
  color: #0b5ed7;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-card {
    padding: 1.5rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-card h3 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
  
    #appointment-btn {
            left: -35%; 
          
    }
    
    #header-wrapper {
    justify-content: center;
    }
}




















