/********** Template CSS **********/
:root {
    --primary: #f59e0b;
    --secondary: #0f766e;
    --light: #F5F5F5;
    --dark: #1F2937;
    --accent: #f59e0b;
    --accent-purple: #0f766e;
    --charcoal-dark: #1F2937;
    --charcoal-light: #F9FAFB;
    --charcoal-med: #F3F4F6;
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #0f766e 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #0f766e 100%);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(245, 158, 11, 0.1);
}

html, body {
    background: #FFFFFF;
    min-height: 100vh;
    color: #374151;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/*btn-primary:hover -> background: #698272 border: #32A95E btn-primary-focus-> background: #41A666 border: #32A95E btn-primary.disabled -> */

/*** 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);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-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 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    text-transform: capitalize;
    letter-spacing: 0px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    color: #FFFFFF;
    background: var(--gradient-primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.35);
    border-color: rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-light:hover {
    background: rgba(0, 163, 204, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.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-dark {
    background: rgba(245, 158, 11, 0.7) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 12px 0 !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-dark .navbar-brand {
    margin-right: auto;
}

.navbar-dark .navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.navbar-dark .navbar-brand img:hover {
    transform: translateY(-2px);
    filter: brightness(0.95) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.navbar-dark .navbar-nav {
    gap: 4px;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    position: relative;
    margin: 0 12px;
    padding: 6px 8px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0px;
    text-transform: none;
    background: transparent;
    border-radius: 6px;
    text-shadow: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: none;
    border-radius: 6px;
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: none;
    border-radius: 6px;
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link::before {
    display: none;
}

.navbar-dark .navbar-toggler {
    color: #1f2937 !important;
    border-color: #1f2937 !important;
}

.header-nav {
    background: rgba(245, 158, 11, 0.7) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.header-tag {
    color: #1f2937 !important;
}

.header-tag:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.navbar-dark .btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navbar-dark .btn-primary {
    background: var(--gradient-primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #FFFFFF;
    margin-left: 12px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-dark .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.6);
}

.navbar-dark .text-primary {
    color: #1f2937 !important;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 8px 12px;
    border-radius: 6px;
    text-shadow: none;
}

.navbar-dark .text-primary:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: none;
    box-shadow: none;
    font-weight: 700;
}

/*** Dropdown Menu ***/
.dropdown-menu {
    background: rgba(245, 158, 11, 0.9) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.dropdown-menu .dropdown-item {
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: 10px 16px;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    text-shadow: none;
    font-weight: 700;
}

.dropdown-menu .dropdown-item.active {
    background: transparent;
    color: #FFFFFF;
    border-left: 3px solid #FFFFFF;
    padding-left: 13px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .navbar-dark {
        padding: 12px 24px !important;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: rgba(245, 158, 11, 0.7) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    }

    .navbar-dark .navbar-nav .nav-link {
        margin: 4px 0;
        padding: 6px 0;
        font-size: 14px;
        color: #1f2937;
    }

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #FFFFFF;
        background: rgba(255, 255, 255, 0.2);
        padding-left: 12px;
        transition: all 0.3s ease;
        font-weight: 700;
    }

    .navbar-dark .navbar-nav .nav-link.active {
        color: #FFFFFF;
        background: transparent;
        border-left: 3px solid #FFFFFF;
        padding-left: 9px;
        transition: all 0.3s ease;
        font-weight: 700;
    }

    .navbar-dark .navbar-nav {
        gap: 0;
        margin-top: 12px;
    }

    .navbar-dark .navbar-brand img {
        height: 42px;
    }

    .navbar-dark.scrolled {
        background: rgba(245, 158, 11, 0.7) !important;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        padding: 16px 48px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(245, 158, 11, 0.7) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    }

    .navbar-dark.scrolled {
        position: fixed;
        background: rgba(245, 158, 11, 0.7) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
        padding: 12px 48px !important;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: rgba(245, 158, 11, 0.7) !important;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    }
}

/* Active nav link styling */
.navbar-dark .nav-link.active {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    text-shadow: none;
    font-weight: 700;
    border-radius: 6px;
}


/*** Carousel ***/
#header-carousel {
    margin-top: 60px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

#header-carousel .carousel-inner {
    min-height: 70vh;
}

#header-carousel .carousel-item {
    height: 70vh;
}

#header-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.45) 0%, rgba(31, 41, 55, 0.45) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1F2937;
}

.carousel-caption h5 {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #FFFFFF !important;
}

.carousel-caption h5.text-primary {
    color: #FFFFFF !important;
}

.carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #4B5563;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
        color: #FFFFFF !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    filter: none !important;
    box-shadow: none !important;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    filter: none !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-color: #f59e0b !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    filter: none !important;
    box-shadow: none !important;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bg-dark .section-title::before {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 4px;
    bottom: 0px;
    background: var(--primary);
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 320px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-item:hover::before {
    opacity: 0.15;
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-item h4 {
    color: #000000;
}

.service-item p {
    color: #000000;
}

.service-item .service-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    transform: rotate(0deg);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.service-item .service-icon i {
    transform: rotate(0deg);
    font-size: 28px;
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.service-item a.btn i {
    font-size: 28px;
    color: #f59e0b !important;
}

.service-item:hover {
    transform: translateY(-8px);
    background: #FFFFFF;
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-item:hover a.btn {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 6px;
    width: 12px;
    height: 12px;
    background: rgba(105, 130, 114, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-carousel .owl-dot:hover {
    background: rgba(105, 130, 114, 0.6);
}

.testimonial-carousel .owl-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(105, 130, 114, 0.3);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: all 0.4s ease;
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #000000;
}

.testimonial-carousel .owl-item .testimonial-item h4,
.testimonial-carousel .owl-item .testimonial-item small {
    color: #000000;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
}


/*** Team ***/
.team-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF !important;
}

.team-item .text-center {
    background: #F9FAFB;
}

.team-item .text-center h4,
.team-item .text-center p {
    color: #000000;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    gap: 12px;
}

.team-social a.btn {
    position: relative;
    margin: 0;
    margin-top: 100px;
    opacity: 0;
    transform: scale(0.8);
    border-radius: 50%;
}

.team-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.team-item:hover .team-social {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(79, 70, 229, 0.4) 100%);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
    transition: all 0.3s 0s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
    transition: all 0.3s 0.05s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
    transition: all 0.3s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
    transition: all 0.3s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-item {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.blog-item .p-4 {
    background: #F9FAFB;
}

.blog-item h4 {
    color: #000000;
}

.blog-item p {
    color: #000000;
}

.blog-item small {
    color: #000000;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.1);
}


/*** Section Spacing - Modern Look ***/
.container-fluid.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.section-title {
    margin-bottom: 2rem !important;
}

/*** Reduce spacing between Why Choose Us and Our Services ***/
#features-container {
    padding-bottom: 0 !important;
}

#services-container {
    padding-top: 2rem !important;
}

/*** Hide Success Stories/Testimonials Section ***/
#testimonials-container {
    display: none;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: 0;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 9999;
    background: var(--gradient-primary) !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    padding: 12px 15px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
}

.bg-header {
    background: linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 0;
    }
}

.navbar-brand img {
    height: 100px; /* Adjust to make the logo smaller */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the logo doesn't exceed its container */
    object-fit: contain; /* Ensures the logo fits nicely inside its dimensions */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

.navbar-brand img:hover {
    transform: scale(1.1); /* Slightly zooms in the logo on hover */
}

.footer-about .navbar-brand img {
    height: 45px;
}

.footer-about .navbar-brand {
    margin-bottom: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.footer-brand img {
    height: 100%;
    width: 100%;
    max-height: none;
    object-fit: cover;
    filter: brightness(0.9);
}

/*** Page Sections ***/
.container-fluid {
    background: transparent;
}

.section-title h1,
.section-title h5 {
    color: #000000;
}

.section-title h5 {
    color: var(--primary);
}

p {
    color: #000000;
}

h1, h2, h3, h4 {
    color: #000000;
}

/*** About Section ***/
.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-light {
    background: #F9FAFB !important;
    border: 1px solid #E5E7EB;
    backdrop-filter: blur(10px);
}

/*** Form Styling ***/
.form-control,
.form-select {
    background: #FFFFFF !important;
    border: 1px solid #D1D5DB !important;
    color: #374151 !important;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #9CA3AF;
}

.form-control:focus,
.form-select:focus {
    background: #FFFFFF !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(0, 163, 204, 0.15) !important;
    color: #374151 !important;
}

.form-control option {
    background: #FFFFFF;
    color: #374151;
}

/*** Footer ***/
.bg-dark {
    background: rgba(245, 158, 11, 0.7) !important;
    backdrop-filter: blur(12px);
    color: #1f2937 !important;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.bg-dark .text-white {
    color: #1f2937 !important;
}

.bg-dark .text-light {
    color: #1f2937 !important;
}

.bg-dark p {
    color: #1f2937 !important;
}

.bg-dark h3 {
    color: #1f2937 !important;
}

.bg-dark .section-title h3 {
    color: #1f2937 !important;
}

.footer-about .bg-primary {
    background: rgba(15, 118, 110, 0.2) !important;
    padding: 0 !important;
    min-height: 200px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.footer-about {
    padding: 0 !important;
    margin: 0 !important;
}

.footer-about {
    height: auto !important;
    display: flex;
    align-items: center;
}

.footer-about .h-100 {
    height: auto !important;
    width: 100%;
}

.footer-about .p-4 {
    padding: 0 !important;
    width: 100%;
    height: 100%;
}

.footer-about .navbar-brand {
    width: 100%;
    height: 100%;
}

.bg-dark .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-dark .row {
    gap: 0 !important;
    row-gap: 0.75rem !important;
}

.bg-dark .pt-5 {
    padding-top: 0.25rem !important;
}

.bg-dark .mb-5 {
    margin-bottom: 0.25rem !important;
}

.bg-dark .mb-2 {
    margin-bottom: 0.125rem !important;
}

.bg-dark .pt-lg-5 {
    padding-top: 0.5rem !important;
}

.bg-dark .pt-0 {
    padding-top: 0 !important;
}

.bg-dark .pb-3 {
    padding-bottom: 0.25rem !important;
}

.bg-dark .mb-4 {
    margin-bottom: 0.25rem !important;
}

.bg-dark .mt-4 {
    margin-top: 0.75rem !important;
}

.bg-dark a {
    color: #1f2937 !important;
}

.bg-dark .link-animated a {
    color: #1f2937 !important;
}

.bg-dark .text-primary {
    color: #f59e0b !important;
}

.bg-dark .row.gx-5 {
    --bs-gutter-x: 0 !important;
}

.footer-about.col-lg-4,
.footer-about.col-md-6 {
    padding: 0 !important;
    margin: 0 !important;
}

.footer-about > div {
    width: 100%;
    height: 100%;
}

.footer-about .d-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: auto !important;
}

.bg-dark .col-md-12 {
    padding: 0 !important;
}

.bg-dark [class*="col-"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/*** Facts Section ***/
.facts {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.facts::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.facts::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.facts .wow {
    position: relative;
    z-index: 1;
}

.facts .wow > div {
    background: #FFFFFF !important;
    backdrop-filter: blur(10px);
    border: 1px solid #E5E7EB !important;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.facts .wow > div h5,
.facts .wow > div h1 {
    color: #000000;
}

.facts .wow > div:hover {
    background: #FFFFFF !important;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 163, 204, 0.3) !important;
}

/*** Partner Carousel ***/
.partner-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1) contrast(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
}

.partner-carousel .owl-item:hover .partner-logo {
    filter: grayscale(0%) brightness(1) contrast(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1.05);
}

.partner-carousel .owl-item:hover .partner-item-wrapper {
    background: rgba(245, 158, 11, 0.15);
}
