/*******************************/
/********* General CSS *********/
/*******************************/
:root {
  --primary-color: #1d2434;       /* Dark navy for headings */
  --secondary-color: #D5B981;     /* Gold for accents */
  --text-color: #4a4a4a;          /* Dark gray for body text */
  --light-bg: #f8f9fa;            /* Light background */
  --dark-bg: #1d2434;             /* Dark background */
  --accent-bg: #3666d7;           /* Blue for buttons */
  --border-radius: 8px;           /* Consistent rounded corners */
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadows */
  --transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  transition: var(--transition);
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  outline: none;
}

.btn:focus,
.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

.container-fluid {
  z-index: 9999;
  max-width: 1366px;
  padding: 0 30px;
}

.back-to-top {
  position: fixed;
  display: none;
  background: var(--secondary-color);
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  transition: var(--transition);
  z-index: 9;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.back-to-top:hover i {
  color: var(--secondary-color);
}

.back-to-top i {
  color: var(--primary-color);
  padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  background: var(--primary-color);
  padding: 0 20px; /* Optional spacing on left/right */
}


.top-bar .top-bar-left,
.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.top-bar .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
  padding: 0 15px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .text h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
}

.top-bar .text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.top-bar .social {
  display: flex;
  height: 100%;
}

.appointment {
  background-color: var(--accent-bg);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  margin-left: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-bg);
}

.appointment:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.top-bar .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  font-size: 18px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.top-bar .social a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .social a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
  position: relative;
  transition: var(--transition);
  z-index: 999;
}

.navbar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--primary-color) !important;
}

.navbar .navbar-brand {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar .navbar-brand span {
  color: var(--secondary-color);
}

.navbar .navbar-brand img {
  max-width: 100%;
  max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 10px 15px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.navbar .dropdown-menu {
  margin-top: 0;
  border: none;
  border-radius: var(--border-radius);
  background: #ffffff;
  box-shadow: var(--box-shadow);
}

.navbar .dropdown-item {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  color: var(--secondary-color);
  background: rgba(213, 185, 129, 0.1);
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    width: 100%;
    top: 60px;
    padding: 15px 60px;
    background: transparent !important;
  }
  
  .navbar.nav-sticky {
    padding: 10px 60px;
  }
  
  .navbar a.nav-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {   
  .navbar {
    padding: 10px;
    background: var(--primary-color) !important;
  }
  
  .navbar .navbar-collapse {
    padding: 15px 0;
  }
  
  .navbar .dropdown-menu {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}



/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(29, 36, 52, 0.8), rgba(29, 36, 52, 0)), url('../img/bgimg.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .hero {
    background-position: left center;
  }
}


.hero .container-fluid {
  padding: 0;
}

.hero .hero-text {
  position: relative;
  padding: 60px;
  max-width: 800px;
  background: rgba(29, 36, 52, 0.514);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  animation: fadeInUp 1s ease-out;
}

.hero .hero-text h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero .hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero .hero-text .btn {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  transition: var(--transition);
  text-transform: uppercase;
}

.hero .hero-text .btn:hover {
  color: var(--secondary-color);
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}




@media (max-width: 991.98px) {
  .hero .hero-text {
    padding: 40px;
    margin-top: 60px;
  }
  
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero .hero-text {
    margin-top: 30px;
    padding: 30px;
  }
  
  .hero .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero .hero-text .btn {
    padding: 12px 25px;
  }
  
  .hero .btn-play {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}




/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: #1d2434;
}

.page-header h2 {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #D5B981;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #1d2434;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header p {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 16px;
  }
}





/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
    /*background-color: #1d2434e5;*/
}

.about .about-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: #1d2434;
    z-index: 0;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 2;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #D5B981;
    background: #1d2434;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
}

.service .service-img {
    position: relative;
    width: 100%;
}

.service .service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 25px;
    font-weight: 700;
}

.service .service-item p {
    margin: 0;
    padding: 0 25px 25px 25px;
    font-size: 16px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1d2434;
    border: 2px solid #1d2434;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #D5B981;
    background: #1d2434;
    border-color: #1d2434;
}


/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .price-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
    transition: .3s;
}

.price .price-item:hover {
    background: #D5B981;
}

.price .price-img {
    position: relative;
    width: 100px;
}

.price .price-img img {
    width: 100%;
}

.price .price-img::after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.price .price-text {
    position: relative;
    padding: 0 15px;
    width: calc(100% - 100px);
    overflow: hidden;
}

.price .price-text h2 {
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.price .price-text h3 {
    position: relative;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #F6F6F7;
    transition: .3s;
    z-index: 1;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    margin: -60px 15px 0 15px;
    padding: 30px 15px;
    text-align: center;
    background: #F6F6F7;
    transition: .3s;
    z-index: 2;
}

.team .team-text h2 {
    font-size: 16px;
    font-weight: 600;
}

.team .team-text p {
    margin: 0;
    color: #333333;
}

.team .team-item:hover .team-text {
    background: #D5B981;
}

.team .team-item:hover .team-img::after {
    border-color: #D5B981;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 120px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/testimonial-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 700px;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 25px;
}

.testimonial .testimonial-item p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial .testimonial-item h2 {
    color: #D5B981;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.testimonial .owl-nav {
    width: 135px;
    margin-top: 45px;
    display: flex;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D5B981;
    background: #1d2434;
    font-size: 22px;
    transition: .3s;
}

.testimonial .owl-nav .owl-next {
    margin-left: 15px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #1d2434;
    background: #D5B981;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: rgba(29, 36, 52, .04);
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 1px solid #ffffff;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-meta {
    position: relative;
    padding: 20px 30px 12px 30px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
    padding: 0 30px 30px 30px;
}

.blog .blog-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d2434;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-item a.btn:hover {
    color: #D5B981;
}

.blog .owl-nav {
    width: 150px;
    margin: 32px auto 0 auto;
    display: flex;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    margin-left: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D5B981;
    background: #1d2434;
    font-size: 22px;
    transition: .3s;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #1d2434;
    background: #D5B981;
}

.blog .pagination .page-link {
    color: #1d2434;
    border-radius: 0;
    border-color: #1d2434;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #D5B981;
    background: #1d2434;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #1d2434;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    background: none;
    border: 2px solid #1d2434;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #1d2434;
    color: #D5B981;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio .portfolio-wrap a::after {
    position: absolute;
    content: "";
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: transparent;
    border: 1px solid #F6F6F7;
    transition: .3s;
    z-index: 1;
}

.portfolio .portfolio-wrap:hover a::after {
    border-color: #D5B981;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
/* Style for the contact us container */
/* Style for the contact us container */
.contact-us-container {
    width: 100%;
    max-width: 900px; /* Maximum width to keep it looking professional */
    margin: 40px auto; /* Center the container and add vertical space */
    padding: 30px;
    background-color: #ffffff; /* Clean white background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
    text-align: center;
}

/* Heading styling */
.contact-us-container h2 {
    font-size: 36px; /* Larger heading font */
    color: #2c3e50; /* Darker text color for the heading */
    font-weight: 700; /* Bold heading */
    margin-bottom: 20px; /* Spacing below the heading */
    text-transform: uppercase; /* Uppercase for a more professional look */
}

/* Paragraph text styling */
.contact-description {
    font-size: 18px;
    color: #7f8c8d; /* Subtle grey text for the description */
    margin-bottom: 30px; /* Add space between description and social links */
    line-height: 1.6; /* Improved line spacing for readability */
}

/* Style for the social media links */
.social-links {
    margin-bottom: 30px; /* Add space below the social links */
}

.social-link {
    display: inline-block;
    margin: 0 15px; /* Horizontal spacing between social media links */
    font-size: 18px; /* Bigger font for social media text */
    color: #2c3e50; /* Dark color for text */
    text-decoration: none;
    font-weight: 600; /* Slightly bold for a modern feel */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #3498db; /* Change to blue on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.social-link i {
    margin-right: 8px; /* Space between the icon and text */
}

/* Style for the email info section */
.email-info {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px; /* Space between social links and email */
}

/* Style for email link */
.email-info a {
    font-weight: 600;
    color: #3498db; /* Blue color for email link */
    text-decoration: none;
}

.email-info a:hover {
    text-decoration: underline; /* Underline effect when hovered */
}

.email-info i {
    margin-right: 8px; /* Space between the envelope icon and the email text */
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #1d2434;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #999999;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #D5B981;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #D5B981;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #D5B981;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1d2434;
    background: none;
    border-radius: 0;
    border: 2px solid #1d2434;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #D5B981;
    background: #1d2434;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin: 0;
    color: #454545;
}

.footer .copyright .col-md-6:last-child p {
    text-align: center;
}

.footer .copyright p a {
    color: #1d2434;
    font-weight: 700;
}

.footer .copyright p a:hover {
    color: #D5B981;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


@media screen and (max-width: 767px) {
    .navbar.nav-sticky {
        z-index: 10;
    }
    .hero .hero-text h1 {
        z-index: 1;
    }
    .navbar .navbar-brand {
        margin-bottom: 13px;
    }
    .hero .hero-text {
        margin-top: 0px;
        top: 0%;
    }

    a.nav-item.nav-link.appointment{
        width: 130px;
        margin-left: 0px;
    }
}

/* Style for the Add a Review button */
.addreview {
    margin-top: 30px;
    background-color: #B7791F; /* Green background */
    color: white;              /* White text */
    font-size: 16px;           /* Font size */
    padding: 12px 18px;        /* Padding inside the button */
    border: none;              /* Removes the default border */
    border-radius: 8px;        /* Rounded corners */
    cursor: pointer;          /* Shows a pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Hover effect for the button */
.addreview:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05);     /* Slight zoom effect */
}

/* Focus effect for accessibility */
.addreview:focus {
    outline: none;             /* Removes default outline */
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.5); /* Adds a green shadow around the button when focused */
}

/* Style for the map container */
.map-container {
    width: 100%; /* Full width of the parent container */
    max-width: 900px; /* Max width of the map container */
    margin: 20px auto; /* Centers the map horizontally and adds vertical space */
    text-align: center; /* Centers the heading */
    padding: 10px; /* Adds some padding inside the container */
    background-color: #f9f9f9; /* Light background color */
    border-radius: 10px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Style for the heading */
.map-container h1 {
    font-size: 24px; /* Larger font size for the heading */
    color: #333; /* Dark text color */
    margin-bottom: 15px; /* Space between the heading and the map */
    font-family: 'Arial', sans-serif; /* A clean sans-serif font */
}

/* Style for the iframe to make it responsive */
.map-container iframe {
    width: 100%; /* Ensures iframe takes full width of the container */
    height: 400px; /* Fixed height for the map */
    border: none; /* Removes the border */
    border-radius: 8px; /* Rounded corners for the iframe */
}