/* ------------------------------------------------------------------------------- */
* {
     margin: 0;
     padding: 0;
}

/* ------------------------------------------------------------------------------- */



/* ----------------------------------------------------------------------------------------- */
::-webkit-scrollbar {
     width: 12px;
     /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
     background: #f1f1f1;
     /* Track color */
}

::-webkit-scrollbar-thumb {
     background-color: #888;
     /* Scrollbar thumb color */
     border-radius: 6px;
     /* Rounded corners for the scrollbar */
     border: 3px solid #f1f1f1;
     /* Adds space around the thumb */
}

::-webkit-scrollbar-thumb:hover {
     background: #555;
     /* Hover state color */
}

* {
     scrollbar-width: thin;
     /* Makes the scrollbar thin */
     scrollbar-color: #888 #f1f1f1;
     /* Thumb and track color */
}

/* scrollbar end */
/* -------------------------------------------------------------------------------------- */






* {
     scrollbar-width: thin;
     /* Makes the scrollbar thin */
     scrollbar-color: #888 #f1f1f1;
     /* Thumb and track color */
}

/* scrollbar end */
/* -------------------------------------------------------------------------------------- */




/* ------------------------------------------------------------------------------- */
/* go up button */
#button {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background-color: #007bff;
     color: white;
     text-align: center;
     line-height: 50px;
     font-size: 18px;
     border-radius: 50%;
     cursor: pointer;
     opacity: 0;
     /* Initially hidden (transparent) */
     pointer-events: none;
     /* Prevent interaction when hidden */
     transition: opacity 0.4s ease;
     /* Smooth transition for opacity */
     animation: float 3s ease-in-out infinite;
     /* Up-down animation */
}

/* Button appears when scrolled */
#button.show {
     opacity: 1;
     /* Fully visible */
     pointer-events: auto;
     /* Allow interaction */
}

/* Add hover effects */
#button:hover {
     background-color: #0056b3;
}

/* Floating up-down animation */
@keyframes float {
     0% {
          transform: translateY(0);
     }

     50% {
          transform: translateY(-10px);
          /* Move up by 10px */
     }

     100% {
          transform: translateY(0);
          /* Move back to original position */
     }
}

/* Responsive adjustments */
@media (max-width: 600px) {
     #button {
          width: 40px;
          height:50px;
          line-height: 40px;
          font-size: 16px;
          bottom: 20px;
          right: 30px;
     }
}

/* Responsive adjustments */


/* Button appears when scrolled */
#button.show {
     z-index: 999;
     margin-right: 5px;
     transition: 0.5s;
     display: block;
}

/* Add hover effects */
#button:hover {
     background-color: #0056b3;
}

/* ------------------------------------------------------------------------------- */














/* <!-- pop up ---------------------------------------------------------------------------------------- --> */
.modal-content {
     border-radius: 15px;
     overflow: hidden;
}

.modal-header {
     background-color: #343a40;
     color: white;
}

.modal-footer {
     background-color: #f8f9fa;
}

/* Add background overlay effect */
.modal-backdrop.show {
     opacity: 0.8;
     /* Adjust the opacity for the overlay */
}

/* Animate the modal appearance */
.fade.show {
     transition: opacity 0.5s ease;
}

.modal-body img {
     animation: zoomIn 0.5s;
     width: 100%;
     /* Make image responsive */
     height: auto;
}

/* Zoom in animation */
@keyframes zoomIn {
     from {
          transform: scale(0.5);
          opacity: 0;
     }

     to {
          transform: scale(1);
          opacity: 1;
     }
}

/* --------------------------------------------------------------------------------- */























/* ------------------------------------------------------------------------------- */
/* Initial navbar style */
.navbar {
     z-index: 999;
     top: 0;
     position: sticky;
     background-color: #0056b3 !important;
     /* Royal blue */
     transition: all 0.4s ease;
     /* Smooth transition */
     padding: 5px 10px;
}

/* Navbar style when scrolled */
.navbar.scrolled {
     padding: 10px 10px;
     /* Shrink padding */
     background-color: rgba(86, 65, 225, 0.9);
     /* Slightly transparent on scroll */
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
     /* Add shadow for effect */
}

.navbar-brand img {
     height: 40px;
     /* Adjust the height of the logo as needed */
}

.navbar-nav {
     margin-left: auto;
     /* Pushes the menu items to the right */
}

.nav-link {
     color: aliceblue;
     font-weight: bold;
     /* Make menu items bold */
     padding: 1rem 1.25rem;
     /* Adjust padding for proper gap */
}

.nav-item {
     font-size: 17px !important;
     margin-right: 20px;
}

/* Navbar style when scrolled */
.navbar.scrolled {
     padding: 10px 10px;
     background-color: rgba(0, 0, 0, 0.8);
     /* You can change this */
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
     color: gold;
     /* Optional: add hover effect */
}

.dropdown-menu {
     background-color: royalblue;
     /* Match dropdown background with the navbar */
}

.dropdown-item {
     color: white;
     /* Make dropdown items white */
     font-weight: bold;
     transition: 0.5s;
     /* Make dropdown items bold */
}

.dropdown-item:hover {
     background-color: rgba(255, 255, 255, 0.917);
     /* Optional: add hover effect */
}

/* Navbar Dropdown Hover */
.nav-item.dropdown:hover .dropdown-menu {
     display: block;
     margin-top: 0;
     /* Optional: Adjust the margin for better alignment */
}

.dropdown-menu {
     display: none;
     /* Initially hidden */
}

/* ------------------------------------------------------------------------------- */




















/* ------------------------------------------------------------------------------- */
/* Banner css */
.carousel-item {
     height: 600px;
}

.carousel-item img {
     object-fit: cover;
     /* Cover the container without distortion */
     width: 100%;
     height: 100%;
}

/* Full-screen black overlay */
.carousel-caption {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.457);
     /* Black overlay with 60% opacity */
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
}

.carousel-caption h5,
.carousel-caption p {
     margin: 0;
}

.carousel-caption p {
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: 5.5em !important;
     letter-spacing: 10px;
     color: #b40808; 
     background-image: linear-gradient(45deg, #b40808 45%, #6716ca 49%, #10298e 99%); 
     background-clip: text; 
     -webkit-background-clip: text; 
     -webkit-text-fill-color: transparent; 
}

#ban_button {
     border: none;
     font-size: 1em;
     width: 17%;
     color: #ffffff !important;
     background: linear-gradient(to right, #c22003ad, #1c2863) !important;
}

#banner-Special {
     color: #007BFF !important;
     letter-spacing: 20px;
     font-family: "Rowdies", sans-serif;
     background-color: rgba(255, 255, 255, 0);
     border-bottom: 1px solid black;
     padding-top: 19em;
}

#banner-Special button {
     transition: 0.5s;
     /* border: 1px solid black !important; */
     color: #000000 !important;
     background-color: #ffffff;
     border: none;
     width: 10%;
}

#banner-Special button:hover {

     color: #ffffff !important;
     background-color: #000000;
}


/* Adjust text size for responsiveness */
@media (max-width: 768px) {
     #banner-Special button {
          font-size: 1.1em;
          width: 50%;
     }
     #ban_button {
          width: 40%;
     }
     .carousel-caption h5 {
          font-size: 5rem !important;
     }
     .carousel-caption p {
          font-size: 24px !important; 
     }
}

/* banner css */
/* ------------------------------------------------------------------------------- */








































/* ------------------------------------------------------------------------------- */
/* Header Styles */
header {
     background: linear-gradient(to right, #c22003ca, #1931aa);
     color: #fff;
     padding: 40px;
     text-align: center;
     width: 100%;
     box-sizing: border-box;
}

header h1 {
     font-weight: bold;
     letter-spacing: 14px;
     font-family: "Bebas Neue", sans-serif;
     margin: 0;
     font-size: 4em;
     color: #fff;
     animation: fadeIn 2s ease-out;
}

header p {
     font-size: 1.2em;
     margin-top: 10px;
     color: #ffffff;
     font-weight: 300;
}

@media (max-width: 552px) {
     header h1 {
          letter-spacing: 10px;
          font-size: 1.7em;
     }
}

/* header end here */
/* ------------------------------------------------------------------------------- */
















/* -------------------------------------------------------------------------------------------------- */
/* About us */
.container-custom {
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Two equal columns */
     grid-template-rows: auto auto auto;
     /* Three rows */
     gap: 20px;
     padding: 20px;
     width: 80%;
     max-width: 1400px;
     background-color: rgb(255, 255, 255);
     /* border: 2px solid black; */
}

.about-title {
     font-family: "Rowdies", sans-serif;
     grid-column: 1 / 3;
     /* Spans both columns */
     text-align: center;
     font-size: 5em;
     padding: 5px;
     position: relative;
     /* Necessary for positioning the ::after pseudo-element */
}

.about-title::after {
     content: "";
     position: absolute;
     width: 50%;
     height: 2px;
     background: linear-gradient(to right, #3908fdba, #1f1f1ee6);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}

.image-box {
     grid-column: 1 / 2;
     /* border: 2px solid black; */
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
}

.image-box img {
     border-radius: 10px;
}

.about-paragraph {
     grid-column: 2 / 3;
     /* border: 2px solid black; */
     /* border-left: 2px solid rgb(132, 26, 150); */
     padding: 20px;
     font-size: 1.3em;
     text-align: justify;
}

.button-box {
     grid-column: 2 / 3;
     display: flex;
     justify-content: center;
     align-items: center;
}

button {
     padding: 10px 20px;
     border: 2px solid black;
     cursor: pointer;
     background-color: white;
     font-weight: bold;
}

#about_button {
     border: none;
     font-weight: bold;
     width: 40%;
     margin-top: -50px;
     transition: 0.5s;
     background: linear-gradient(to right, #c22003e3, #142269);
}

#about_button:hover {
     background-color: rgb(57, 9, 178) !important;
}

/* Responsive adjustments */
@media (max-width: 1350px) {
     .about-paragraph {
          font-size: 1.3em;
     }
}

@media (max-width: 890px) {
     #about_button {
          width: 45%;
          margin-top: -20px;
     }
}

@media (max-width: 1171px) {
     .about-paragraph {
          font-size: 1.3em;
     }
}

@media (max-width: 1190px) {
     .about-paragraph {
          text-align: justify;
     }

     .container-custom {
          grid-template-columns: 1fr;
     }

     #about_button {
          border: none;
          font-weight: bold;
          width: 60%;
          background-color: rgb(100, 87, 218) !important;
     }

     .about-title {
          grid-column: 1 / 2;
     }

     .about-title {
          margin-top: 20px;
          font-size: 4.1em;
     }

     .image-box {
          grid-column: 1 / 2;
     }

     .image-box img {
          width: 100%;
          height: 70vh;
     }

     .about-paragraph {
          grid-column: 1 / 2;
     }

     .button-box {
          grid-column: 1 / 2;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* About us */






































/* -------------------------------------------------------------------------------------------------- */
/* About us */
/* Container styling */
.container-service {
     padding-top: 40px;
     margin: auto;
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     width: 100%;
     max-width: 1200px;
}

/* Box styling */
.box {
     cursor: pointer;
     position: relative;
     margin: auto;
     width: calc(30% - 10px);
     /* Adjust for gap */
     aspect-ratio: 1 / 1;
     overflow: hidden;
     border-radius: 12px;
     transition: transform 0.3s ease;
}

/* Image styling */
.box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover effect for image */
.box:hover img {
     filter: blur(5px);
     transform: scale(1.05);
}

/* Overlay styling */
.overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     color: white;
     opacity: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     transition: opacity 0.3s ease;
     padding: 15px;
}

/* Hover effect for overlay */
.box:hover .overlay {
     opacity: 1;
}

/* Heading styling */
.overlay h2 {
     font-family: "Rowdies", sans-serif;
     margin: 0;
     font-size: 1.6em;
     font-weight: bold;
}

/* Paragraph styling */
.overlay p {
     margin: 10px 0;
     font-size: 1em;
}

/* Button styling */
.overlay button {
     margin-top: 20px;
     padding: 12px 24px;
     border: none;
     background: linear-gradient(to right, #c22003e3, #142269);
     color: white;
     font-size: 1em;
     cursor: pointer;
     border-radius: 5px;
     transition: background 0.3s ease, transform 0.3s ease;
}

/* Button hover effect */
.overlay button:hover {
     transform: scale(1.05);
}

.service-title {
     font-family: "Rowdies", sans-serif;
     grid-column: 1 / 3;
     /* Spans both columns */
     text-align: center;
     font-size: 5em;
     padding: 10px;
     position: relative;
     /* Necessary for positioning the ::after pseudo-element */
}

.service-title::after {
     content: "";
     /* No text, just a decorative element */
     position: absolute;
     width: 50%;
     /* Adjust the width of the underline */
     height: 2px;
     /* Thickness of the underline */
     background: linear-gradient(to right, #3908fdba, #1f1f1ee6);
     /* Color of the underline */
     bottom: 0;
     /* Position it right at the bottom of the text */
     left: 50%;
     /* Start from the center */
     transform: translateX(-50%);
     /* Center the underline horizontally */
     border-radius: 2px;
     /* Optional, adds some roundness to the underline */
}

#serivce_button {
     transition: 0.5s;
     background-color: rgb(100, 87, 218) !important;
}

#serivce_button:hover {
     color: aliceblue !important;
     background-color: rgb(57, 9, 178) !important;
}

/* Responsive styling */
@media (max-width: 1200px) {
     .box {
          width: calc(33.333% - 20px);
          /* Adjust for gap */
     }
}

@media (max-width: 900px) {
     .service-title {
          font-size: 2.5em;
     }

     .container-service {
          padding: 25px;
     }

     .box {
          width: calc(50% - 20px);
          /* Adjust for gap */
     }
}

@media (max-width: 600px) {
     .container-service {
          width: 88%;
     }

     .container-service {
          margin-left: 25px;
     }

     .box {
          width: calc(100% - 20px);
          /* Adjust for gap */
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* services */

















/* -------------------------------------------------------------------------------------------------- */
/* virtual tour */
/* youtube videos */
.video-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 20px;
     max-width: 1400px;
     margin: 0 auto;
}

.service-title {
     font-size: 2.8;
}

.video-grid iframe {
     border-radius: 10px;
     width: 100%;
     height: 300px;
}

@media screen and (max-width: 1000px) {
     .video-grid {
          grid-template-columns: repeat(3, 1fr);
     }
}

@media screen and (max-width: 600px) {
     .video-grid {

          grid-template-columns: repeat(1, 1fr);
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* virtual tour */

































/* -------------------------------------------------------------------------------------------------- */
/* gallery */
.gallery-title {
     font-family: "Rowdies", sans-serif;
     grid-column: 1 / 3;
     /* Spans both columns */
     text-align: center;
     font-size: 5em;
     padding: 10px;
     position: relative;
}

.gallery-title::after {
     content: "";
     position: absolute;
     width: 30%;
     height: 2px;
     background: linear-gradient(to right, #3908fdba, #1f1f1ee6);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}

.heading {
     text-align: center;
     font-size: 2.0em;
     letter-spacing: 1px;
     padding: 40px;
     color: white;
}

.gallery-image {

     padding: 20px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
}

.gallery-image img {
     border-radius: 20px;
     height: 250px;
     width: 350px;
     transform: scale(1.0);
     transition: transform 0.4s ease;
}

.img-box {
     box-sizing: content-box;
     margin: 10px;
     height: 250px;
     width: 350px;
     overflow: hidden;
     display: inline-block;
     color: white;
     position: relative;
     background-color: white;
}

.caption {
     position: absolute;
     bottom: 5px;
     left: 20px;
     opacity: 0.0;
     transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
     filter: brightness(9);
     /* 1.5 is 50% brighter */
     height: 250px;
     width: 350px;
     background-color: rgba(0, 0, 0, 0);
     position: absolute;
     top: 0;
     left: 0;
     transition: background-color 0.3s ease;
}

.img-box:hover img {
     border-radius: 2px;
     transform: scale(1.1);
}

.img-box:hover .transparent-box {
     border-radius: 2px;
     background-color: rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
     border-radius: 2px;
     transform: translateY(-20px);
     opacity: 1.0;
}

.img-box:hover {
     cursor: pointer;
}

.caption>p:nth-child(2) {
     font-size: 0.8em;
}

.opacity-low {
     opacity: 0.5;
}

@media (max-width: 600px) {
     .gallery-title {
          font-size: 3em;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* gallyer end here */




















/* ---------------------------------------------------------------------------------------------- */
/* google review's */
.review-title {
     font-family: "Rowdies", sans-serif;
     grid-column: 1 / 3;
     /* Spans both columns */
     text-align: center;
     font-size: 6.2em;
     padding: 10px;
     position: relative;
}

.review-title::after {
     content: "";
     position: absolute;
     width: 20%;
     height: 2px;
     background: linear-gradient(to right, #3908fdba, #1f1f1ee6);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}

@media (max-width: 600px) {
     .review-title {
          font-size: 3em;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* review end ehere */

























/* -------------------------------------------------------------------------------------------------- */
/* FAQ */
/* FAQ Section */
.faq-section {
     padding: 10px 17px;
     background-color: #f7f7f7;
     max-width: 1400px;
     margin: 20px auto;
     border-radius: 12px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-title {
     font-family: "Rowdies", sans-serif;
     font-size: 3em;
     color: #333;
     text-align: center;
     margin-bottom: 40px;
     position: relative;
     padding-bottom: 15px;
}

.faq-title::after {
     content: "";
     position: absolute;
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #6a11cb, #2575fc);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}

.faq {
     margin-bottom: 20px;
     padding: 20px;
     border-radius: 8px;
     background: #fff;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
}

.faq:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
     font-size: 22px;
     font-weight: 600;
     cursor: pointer;
     color: #333;
     position: relative;
     padding-right: 40px;
     transition: color 0.3s ease;
}

.faq-question::after {
     content: '+';
     position: absolute;
     right: 20px;
     font-size: 22px;
     color: #6a11cb;
     transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
     color: #6a11cb;
}

.faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease, padding 0.3s ease;
     font-size: 16px;
     line-height: 1.6;
     color: #555;
     padding: 0;
}

.faq.active .faq-answer {
     max-height: 300px;
     /* Adjust this based on content */
     padding-top: 15px;
}

.faq.active .faq-question::after {
     content: '-';
     transform: rotate(180deg);
     color: #ff416c;
}

/* Responsive styling */
@media (max-width: 768px) {
     .faq-title {
          font-size: 2em;
          margin-bottom: 20px;
     }

     .faq-section {
          padding: 30px 20px;
     }

     .faq-question {
          font-size: 20px;
     }

     .faq-answer {
          font-size: 14px;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* faq end here */


















/* Basic reset for contact section */
.container-contact,
.innerwrap {
     margin: 0;
     padding: 0;
}

/* Section 1 - Header */
.section1 {
     text-align: center;
     padding: 30px 0;
     color: rgb(0, 0, 0);
     font: 20px;
     background-color: #f8d849;
}

.section1 .textcenter {
     max-width: 800px;
     margin: 0 auto;
}

.section1 .shtext {
     font-family: "Rowdies", sans-serif;
     font-size: 5.5rem !important;
     font-weight: bold;
     color: #000000;
}

.section1 .seperator {
     display: block;
     width: 100px;
     height: 2px;
     background-color: #ffffff;
     margin: 10px auto;
}

/* Section 2 - Main Content Layout */
.section2 {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     margin: 20px auto;
     max-width: 1200px;
}

.section2 .col2 {
     flex: 1;
     padding: 15px;
     min-width: 300px;
}

/* Google Map Styling */
.section2 .first iframe {
     width: 100%;
     height: 100vh;
     max-height: 450px;
     border: 1px solid #ddd;
     border-radius: 5px;
}

/* Contact Information Styling */
.sec2innercont {
     background-color: #ffffff;
     padding: 20px;
     border: 1px solid #ddd;
     border-radius: 5px;
}

.sec2addr {
     font-size: 1rem;
     color: #343a40;
}

.sec2addr h3,
.nearest-location h3,
.qr-code-container h3 {
     font-size: 1.2rem;
     color: #007bff;
     margin-bottom: 10px;
}

.sec2addr p,
.nearest-location p {
     font-size: 1rem;
     color: #555;
     margin: 5px 0;
}

.qr-code-container {
     text-align: center;
     margin-top: 20px;
     background-color: #f8f9fa;
     padding: 15px;
     border: 1px solid #ddd;
     border-radius: 5px;
}

.qr-code-image {
     width: 150px;
     height: 150px;
     margin: 10px 0;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qr-description {
     font-size: 0.9rem;
     color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
     .section1 .shtext {
          font-size: 4rem;
     }
}

@media (max-width: 768px) {

     .section2 {
          flex-direction: column;
     }

     .section2 .col2 {
          margin-bottom: 20px;
     }
}

@media (max-width: 576px) {

     .section1 .shtext {
          font-size: 3rem !important;
     }

     .section1 .seperator {
          width: 50px;
     }

     .sec2addr h3,
     .nearest-location h3,
     .qr-code-container h3 {
          font-size: 1rem;
     }

     .sec2addr p,
     .nearest-location p {
          font-size: 0.9rem;
     }
}





























/* -------------------------------------------------------------------------------------------------- */
/* footer */
.footer {
     background-color: #1a1a1a !important;
}

.container-fluid-custom {
     max-width: 1170px;
     margin: auto;
     padding: 0 15px;
}

.row {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
}

.footer {
     padding: 70px 0;
     color: #ffffff;
}

.footer-col {

     flex: 1;
     padding: 0 15px;
     min-width: 200px;
}

.footer-col h4 {
     font-size: 23px;
     color: #ffffff;
     text-transform: uppercase;
     margin-bottom: 25px;
     font-weight: 600;
     position: relative;
}

.footer-col h4::before {
     content: '';
     position: absolute;
     left: 0;
     bottom: -10px;
     background-color: #ffef09;
     height: 2px;
     box-sizing: border-box;
     width: 50px;
}

.footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
}

.footer-col ul li {
     margin-bottom: 10px;
}

.footer-col ul li a {

     font-weight: bold;
     font-size: 16px;
     text-transform: capitalize;
     color: #ffffff;
     text-decoration: none;
     font-weight: bold;
     display: block;
     transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
     color: #ffffff;
     padding-left: 8px;
}

.footer-col .social-links {
     margin-top: 20px;
}

.bx {
     margin-top: 10px;
     font-size: 30px;
}

.footer-col .social-links a {
     display: inline-block;
     height: 51px;
     width: 51px;
     background-color: rgba(255, 255, 255, 0.2);
     margin: 0 10px 10px 0;
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     color: #ffffff;
     transition: background-color 0.5s ease, color 0.5s ease;
}


.footer-col .social-links a:hover {
     color: #24262b;
     background-color: #ffffff;
}

@media(max-width: 767px) {
     .footer-col {
          width: 50%;
          margin-bottom: 30px;
     }
}

@media(max-width: 574px) {
     .footer-col {
          width: 100%;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* footer end */