/**
* Template Name: Knight
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/knight-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
* Customised for Indian market – professional corporate palette
*/

/*--------------------------------------------------------------
# Indian market – professional colour palette
--------------------------------------------------------------*/
:root {
    --color-primary: #0f3460;
    --color-primary-light: #1e4976;
    --color-accent: #0d9488;
    --color-accent-hover: #0f766e;
    --color-accent-light: #ccfbf1;
    --color-text: #374151;
    --color-text-muted: #6b7280;
    --color-bg-alt: #f8fafc;
    --focus-ring: 0 0 0 3px rgba(13, 148, 136, 0.35);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

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

a:hover {
    color: var(--color-accent-hover);
    text-decoration: none;
}

a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--color-primary);
    font-weight: 600;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 80px;
    z-index: 996;
    background: var(--color-accent);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.4s;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--color-accent-hover);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.back-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 4px 14px rgba(13, 148, 136, 0.35);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 576px) {
    .back-to-top {
        right: 12px;
        bottom: 24px;
        width: 48px;
        height: 48px;
    }
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        animation: none !important;
        transition: none !important;
    }
    .featured .tab-pane.active {
        animation: none;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0 2px 16px rgba(15, 52, 96, 0.08);
    border-bottom: 1px solid rgba(15, 52, 96, 0.06);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    #header {
        height: 70px;
    }
}

.scrolled-offset {
    margin-top: 90px;
}

@media (max-width: 992px) {
    .scrolled-offset {
        margin-top: 90px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color var(--transition-base);
    border-radius: 4px;
}

.navbar a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.navbar .active {
    position: relative;
}

.navbar .active::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 8px;
    bottom: 6px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--color-accent);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--color-accent);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1640px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
}

.mobile-nav-toggle {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: color 0.3s;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
}

.mobile-nav-toggle i {
    display: block;
    line-height: 1;
}

.mobile-nav-toggle i.bi-x {
    color: #fff;
    font-size: 32px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
    color: #fff;
}

.navbar-mobile .mobile-nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 12px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--color-primary);
}

.navbar-mobile a:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--color-accent);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--color-accent);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--color-accent);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.92) 0%, rgba(15, 52, 96, 0.85) 100%), url("../img/hero-bg.png") center/cover no-repeat;
    position: relative;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero .hero-logo {
    margin-bottom: 30px;
}

#hero h1 {
    margin: 0 0 16px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#hero h2 {
    color: #aeaeae;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

#hero .hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#hero .hero-trust {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 400;
}

#hero .hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
}

#hero .hero-features li {
    margin: 0.4em 0;
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    margin: 10px;
    color: #ffffff;
    background: #065f58;
    border: 2px solid #065f58;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(6, 95, 88, 0.4);
}

#hero .btn-get-started:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#hero .btn-get-started:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 4px 14px rgba(13, 148, 136, 0.35);
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    #hero h2,
    #hero .hero-tagline,
    #hero .hero-trust,
    #hero .hero-features {
        line-height: 1.5;
        font-size: 14px;
    }
}

/* Hero: landscape mode (short viewport height) */
@media (orientation: landscape) and (max-height: 500px) {
    #hero {
        min-height: 100vh;
    }

    #hero .hero-container {
        padding: 16px 20px;
        justify-content: center;
    }

    #hero .hero-logo {
        margin-bottom: 10px;
    }

    #hero .hero-logo img {
        max-height: 56px;
        width: auto;
    }

    #hero h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    #hero .hero-tagline {
        font-size: 13px;
        margin-bottom: 2px;
    }

    #hero .hero-trust {
        font-size: 11px;
        margin-bottom: 8px;
    }

    #hero .hero-features {
        font-size: 12px;
        margin: 0 0 10px 0;
    }

    #hero .hero-features li {
        margin: 0.15em 0;
    }

    #hero .btn-get-started {
        padding: 10px 24px;
        font-size: 13px;
        margin: 6px;
    }
}

@media (orientation: landscape) and (max-height: 400px) {
    #hero .hero-container {
        padding: 12px 16px;
    }

    #hero .hero-logo img {
        max-height: 44px;
    }

    #hero h1 {
        font-size: 18px;
    }

    #hero .hero-tagline,
    #hero .hero-trust,
    #hero .hero-features {
        font-size: 11px;
    }

    #hero .hero-features {
        margin-bottom: 6px;
    }

    #hero .btn-get-started {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 72px 0 48px;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 48px 0 32px;
    }
}

.section-bg {
    background-color: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    padding-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        padding-bottom: 32px;
    }
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 12px;
    padding-bottom: 16px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.section-title p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.65;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .image {
    padding: 20px;
    box-shadow: 0 8px 32px rgba(15, 52, 96, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.about .content ul i {
    font-size: 24px;
    padding: 2px 6px 0 0;
    color: var(--color-accent);
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.services .icon-box i {
    font-size: 48px;
    float: left;
    color: var(--color-accent);
}

.services .icon-box p {
    font-size: 15px;
    color: #959595;
    margin-left: 60px;
}

.services .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Why Choose Us (Featured)
--------------------------------------------------------------*/
.featured {
    padding: 48px 0 56px;
    background: var(--color-bg-alt);
}

.featured .nav-tabs,
.featured-tab-list {
    border: 0;
    gap: 0;
}

.featured .nav-item {
    margin-bottom: 12px;
}

.featured .nav-item:last-child {
    margin-bottom: 0;
}

.featured .nav-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 0;
    padding: 18px 20px;
    color: var(--color-primary);
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
    min-height: 72px;
    text-align: left;
}

.featured .nav-link:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 52, 96, 0.08);
    border-left-color: rgba(13, 148, 136, 0.4);
}

.featured .nav-link strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color var(--transition-base);
}

.featured .nav-link:hover strong {
    color: var(--color-accent);
}

.featured .nav-link.active {
    background: #fff;
    box-shadow: 0 6px 24px rgba(15, 52, 96, 0.1);
    border-left: 4px solid var(--color-accent);
}

.featured .nav-link.active strong {
    color: var(--color-accent);
}

.featured .nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.35);
}

.featured-tab-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-accent-light);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
}

.featured .nav-link.active .featured-tab-num {
    background: var(--color-accent);
    color: #fff;
}

.featured-tab-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.featured-tab-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.featured .nav-link.active .featured-tab-desc {
    color: var(--color-text);
}

.featured-tab-content {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 52, 96, 0.1);
    background: #fff;
}

.featured-figure {
    margin: 0;
    line-height: 0;
}

.featured-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.featured .tab-pane.fade.active {
    animation: featured-fade-in 0.3s ease;
}

@keyframes featured-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 991px) {
    .featured .nav-link {
        padding: 16px;
        min-height: 64px;
    }

    .featured-tab-num {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .featured .nav-link strong {
        font-size: 15px;
    }

    .featured-tab-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .featured {
        padding: 40px 0 48px;
    }

    .featured .nav-link {
        padding: 14px 16px;
        gap: 12px;
        min-height: 56px;
    }

    .featured-tab-num {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    background: whitesmoke;
    padding: 0;
}

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #959595;
}

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: var(--color-accent);
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-accent) 50%, rgba(13, 148, 136, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.why-us .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(13, 148, 136, 0.5);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid var(--color-accent);
    transform: scale(20);
}

.why-us .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

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

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px 12px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #555555;
    transition: all 0.3s ease-in-out;
    margin: 0 4px 10px 4px;
    background: whitesmoke;
    border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--color-accent);
    color: #fff;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(21, 21, 21, 0.6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: var(--color-accent);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--color-accent);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-accent);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 72px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(15, 52, 96, 0.88);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .quote-icon {
    text-align: center;
    margin-bottom: 28px;
}

.testimonials .quote-icon i {
    color: var(--color-accent);
    font-size: 24px;
    padding: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.testimonials .testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.testimonials .testimonial-quote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 28px auto;
    max-width: 720px;
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 16px auto;
    display: block;
}

.testimonials .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.testimonials .testimonial-item h4,
.testimonials .testimonial-item .testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.testimonials .swiper-pagination {
    margin-top: 28px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color var(--transition-base), transform var(--transition-fast);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonials .testimonial-quote {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-quote {
        width: 85%;
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .testimonials {
        padding: 48px 0;
    }

    .testimonials .testimonial-item {
        padding: 0 12px;
    }

    .testimonials .testimonial-quote {
        font-size: 16px;
        line-height: 1.65;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    background: whitesmoke;
    padding: 15px 0;
    text-align: center;
}

.clients img {
    width: 50%;
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
}

.clients img:hover {
    filter: none;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .clients img {
        width: 40%;
    }
}

@media (max-width: 575px) {
    .clients img {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: bottom ease-in-out 0.4s;
    background: rgba(13, 148, 136, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a i {
    line-height: 0;
}

.team .member .social a:hover {
    color: #fff;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin: 15px 0 5px 0;
    font-size: 18px;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #888888;
}

.team .member:hover .social {
    bottom: 0;
    opacity: 1;
    transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #151515;
}

.pricing .box h4 {
    font-size: 42px;
    color: #151515;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #151515;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: var(--color-accent);
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 5px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .box .btn-buy:hover {
    background: var(--color-accent);
    color: #fff;
}

.pricing .recommended {
    border-color: var(--color-accent);
}

.pricing .recommended .btn-buy {
    background: var(--color-accent);
    color: #fff;
}

.pricing .recommended .btn-buy:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.pricing .recommended-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 12px;
    padding: 4px 25px 6px 25px;
    background: #eaf6e9;
    color: var(--color-accent);
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    color: var(--color-accent);
    font-size: 18px;
    padding: 4px 0;
    transition: color var(--transition-fast);
    line-height: 24px;
    font-weight: 400;
    padding-right: 25px;
    cursor: pointer;
}

.faq .faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 4px;
    transition: transform var(--transition-base);
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: var(--color-accent);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.contact .info i {
    font-size: 20px;
    color: var(--color-accent);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--color-accent-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--color-accent);
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 8px;
    box-shadow: none;
    font-size: 16px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: var(--focus-ring);
}

.contact .php-email-form input:hover,
.contact .php-email-form textarea:hover {
    border-color: rgba(13, 148, 136, 0.4);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact .php-email-form input {
    height: 48px;
    padding: 0 16px;
}

.contact .php-email-form textarea {
    padding: 12px 16px;
    min-height: 120px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-accent);
    border: 0;
    padding: 12px 28px;
    min-height: 48px;
    color: #fff;
    font-weight: 600;
    transition: background var(--transition-base), transform var(--transition-fast);
    border-radius: 8px;
    cursor: pointer;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--color-accent-hover);
}

.contact .php-email-form button[type=submit]:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.contact .php-email-form button[type=submit]:active {
    transform: scale(0.98);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 40px 0;
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--color-primary) linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow-x: hidden;
}

#footer .container {
    max-width: 100%;
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    padding: 64px 0 56px;
}

#footer .footer-top-inner {
    gap: 48px 0;
    margin-left: 0;
    margin-right: 0;
}

#footer .footer-career-col {
    text-align: left;
    min-width: 0;
}

#footer .footer-info-col {
    text-align: left;
    padding-left: 24px;
    min-width: 0;
}

#footer .footer-info-col p,
#footer .footer-info-col small {
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 991px) {
    #footer .footer-info-col {
        padding-left: 0;
        padding-bottom: 32px;
    }
}

@media (max-width: 767px) {
    #footer .footer-top {
        padding: 40px 0 36px;
    }

    #footer .footer-top .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #footer .footer-top-inner {
        gap: 32px 0;
    }

    #footer .footer-info-col {
        padding-bottom: 24px;
    }

    #footer .footer-info-heading {
        font-size: 22px;
        padding-top: 16px;
    }

    #footer .footer-info-col p {
        font-size: 14px;
    }

    #footer .footer-info-col small {
        font-size: 12px;
    }

    #footer .footer-top .social-links {
        margin-top: 28px;
    }

    #footer .footer-bottom {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    #footer .footer-bottom .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #footer .copyright {
        font-size: 13px;
    }

    #footer .php-career-form {
        padding: 16px 0;
    }
}

@media (max-width: 576px) {
    #footer .footer-top {
        padding: 32px 0 28px;
    }

    #footer .footer-top .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #footer .footer-form-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    #footer .footer-top .footer-logo img {
        width: 100px;
    }

    #footer .footer-info-heading {
        font-size: 20px;
    }

    #footer .footer-top .social-links {
        margin-top: 24px;
    }

    #footer .footer-top .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #footer .footer-bottom .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright {
        font-size: 12px;
        padding: 0 8px;
    }

    #footer .php-career-form {
        padding: 12px 0;
    }
}

#footer .footer-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0 0 20px 0;
}

#footer .footer-top .footer-logo {
    display: inline-block;
}

#footer .footer-top .footer-logo img {
    width: 120px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    aspect-ratio: 130 / 133;
}

#footer .footer-top h3,
#footer .footer-info-heading {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 24px 0 0 0;
    margin-bottom: 0;
}

#footer .footer-top .footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 8px 0 20px 0;
    padding: 0;
    font-style: normal;
    letter-spacing: 0.3px;
}

#footer .footer-info-col p {
    font-size: 15px;
    font-style: italic;
    margin: 12px 0 0 0;
    padding: 0;
}

#footer .footer-info-col small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter{
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#footer .footer-top .footer-newsletter form input {
    border: 0;
    padding: 4px 8px;
    width: 100%;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--color-accent);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: var(--color-accent-hover);
}

#footer .footer-top .social-links {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    line-height: 1;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    width: 38px;
    height: 38px;
    transition: 0.3s;
    flex-shrink: 0;
}

#footer .footer-top .social-links a:hover {
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

#footer .footer-bottom .container {
    max-width: 100%;
}

#footer .copyright {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px;
    word-wrap: break-word;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    padding-top: 5px;
    padding: 8px 15px 0;
}

#footer .php-career-form {
    width: 100%;
    padding: 20px;
}

#footer .php-career-form .form-group {
    padding-bottom: 8px;
}

#footer .php-career-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#footer .php-career-form .error-message br+br {
    margin-top: 25px;
}

#footer .php-career-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#footer .php-career-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#footer .php-career-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading1 1s linear infinite;
}

#footer .php-career-form input,
#footer .php-career-form {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: none;
    font-size: 16px;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

#footer .php-career-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#footer .php-career-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.3);
}

#footer .php-career-form input {
    height: 48px;
    padding: 0 16px;
}

#footer .php-career-form button[type=submit] {
    background: var(--color-accent);
    border: 0;
    padding: 12px 28px;
    min-height: 48px;
    color: #fff;
    font-weight: 600;
    transition: background var(--transition-base), transform var(--transition-fast);
    border-radius: 8px;
    cursor: pointer;
}

#footer .php-career-form button[type=submit]:hover {
    background: var(--color-accent-hover);
}

#footer .php-career-form button[type=submit]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

#footer .php-career-form button[type=submit]:active {
    transform: scale(0.98);
}

@keyframes animate-loading1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Footer resume form: file upload input and button */
#footer .php-career-form input[type="file"] {
    position: relative;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

#footer .php-career-form input[type="file"]::file-selector-button {
    width: 160px;
    height: 48px;
    padding: 0 16px 0 44px;
    margin: 0 16px 0 0;
    color: transparent;
    cursor: pointer;
    background-color: var(--color-accent);
    background-image: url('../img/up.svg');
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color var(--transition-base);
}

#footer .php-career-form input[type="file"]::file-selector-button:hover {
    background-color: var(--color-accent-hover);
}

#footer .php-career-form input[type="file"]::file-selector-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

/* "Upload Resume" label over the button (native "Choose File" hidden via color: transparent) */
#footer .php-career-form input[type="file"]::before {
    content: "Upload Resume";
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
}

/* Icon over the left part of the button */
#footer .php-career-form input[type="file"]::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/up.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/*Left Side Buttons Start*/
.sticky-left-container {
    padding: 0;
    margin: 0;
    position: fixed;
    left: -158px;
    top: 130px;
    width: 200px;
    z-index: 99;
}

@media (max-width: 992px) {
    .sticky-left-container {
        left: -168px;
        top: auto;
        bottom: 100px;
    }
}

@media (max-width: 576px) {
    .sticky-left-container {
        display: none;
    }
}

.sticky-left li{
    list-style-type: none;
    background-color: none;
    color: #efefef;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    border-radius: 25px 25px 25px 0;
    -webkit-transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    cursor: pointer;
    opacity: .4
}
.sticky-left li a{
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: white;
}
.sticky-lift li a:hover{
    text-decoration: none;
    color: white;
}
.sticky-left li:hover{
    margin-right: -150px;
    border-radius: 25px 25px 25px 0;
    opacity: 1
}
.sticky-left li i{
    float: right;
    font-size: 32px;
    border-radius:50%;
    margin: 5px 5px;
    margin-left: 10px;
    opacity: 1;
}
.sticky-left li p{
    padding: 0px;
    float:right;
    margin: 0px;
    text-transform: uppercase;
    line-height: 43px;
}
/*Left Side Buttons End*/


.color-facebook{
    background: #4267B2;
}

.color-instagram{
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.color-whatsapp{
    background: #25D366;
}

.color-twitter{
    background: #1DA1F2;
}

.grecaptcha-badge{
    opacity: 0.5;
        z-index: 99
}


/*Left Side Buttons Start*/
.sticky-right-container {
    padding: 0;
    margin: 0;
    position: fixed;
    right: -128px;
    top: 130px;
    width: 200px;
    z-index: 99;
}

@media (max-width: 992px) {
    .sticky-right-container {
        right: -138px;
        top: auto;
        bottom: 100px;
    }
}

@media (max-width: 576px) {
    .sticky-right-container {
        display: none;
    }
}

.sticky-right li{
    list-style-type: none;
    background-color: none;
    color: #efefef;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    border-radius: 25px 25px 0px 25px;
    -webkit-transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    cursor: pointer;
    opacity: .4
}
.sticky-right li a{
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: white;
}
.sticky-right li a:hover{
    text-decoration: none;
    color: white;
}
.sticky-right li:hover{
    margin-left: -150px;
    border-radius: 25px 25px 0px 25px;
    opacity: 1
}
.sticky-right li i{
    float: left;
    font-size: 32px;
    border-radius:50%;
    margin: 5px 5px;
    margin-right: 10px;
    opacity: 1;
}
.sticky-right li p{
    padding: 0px;
    float:left;
    margin: 0px;
    text-transform: uppercase;
    line-height: 43px;
}
/*Left Side Buttons End*/

.justify{
    text-align: justify;
    padding-right: 25px;

    padding-left: 25px;
}