/* header start  */
  #header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .sitename {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: rgb(14, 13, 13);
    font-family: var(--default-font);
    text-decoration: none;
  }
  .navmenu ul {
    display: flex;
    gap: 35px;
    font-size: 1.2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .nav-link {
    color: rgb(122, 112, 112);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    box-sizing: border-box;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6347;
    transition: width 0.3s ease-in-out;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .btn-getstarted {
    color: white;
    background: #ce4311;
    font-size: 15px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
  }
  .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }
  .mobile-nav-toggle {
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    display: none;
  }
  #overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  #overlay-menu .menu-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    position: relative;
  }
  #overlay-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
  }
  #overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #overlay-menu ul li {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .cart-and-btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }
  .cart-icon {
    font-size: 24px;
    color: #333;
    cursor: pointer;
  }

  /* ---------------- Cart Dropdown ---------------- */
  .cart-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: auto;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1001;
  }
  .cart-dropdown h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    text-align: center;
  }
  .cart-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 10px;
  }
  .cart-dropdown ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
  }
  .cart-dropdown ul li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
  }
  .cart-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
  }
  .cart-item-name {
    font-weight: 500;
    font-size: 14px;
    margin-right: 10px;
  }
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
  }
  .cart-item-qty .decrease-btn{
    background: #ca4f22;
    color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .cart-item-qty .increase-btn {
    background: rgb(29, 117, 29);
    color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .remove-btn {
    background: #ce4311;
    color: #fff;
    margin-left: 10px;
    border-radius: 10px;
    padding: 7px;
    border: none;
  }
  #cart-total {
    padding:10px;
    font-weight:bold;
    border-top:1px solid #eee;
    text-align:right;
  }
  #cart-dropdown a.checkout-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    text-align: center;
    background: #ce4311;
    color: #fff;
    padding: 8px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
  }

  @media (max-width: 991px) {
    .container-fluid {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
    }
    .mobile-nav-toggle {
      display: block;
    }
    .header {
      flex-direction: column;
      align-items: flex-start;
    }
    .sitename {
      font-size: 24px;
      margin-bottom: 10px;
    }
    .navmenu ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      align-items: center;
    }
    .btn-getstarted {
      width: auto;
      padding: 8px 20px;
      font-size: 14px;
      text-align: center;
      margin-top: 10px;
    }
    #overlay-menu .menu-container {
      width: 80%;
      max-width: 400px;
    }
  }
 /* header end  */
/* 
 about start  */

.book-a-table h4 {
  font-weight: 600;
  color: #333;
}
.book-a-table h3 {
  font-weight: 700;
}

/* --- Video Play Button --- */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #ee5934;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Triangle in the center */
.video-play-btn::before {
  content: '';
  border-left: 16px solid #fff; /* White triangle */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  display: block;
  margin-left: 3px;
}

.video-play-btn:hover {
  background-color: #ff7b57;
  box-shadow: 0 0 15px rgba(238, 89, 52, 0.6);
}

/* --- Custom Tick List --- */
.custom-tick-list {
  list-style: none;
  padding-left: 0;
}

.custom-tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.custom-tick-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ee5934; /* red circle */
  color: #fff; /* white tick */
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

/* General styling */
.about {
  background-color: #f9f9f9;
}
/* about end  */
/* hero start  */

  .btn-get-started {
    display: inline-block;
    background: #ee5934;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-get-started:hover {
    background: #ff7043;
    transform: translateY(-3px);
  }
  .btn-watch-video {
      color: #000;
      font-weight: 500;
      font-size: 16px;
      text-decoration: none;
      margin-left: 20px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
  }
  .play-icon {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #ee5934;
      margin-right: 10px;
      position: relative;
      transition: all 0.3s ease;
  }
  .play-icon::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-left: 10px solid #ee5934; 
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      left: 14px;
  }
  .btn-watch-video:hover {
      color: #ee5934;
  }
  .btn-watch-video:hover .play-icon {
      background-color: #ee5934;
      box-shadow: 0 0 10px rgba(238, 89, 52, 0.5);
  }
  .btn-watch-video:hover .play-icon::before {
      border-left-color: #fff;
  }
  @keyframes upAndDown {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
  }
  .hero-img img.animated.hero-image {
      animation: upAndDown 3s ease-in-out infinite;
      object-fit: cover;
      width: 100%;
      height: auto;
  }
  .hero {
      position: relative;
  }
  .hero-img {
      position: relative;
      overflow: visible;
  }
  .hero-img img {
      max-width: 100%;
      height: auto;
  }

/* hero end  */

/* why us stsrt  */
.why-us {
  background: linear-gradient(180deg, #fff 0%, #f9fafc 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}
.why-box {
  background-color: #dc3545 !important;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.why-box h3, .why-box p {
  font-size: 1.1rem;
  color: #fff !important;
}
.why-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.btn-red {
  background-color: #e6192e;
  color: #fff;
  border: 2px solid #dc3545;
  transition: all 0.3s ease;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}
.btn-red:hover {
  background-color: #fff;
  color: #dc3545;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.icon-first-box {
  background: #fff;
  border-radius: 12px; 
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); 
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.icon-first-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.icon-first {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #f5c2c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.icon-first i {
  color: #dc3545;
  font-size: 2.5rem; 
  transition: all 0.3s ease;
}
.icon-first-box:hover .icon-first {
  background-color: #dc3545;
  border-color: #dc3545;
}
.icon-first-box:hover .icon-first i {
  color: #fff;
}
.icon-first-box h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #333;
}
.icon-first-box p {
  font-size: 1rem; 
  color: #6c757d;
  max-width: 90%; 
}
@media (max-width: 992px) {
  .why-us {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .why-box h2 {
    font-size: 1.8rem;
  }
  .icon-first-box h5 {
    font-size: 1rem;
  }
  .icon-first-box p {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .why-box {
    padding: 30px;
  }

  .icon-first-box {
    padding: 1.5rem;
  }
  .icon-first {
    width: 70px;
    height: 70px;
  }
  .icon-first i {
    font-size: 2rem;
  }
}
/* why us end  */

/* ststus start  */

#stats {
  position: relative;
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
}
#stats img {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  opacity:0.25;
}
#stats .container {
  position: relative;
  z-index: 2;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.5rem; 
  margin: 0.5rem 0;        
  border-radius: 12px;
  text-align: center;
  min-height: 180px;      
}
.stats-item i {
  font-size: 2.5rem;      
  margin-bottom: 0.8rem;
  color: #ff6b6b;
}
.stats-item span.counter {
  font-size: 3.5rem;       
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.stats-item p {
  font-size: 0.9rem;
  font-weight: 500;
}
/* status end  */

/* menu section  */
.menu-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.menu-img {
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.menu-card:hover .menu-img {
  transform: scale(1.05);
}
.menu-card:hover .overlay {
  opacity: 1;
}
.nav-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link.active {
  color: #ff0000;
  border-bottom: 3px solid #ff0000;
}
.ingredients {
  font-size: 0.9rem;
}
.price {
  font-size: 1.1rem;
  color: #ff0000; 
}
.cart-icon {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff0000; 
  color: white;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}
.cart-icon:hover {
  background-color: #e60000; 
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .menu-card {
    margin-bottom: 20px;
  }
}
/* menu section end  */

 /* testmonials start */
.testimonial-item {
  background: transparent !important;
  box-shadow: none !important;
  transition: transform 0.3s ease-in-out;
}
.testimonial-item:hover {
  transform: translateY(-5px);
}
.testimonial-img {
  border: none !important;
}
.with-line {
  position: relative;
  padding-left: 20px;
}
.with-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #e74c3c;
  border-radius: 2px;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
}
.quote-icon-left, .quote-icon-right {
  font-size: 1.2rem;
}
.stars i {
  margin-right: 2px;
}
#testimonials .swiper-pagination {
  text-align: center;
}
#testimonials .swiper-pagination-bullet {
  background-color: #ff0000;
  opacity: 0.6;
  width: 15px; 
  height: 15px; 
  border-radius: 50%;  
  transition: width 0.3s ease, height 0.3s ease;
}
#testimonials .swiper-pagination-bullet-active {
  background-color: #e74c3c;
  opacity: 1;
  width: 20px; 
  height: 20px; 
}
@media (max-width: 992px) {
  .testimonial-item .row {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-item .col-lg-6 {
    margin-bottom: 15px;
  }
  .with-line::before {
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 40px;
    top: -10px;
  }
  .with-line {
    padding-left: 0;
    padding-top: 20px;
  }
}
/* testmonials end  */

/* event start */
.event-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-item {
  width: 100%;
  min-height: 500px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.event-item .overlay {
  background: rgba(0,0,0,0.5);
  transition: background 0.4s ease;
}
.event-item:hover .overlay {
  background: rgba(0,0,0,0.35);
}
.event-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.event-content .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 2px solid #ff0000; 
  display: inline-block;
  padding-bottom: 2px;
}
.event-content .description {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f8f8f8;
}
.btn-danger {
  background-color: #ff0000;
  border: none;
}
.btn-danger:hover {
  background-color: #cc0000;
}
 #events .swiper-pagination {
  text-align: center;
 
}
#events .swiper-pagination-bullet {
  background-color: #ff0000;
  opacity: 0.6;
  width: 13px;
  height: 13px; 
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
}
#events .swiper-pagination-bullet-active {
  background-color: #e74c3c;
  opacity: 1;
  width: 18px; 
  height: 18px;  
}

@media (max-width: 992px) { 
  .event-item { 
    min-height: 450px; 
  }
}
@media (max-width: 768px) { 
  .event-item { 
    min-height: 350px; 
  }
  .event-content h3 { 
    font-size: 1.3rem; 
  }
}
/* event end  */

/* chef start */
#chefs {
  padding: 80px 0;
  background-color: #fff;
}
.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.team-member .member-img img {
  transition: transform 0.3s ease;
}
.team-member:hover .member-img img {
  transform: scale(1.1);
}
.member-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-member:hover .overlay {
  opacity: 1;
}
.member-img .social-box {
  position: absolute;
  top: 20px;
  right: 10px;
  background: rgba(240, 240, 240, 0.9); 
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 40px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.team-member:hover .social-box {
  transform: translateY(0);
  opacity: 1;
}
.social-box a {
  color: #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-box a:hover {
  color: #ff0000;
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .team-member {
    margin-bottom: 30px;
  }
}
/* chef end  */

/* book a table start */
#book-a-table {
  padding: 80px 0;
  background-color: #fff;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.section-title .description-title {
  color: #ff0000;
  font-weight: 600;
}
.reservation-img {
  background-size: cover;
  background-position: center;
  border-radius: 15px 0 0 15px;
  min-height: 500px; 
}

@media (max-width: 992px) {
  .reservation-img {
    min-height: 350px; /* Mobile height */
    border-radius: 15px 15px 0 0;
  }
}

.reservation-form-bg {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .reservation-form-bg {
    border-radius: 0 0 15px 15px;
    padding: 30px;
  }
}

/* Form Inputs */
.php-email-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.php-email-form .form-control:focus {
  border-color: #ff0000;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.2);
}

/* Textarea */
.php-email-form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.php-email-form textarea:focus {
  border-color: #ff0000;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.2);
}

/* Submit Button */
.php-email-form button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.php-email-form button:hover {
  background-color: #e60000;
}

/* Form Messages */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 10px;
}

.php-email-form .sent-message {
  color: #28a745;
}
/* book a table end */

/* gallery start */

  .gallery-swiper .swiper-slide img {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  .gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
  }
  .gallery-swiper .swiper-slide.red-border img {
    border: 5px solid red;
    border-radius: 10px;
  }
  .gallery-swiper {
    position: relative;
    padding-bottom: 40px;
  }
  #gallery .swiper-pagination {
    text-align: center;
    bottom: 0px;
  }
   #gallery .swiper-pagination-bullet {
    width: 12px; 
    height: 12px; 
    background-color: #e74c3c !important;  
    opacity: 0.7; 
    border-radius: 50%; 
    transition: width 0.3s ease, height 0.3s ease;
  }
   #gallery .swiper-pagination-bullet-active {
    background-color: #e74c3c !important; 
    opacity: 1; 
    width: 18px; 
    height: 18px; 
  }
  .container h2 {
    font-size: 36px;
    font-weight: bold;
  }
  .container .description-title {
    color: #3498db;
  }
/* gallery end  */

/* contact us start  */
  .info-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }

   .icon-box {
    background-color: #dc3545;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .icon-box i {
    color: #fff;
    margin-left: 15px;
    font-size: 24px;
  }
  .section-title h5,
  .section-title h3 .description-title {
    color: #dc3545; 
  }
  .php-email-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .php-email-form input,
  .php-email-form textarea {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .php-email-form button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .php-email-form button:hover {
    background-color: #c82333;
  }
  .loading,
  .error-message,
  .sent-message {
    display: none;
  }
  .text-center {
    text-align: center;
  }
  .text-center .sent-message {
    color: #28a745;
  }
  .text-center .error-message {
    color: #dc3545;
  }
  #googleMap {
    width: 100%;
    height: 400px;
  }
  #googleMap iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
/* contact us end */
/* footer start */
  #footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
  }

  /* Icon Styling */
  .icon {
    font-size: 30px;
    margin-right: 15px;
    color: #ff6347; /* Red color for icons */
  }

  .address, .social-links {
    margin-left: 10px;
  }

  /* Heading and Links Styling */
  h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Social Media Icons */
  .social-links {
    display: flex;
    gap: 15px;
  }

  .social-links a {
    font-size: 24px;
    color: #ff6347; /* Red color for social media icons */
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #ff4500; /* Darker red color on hover */
  }

  /* Footer Copyright Section */
  .copyright {
    font-size: 14px;
    margin-top: 20px;
  }

  .credits {
    font-size: 12px;
    margin-top: 5px;
  }

  .credits a {
    color: #fff;
    text-decoration: none;
  }

  .credits a:hover {
    color: #ff6347;
  }
/* footer end */