/********** Template CSS **********/
:root {
    --primary: #CEAA73;
    --secondary: #a98c5e;
    --light: #fcf8eb;
    --dark: #75736f;
}

@font-face {
    font-family: poppins;
    src: url(Poppins/Poppins-Regular.ttf);
}

.poppins {
    font-family: poppins;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/*** Paragraph (Default) ***/
p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #6e6c68;
    line-height: 1.6; /*   Improves readability */
    margin-bottom: 1rem; /*   Adds spacing */
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
}

@keyframes sk-rotateplane {
    0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
    50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
    100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Heading ***/
h1, h2, .fw-bold {
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
    color: #6e6c68 !important;
}

h3, h4, .fw-semi-bold {
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif;
}

h5, h6, .fw-medium {
    font-weight: 200 !important;
    font-family: 'Poppins', sans-serif;
}

/*** Button ***/
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
	border-radius: 5px;
    transition: .5s;
}

.btn-primary, .btn-secondary {
   background-color: #CEAA73;
	color: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 #A98C5E !important;
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 #A98C5E !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Navbar ***/
.navbar { 
    background-color: #FFFFFF !important; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    transition: background 0.3s ease-in-out;
	 padding: 20px 0 !important; /* Increased top & bottom padding */
    padding-left: 120px !important; /*  Fix: Remove extra padding */
	
}

.navbar-dark .navbar-nav .nav-link {
   font-family: 'poppins',sans-serif;
    position: relative;
    margin-right: 30px !important; 
    padding: 25px 0;
    color: #6e6c68 !important;
    font-size: 18px;
    transition: color 0.3s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #6e6c68 !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/*  Fix: Remove padding & ensure logo is left-aligned */
.navbar-brand {
    padding: 10px 0 !important; /* Add space around the logo */
    margin-left: 30px !important; /* Shift logo slightly to the right */
    margin: 0 !important;
    display: flex;
    align-items: center;
    margin-right: auto; /*  Ensures logo stays left-aligned */
}

/*  Adjust Logo Size for All Screens */
.navbar-brand img {
    max-height: 70px; /*  Adjust for better visibility */
    display: block;
}

/* Sticky Navbar - Smaller Logo */
.sticky-top.navbar-dark .navbar-brand img {
    max-height: 69px;
}

/* Default Logo (Visible Before Scroll) */
.default-logo {
    display: block;
}

/* Scroll Logo (Hidden Before Scroll) */
.scroll-logo {
    display: none;
}

/* When Navbar is Sticky (on Scroll) */
.sticky-top.navbar-dark .default-logo {
    display: none;
}

.sticky-top.navbar-dark .scroll-logo {
    display: block;
}

/*  Fix: Hide Navbar Toggler on Desktop */
.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--dark) !important;
    font-size: 24px;
    outline: none !important;
    box-shadow: none !important;
}

/*  Mobile Fix: Ensure Navbar & Logo are Properly Aligned */
@media (max-width: 991.98px) {
    .navbar {
        padding-left: 0 !important;
          position: sticky !important;
        top: 0;
        z-index: 1030; /* Above carousel */
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
        margin-left: 0;
        color: #6e6c68 !important;
        text-align: left;
    }

    .navbar-brand {
        padding-left: 0 !important;
         margin-left: 0 !important; /* Slightly less shift on mobile */
    }

    .navbar-brand img {
       max-height: 65px; /* Adjust logo size for mobile */
    }
	
	 .navbar-toggler {
        display: block !important; /*  Visible only on mobile */
        margin-left: auto; /*  Aligns toggler to the right */
    }

    .navbar-collapse {
        background: #FFFFFF; /*  Ensures dropdown menu is visible */
        border-top: 1px solid #ddd;
    }
}

/*  Desktop Fixes */
@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: 0.5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
	
	 .navbar-toggler {
        display: none !important; /*  Hide on desktop */
    }
}


 .navbar {
    position: relative; /* Ensures it doesn't overlap */
    z-index: 10; /* Keeps navbar above other elements */
}

/*   Ensures images keep their natural height without being forced to full screen */
.carousel-item {
    position: relative;
}

/*   Ensures images are centered and cropped evenly */
.carousel-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

/*   Background Overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/*   Adjusts Text Position */
.carousel-caption {
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: auto;
    text-align: left;
    z-index: 2;
}

/*   Adjust Text Size */
.carousel-caption h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/*   Adjust Button Size */
.carousel-caption a {
    font-size: 14px;
    padding: 8px 16px;
}

/*   Desktop Image Position Fix */
@media (min-width: 1024px) { 
    .carousel-image {
        object-position: center; /* Centers image properly */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #header-carousel {
        margin-top: 0; /* Slightly smaller margin for mobile */
    }

    .carousel-caption {
        left: 5%;
        bottom: 1%;
        width: 90%; /* Increase width to utilize more space */
        text-align: left;
    }

    .carousel-caption h5 {
        font-size: 12px; /* Smaller font size for text */
        line-height: 1; /* Adjust line height for better readability */
        margin-bottom: 5px; /* Reduce margin to save space */
    }

    .carousel-caption a {
        font-size: 10px; /* Smaller font size for button text */
        padding: 4px 8px; /* Reduce padding to make the button smaller */
    }

    .carousel-caption .btn {
        margin-top: 5px; /* Adjust margin to position the button closer to the text */
    }
}

/* Small Screen Fixes */
@media (max-width: 576px) {
    .carousel-caption {
        left: 5%;
        bottom: 1%;
        width: 90%; /* Utilize more width for smaller screens */
        text-align: left;
    }

    .carousel-caption h5 {
        font-size: 10px; /* Even smaller font size for very small screens */
        font-weight: 300 !important;
        line-height: 1; /* Adjust line height for better readability */
        margin-bottom: 5px; /* Further reduce margin to save space */
    }

    .carousel-caption a {
        font-size: 9px; /* Smaller font size for button text */
        padding: 3px 6px; /* Further reduce padding to make the button smaller */
    }

    .carousel-caption .btn {
        margin-top: 5px; /* Adjust margin to position the button closer to the text */
    }
}
/*   Adjust Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

/*** Certification Carousel ***/
.certification-carousel img {
    max-width: 300px; /* Adjust width for visibility */
    max-height: 200px; /* Increase height slightly */
    object-fit: contain; /* Ensures logos fit well */
    margin: auto; /* Centers images */
    padding: 1px; /* Adds spacing */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certification-carousel img {
        max-width: 200px; /* Slightly smaller for tablets */
        max-height: 130px;
    }
}

@media (max-width: 576px) {
    .certification-carousel img {
        max-width: 180px; /* Smaller on mobile screens */
        max-height: 120px;
    }
}

/*** Section Title ***/
.section-title-wrapper * {
    text-decoration: none !important;
    border-bottom: none !important;
}

.section-title {
    position: relative; /* Ensure pseudo-elements align correctly */
}

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
    animation: section-title-run-sm 5s infinite linear;
}

.section-title.text-center::after {
    animation: section-title-run-center 5s infinite linear;
}

@keyframes section-title-run {
    0% { left: 0; } 
    50% { left: 145px; } 
    100% { left: 0; }
}

@keyframes section-title-run-center {
    0% { left: 50%; transform: translateX(-50%); } 
    50% { left: 50%; transform: translateX(45px); } 
    100% { left: 50%; transform: translateX(-50%); }
}

@keyframes section-title-run-sm {
    0% { left: 0; } 
    50% { left: 85px; } 
    100% { left: 0; }
}

/*** Section Title Variants ***/
.section-title-2 {
    text-decoration: none !important;
}

.section-title-1::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title-2::before,
.section-title-2::after {
    display: none; /* Removed redundant !important */
}

.section-title-1.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-title-1.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title-1::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    animation: section-title-run 5s infinite linear;
}

.section-title-1.section-title-sm::after {
    width: 4px;
    height: 3px;
    animation: section-title-run-sm 5s infinite linear;
}

.section-title-1.text-center::after {
    animation: section-title-run-center 5s infinite linear;
}

.section-title-2.section-title-sm::before {
    width: 90px;
    height: 1px;
}


/*** Story Timeline ***/
.story::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
    background: var(--primary);
    z-index: -1;
}

.story .story-right::before,
.story .story-left::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 2px;
    left: 50%;
    margin-left: -7px;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(45deg);
    z-index: 1;
}

.story .story-right .story-text::before,
.story .story-left .story-text::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 0;
    border: 9px solid;
}

.story .story-right .story-text::before {
    left: -18px;
    border-color: transparent var(--light) transparent transparent;
}

.story .story-left .story-text::before {
    right: -18px;
    border-color: transparent transparent transparent var(--light);
}

@media (max-width: 768px) {
    .story::after {
        left: 13px;
    }
    
    .story .story-right::before,
    .story .story-left::before {
        left: 24px;
    }

    .story .story-right .story-text::before,
    .story .story-left .story-text::before {
        top: -18px;
        left: 0;
        border-color: transparent transparent var(--light) transparent;
    }
}



/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 30px; /* Adjusted padding for mobile */
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 5px;
}


.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


.service3-item>div {
	 position: relative;
    z-index: 1;
	  padding: 30px 30px; /* Add padding to create space between the box and the text */
}

.service3-item div::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transition: .5s;
    z-index: -1;
}

.service3-item div:hover::after {
    width: 100%;
    background: var(--primary);
}

.service3-item * {
    transition: .5s;
}

.service3-item:hover * {
    color: #000000 !important;
}

.service3-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.service3-item:hover .service-icon {
    background: #FFFFFF !important;
}

.service3-item:hover .service-icon i {
    color: var(--primary) !important;
}

/*** Service Item 2 ***/
.service-item2 {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border-radius: 5px;
    transition: 0.5s;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.service-item2 .service-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 5px;
    transition: 0.5s;
}

.service-item2 .service-icon i {
    color: #ffffff;
    font-size: 24px;
}

.service-item2 h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item2 p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Hover Effects */
.service-item2:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.service-item2:hover .service-icon {
    background:  var(--primary) !important;
    border: 2px solid var(--primary);
}

.service-item2:hover .service-icon i {
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-item2 {
        padding: 20px;
    }

    .service-item2 .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-item2 h4 {
        font-size: 1.3rem;
    }

    .service-item2 p {
        font-size: 0.95rem;
    }
}

/* Image Magnifier Container */
.image-magnifier {
    position: relative;
    overflow: hidden;
    cursor: none; /* Hide default cursor */
}

/* Magnifier Glass */
.image-magnifier::after {
    content: "";
    position: absolute;
    width: 150px; /* Size of the magnifier */
    height: 150px;
    border: 3px solid #000; /* Black border */
    border-radius: 50%; /* Slightly rounded corners */
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
    pointer-events: none; /* Ensure it doesn't block interactions */
    transform: translate(-50%, -50%);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    top: var(--y, 0);
    left: var(--x, 0);
}

/* Show magnifier on hover */
.image-magnifier:hover::after {
    opacity: 1;
}

/* Zoomed Image */
.image-magnifier img {
    transition: transform 0.3s ease;
}

.image-magnifier:hover img {
    transform: scale(2.5); /* Zoom level */
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/* Testimonial Section Styles */
.testimonial-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-title22 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
}

.author-designation {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .section-title22 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-designation {
        font-size: 0.85rem;
    }
}
/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/* Certificate Gallery Styles */
.certificate-img img {
   max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.certificate-img img:hover {
    transform: scale(1.05);
}

/* Lightbox Navigation Buttons */
.fancybox-button {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2%;
    padding: 10px;
}

.fancybox-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Close Button */
.fancybox-close-small {
    color: #fff !important;
}

/* Owl Carousel Navigation Buttons */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Fancybox Lightbox Styling */
.fancybox-button {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2%;
    padding: 10px;
}

.fancybox-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.fancybox-close-small {
    color: #fff !important;
}

/* Ensure Fancybox Close Button is Visible */
.fancybox-button--close {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

/* Fancybox Toolbar Styling */
.fancybox-toolbar {
    display: flex ;
}


/*** Work Process ***/
.process-icon {
    width: 75px;
    height: 75px;
}

.process-item .position-relative::after {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 50px;
    color: #DDDDDD;
    top: 0;
    right: -45px;
    -webkit-animation: process-item-icon 3s infinite linear;
    animation: process-item-icon 3s infinite linear;
}

@-webkit-keyframes process-item-icon {
    0% {right: -30px; } 50% { right: -45px; } 100% { right: -30px; }
}

.process-item:last-child .position-relative::after {
    display: none;
}

@media (max-width: 992px) {
    .process-item:nth-child(2) .position-relative::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-item .position-relative::after {
        display: none;
    }
}


/*** Custom Accordion ***/
.accordion-custom .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion-custom .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    padding: 15px 0 0 0;
}



/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 2s;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    display: flex;
    background-size: cover;
    align-items: center;
    justify-content: center;
    height: 500px; /* Adjust the height as needed (keep it as per your current height) */
    position: relative; /* Add this to position child elements */
}

/* Adjust the quote section */
.blockquote {
    position: absolute;
    top: 55%; /* Move the quote slightly below the center */
    transform: translateY(-50%);
    width: 100%;
}
.b-nav-header {
    position: absolute;
    bottom: 10px; /* Move the navigation closer to the bottom */
    width: 100%; /* Ensure it spans the full width */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    left: 0; /* Ensure it starts from the left edge */
    right: 0; /* Ensure it ends at the right edge */
}

/* Ensure the inner container of the navigation is centered */
.b-nav-header .text-center {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    gap: 8px; /* Add spacing between links and icons */
    margin: 0 auto; /* Center the container itself */
    padding: 0; /* Remove any default padding */
}
/* Adjust the font size for the navigation links */
.small {
    font-size: 0.875rem; /* Adjust as needed */
}
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

/* Footer Logo */
.footer-about .footer_logo img {
    max-width: 150px; /*  Adjust width as needed */
    height: auto; /*  Keep aspect ratio */
    display: block;
    margin: 0 auto; /*  Centers the logo */
}

.footer-about p {
   font-size: 18px;
    color: var(--dark) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-about .footer_logo img {
        max-width: 120px; /*  Smaller logo for mobile */
    }
}
