
/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   01. IMPORT VENDOR
   02. KEYFRAMES ANIMATION
   03. GLOBAL VARIABLES
   04. BASE STYLES
   05. SECTION STYLES
   06. BASE CONTAINER
   07. BUTTON STYLES
   08. CARD STYLES
   09. IMAGE STYLES
   10. HEADING TYPOGRAPHY
   11. BANNER STYLES
   12. FORM STYLES
   13. COLOR UTILITY
   14. HEADER NAVIGATION
   15. SIDEBAR & OVERLAY
   16. ACHIEVEMENT / COUNTER
   17. ABOUT SECTION
   18. SERVICE SECTION
   19. APPOINTMENT SECTION
   20. TESTIMONIAL SECTION
   21. TEAM SECTION
   22. GALLERY SECTION
   23. BLOG / ARTICLE STYLES
   24. PROGRESS BAR / SKILL BAR
   25. ICON UTILITY
   26. LIST & ACCORDION COMPONENT
   27. CUSTOM SPACING / UTILITIES
========================================================================== */


/* 01. Import Vendor */

@import url('../webfonts/font-family-chakra-petch.css');
@import url('../webfonts/font-family-inter.css');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/animate.min.css');

/* 02. Keyframes Animation */

:root{
    --primary: #FFFFFF;
    --secondary: #000000;
    --text-color: #F4F4F4;
    --accent-color: #FF4D24;
    --accent-color-2: #616161;
    --accent-color-3: #111111;
    --accent-color-4: #54595F00;
    --accent-color-5: #11111169;
    --accent-color-6: #FFFFFF30;
    --accent-color-7: #00000099;
    --accent-color-8: #1D1D1D;
    --font-family-1: "Chakra Petch", sans-serif;
    --font-family-2: "Inter", sans-serif;
}


/* 03. Global Variable */

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

/* 04. Base Style */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font-family-2);
    color: var(--primary);
    background-color: var(--secondary);
}

h1{
    font-family: var(--font-family-1);
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
}

h2{
    font-family: var(--font-family-1);
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

h3{
    font-family: var(--font-family-1);
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

h4{
    font-family: var(--font-family-1);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

h5{
    font-family: var(--font-family-1);
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

h6{
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

h1, h2, h3, h4, h5, h6{
    margin: 0px;
}

p{
    color: var(--text-color);
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 0px;
}

button, a, .btn{
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: uppercase;
    text-decoration: none;
}

/* 05. Section Style */

.section{
    padding: 6em 1em 6em 1em;
}

.section-achievement{
    padding: 1em 1em 6em 1em;
}

/* 06. Base Container */

.hero-container{
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* 07. Button Style */

.btn{
    text-decoration: none;
    box-shadow: none;
    border-radius: 0px;
    outline: none;
    padding: 12px 32px 12px 32px;
    transform: scale(1);
    transition: all 0.3s;
}

.btn:hover{
    transform: scale(0.9);
}

.btn-accent{
    background-color: var(--accent-color);
    color: var(--primary);
    border: 1px solid var(--accent-color);
}

.btn-accent:hover{
    background-color: var(--accent-color);
    color: var(--primary);
    border: 1px solid var(--accent-color);
}

.btn-outline-accent{
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary);
}


.btn-outline-accent:hover{
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary);
}

/* 08. Card Style */

.card{
    border: none;
    border-radius: 0px;
}

.card-service{
    display: flex;
    flex-direction: column;
    gap: 0px 0px;
    border: 1px solid var(--accent-color-2);
    background-color: var(--accent-color-3);
    color: var(--primary);
}
.card-step {
    background-color: var(--accent-color-3);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--accent-color-6);
    padding: 0;
    z-index: 1;
}

.step-content {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    padding: 2em;
    position: relative;
    z-index: 2;
}

.card-appointment{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    background-color: var(--accent-color-3);
    color: var(--primary);
    border: 1px solid var(--accent-color-2);
    padding: 3em 3em 3em 3em;
    width: 100%;
    height: 100%;
}

.card-step .step-image {
    background: url('../images/about55.jpg') center/cover no-repeat;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    opacity: 0;
    transition: all 1.5s;
    z-index: 0;
}

.card-step.first-step {
    background: url('../images/about55.jpg') center/cover no-repeat;
    z-index: 0;
}

.card-step.first-step .step-image {
    background: none;
}

.card-step:hover .step-image {
    transform: scale(1.2);
    opacity: 1;
}

.card-step .step-image::before,
.card-step::before {
    content: '';
    background-color: var(--accent-color-7);
    opacity: 0.9;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.card-step .step-header{
    position: absolute;
    top: 0;
    left: 40px;
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 3em 1em 1em 1em;
    font-family: var(--font-family-1);
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    z-index: 2;
}

.card-chooseus{
    background-color: var(--accent-color-3);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    border: 1px solid var(--accent-color-2);
    padding: 6em 3em 6em 12.5em;
}

.card-contact-cta{
    align-self: flex-end;
    margin-left: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    background-color: var(--accent-color-5);
    color: var(--primary);
    padding: 4em 4em 4em 4em;
    border: 1px solid var(--accent-color-6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-faq{
    background-color: var(--accent-color-8);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    border: 1px solid var(--accent-color-2);
    padding: 6em 12.5em 6em 3em;
}

.card-contact-cta::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: inherit;
    background-color: inherit;
    z-index: -1;
}

.card-other-post{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 2em 2em 2em 2em;
    background-color: var(--accent-color-3);
    color: var(--primary);
}

.card-testimonial{
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color-3);
    color: var(--primary);
    border: 1px solid var(--accent-color-2);
}

.card-team{
    background-color: var(--accent-color-3);
    color: var(--primary);
    border: 1px solid var(--accent-color-2);
    padding: 2em 2em 2em 2em;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    min-height: 600px;
    z-index: 1;
}

.card-blog{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    background-color: var(--accent-color-3);
    color: var(--primary);
    padding: 20px 20px 20px 20px;
    border: 1px solid var(--accent-color-2);
    transition: all 0.3s;
}

.card-blog:hover{
    border: 1px solid var(--accent-color);
}

.footer-card{
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color-3);
    color: var(--primary);
    padding: 6em 1em 6em 1em;
    border: 1px solid var(--accent-color-2);
}

/* 09. Image Style */

.image-container{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.image-container img{
    border-radius: 0px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.service-image img{
    border: 1px solid var(--accent-color-2);
}

.about-img img{
    width: 100%;
}

.chooseus-image{
    position: relative;
    background-image: url('../images/imagefasq1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1em 1em 1em 1em;
    border: 1px solid var(--accent-color-2);
    max-width: 100%;
    width: auto;
    height: 100%;
    background-attachment: scroll;
}

.chooseus-image .spacer{
    height: 50px;
}

.team-image{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.team-image-overlay{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.5;
    z-index: 1;
    transition: all 0.5s;
}

.card-team:hover .team-image-overlay{
    opacity: 0.3;
}

.faq-image{
    position: relative;
    background-image: url('../images/imageschooseus.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1em 1em 1em 1em;
    border: 1px solid var(--accent-color-2);
    max-width: 100%;
    width: auto;
    height: 100%;
    background-attachment: scroll;
}

.faq-image .spacer{
    height: 50px;
}

.post-image img{
    width: 100%;
}

.testimonial-image{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: 100%;
}

.testimonial-image .spacer{
    height: 50px;
}

.testimonial-image.testimonial-variant-1{
    background-image: url('../images/testimonials3.jpg');
}

.testimonial-image.testimonial-variant-2{
    background-image: url('../images/testimonials1.jpg');
}

.testimonial-image.testimonial-variant-3{
    background-image: url('../images/testimonials4.jpg');
}

.testimonial-image.testimonial-variant-4{
    background-image: url('../images/testimonials2.jpg');
}

.contact-image{
    width: 100%;
    height: auto;
    border: 1px solid var(--accent-color-2);
}

.footer-logo{
    width: 50%;
}

/* 10. Heading Style */

.sub-heading-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0em 0em 0em 1em;
    border-style: solid;
    border-width: 0px 0px 0px 2px;
    border-color: var(--accent-color);
}

/* 11. Banner Style */

.banner-home{
    background-image: url('../images/homehero123.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 20em 1em 10em 1em;
    z-index: 1;
}

.banner-home::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(290deg, var(--accent-color-4) 52%, var(--secondary) 100%);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-content-container{
    width: 60%;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
}

.home-content-container p{
    max-width: 60%;
}

.banner-inner{
    background-image: url('../images/backgroundheader-page.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20em 1em 6em 1em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-inner::before{
    content: '';
    position: absolute;
    background-color: var(--accent-color-3);
    opacity: 0.7;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-notfound{
    background-image: url('../images/backgroundheader-page.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6em 1em 6em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-notfound::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(200deg, var(--accent-color-4) 0%, var(--secondary) 100%);
    opacity: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.post-cta-banner{
    background-image: url('../images/teamimage123.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--accent-color-2);
    position: relative;
    padding: 20em 2em 2em 2em;
    overflow: hidden;
    z-index: 1;
}

.post-cta-banner::before{
    content: '';
    position: absolute;
    background-color: var(--secondary);
    opacity: 0.5;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.post-cta-content{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: center;
    text-align: center;
}

.contact-cta-banner{
    background-attachment: fixed;
    background-image: url('../images/ctaIMAGES.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--accent-color-6);
    padding: 8em 1em 8em 1em;

}

/* 12. Form Style */

.form{
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
}

.form input,
.form textarea{
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    border-radius: 0px 0px 0px 0px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 15px 15px 15px;
    width: 100%;
}

.form input::placeholder,
.form textarea::placeholder{
    color: var(--accent-color-2);
}

.form button{
    width: 100%;
}

#successMessage-footer p,
#successMessage-footer i{
    color: var(--primary);
}
#errorMessage-footer p,
#errorMessage-footer i{
    color: var(--primary);
}

/* 13. Color Style */

.accent-color{
    color: var(--accent-color);
}

/* 14. Header Style */

.navbar-container{
    display: flex;
    flex-direction: column;
    padding: 1em 1em 1em 1em;
    margin-bottom: -14em;
    position: relative;
    z-index: 10;
}

.navbar{
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color-3);
    color: var(--primary);
    border: 1px solid var(--accent-color-2);
    padding: 1em 1em 1em 1em;
    border-radius: 0px 0px 0px 0px;
}

.navbar-nav-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px 20px;
    width: 100%;
}

.navbar-logo-container{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar-logo-container img{
    width: 35%;
}

.nav-link-container{
    width: 70%;
}

.navbar-cta-container{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.nav-link{
    color: var(--primary);
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4em;
    padding: 0px 15px 0px 15px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link.show{
    color: var(--accent-color) !important;
}

.dropdown-menu {
    background-color: var(--primary);
    border-radius: 0;
    border: none;
    padding: 0;
    overflow: hidden;
    margin-top: 1.125em !important;
    border-radius: 0px 0px 0px 0px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
}

.dropdown-item{
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1em;
    color: var(--secondary);
    transition: all 300ms;
    padding: 15px 15px 15px 15px;
}

.dropdown-item:hover,
.dropdown-item.active{
    background-color: var(--primary);
    color: var(--accent-color);
}

.dropdown-toggle::after {
    display: none !important;
}

.nav-btn{
    display: none;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--primary);
    border: none;
    outline: none;
}

/* 15. Sidebar Styles */

.sidebar-overlay{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--accent-color-7);
    transition: left 0.4s ease-in-out;
    z-index: 10;
}

.sidebar-overlay.active{
    left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--secondary);
    color: var(--primary);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0px 16px 0px 5px;
}

.sidebar.active{
    transform: translateX(300px);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
    width: 75%;
}

.close-btn {
    display: inline-block;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 8px 8px 8px 8px;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 18px;
    transition: all 300ms;
    border: none;
    outline: none;
}

.close-btn:hover{
    background-color: var(--primary);
    color: var(--accent-color);
}

.menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu li {
    padding: 10px 15px 10px 15px;
}

.menu a {
    color: var(--primary);
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.menu a:hover,
.menu a.active,
.menu a.focus {
    color: var(--accent-color);
}

.sidebar-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-dropdown-btn {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    padding: 3px 15px;
    border-radius: 24px;
    transition: transform 0.3s ease;

}
.sidebar-dropdown-btn:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color)
}

.sidebar-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
    max-height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.below-dropdown {
    transition: margin-top 0.1s ease-in-out;
    margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 5px;
}

/* 16. Achievement Style */

.achievement-container{
    margin-top: -60px;
    background-color: var(--accent-color-3);
    color: var(--primary);
    padding: 0em 4em 4em 4em;
    border: 1px solid var(--accent-color-2);
    position: relative;
    z-index: 1;
}

.spacer-achievement{
    height: 10px;
}

.achievement-icon{
    align-self: flex-start;
    padding: 3em 1.2em 1.2em 1.2em;
    background-color: var(--accent-color);
    color: var(--primary);
}

.achievement-icon i{
    font-size: 2rem;
}

/* 17. About Style */

.about-divider{
    border-bottom: 1px solid var(--accent-color-6);
    padding: 15px 0px 15px 0px;
}

.about-stat-container{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 5px 5px;
}

.about-stat,
.about-stat-suffix{
    font-family: var(--font-family-1);
    font-size: 4.75rem;
    font-weight: 800;
    line-height: 1em;
    -webkit-text-stroke-width: 0.3px;
    stroke-width: 0.3px;
    -webkit-text-stroke-color: var(--accent-color-2);
    stroke: var(--accent-color-2);
    color: var(--primary);
}

/* 18. Service Style */

.service-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    justify-content: space-between;
    padding: 0em 2em 0em 2em;
}

.service-icon{
    width: 20%;
    align-self: flex-start;
    padding: 3em 1.2em 1.2em 1.2em;
    background-color: var(--accent-color);
    color: var(--primary);
    margin: 0px 0px -20px 0px;
    position: relative;
    z-index: 2;
}

.service-tag{
    background-color: var(--accent-color-2);
    padding: 5px 10px 5px 10px;
    border: 1px solid var(--accent-color-6);
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4em;
}

.service-content{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 2em 2em 2em 2em;
}

/* 19. Appoitment Style */

.booking-step{
    display: flex;
    flex-direction: row;
    padding: 1em 1em 1em 1em;
    border: 1px solid var(--accent-color-2);
    box-shadow: -2px 0px 0px 0px var(--accent-color);;
}

.booking-text{
    color: var(--primary);
    font-family: var(--font-family-1);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}

/* 20. Testimonial Style */

.testimonial-content-container{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 3em 3em 3em 3em;
    position: relative;
    overflow: hidden;
}

.testimonial-star-container{
    display: flex;
    flex-direction: row;
    gap: 5px 5px;
    align-items: center;
    color: var(--accent-color);
}

.testimonial-icon{
    position: absolute;
    right: 40px;
    top: 1px;
    align-self: flex-end;
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 45px 15px 15px 15px;
    font-size: 40px;
}

.testimonial-quote{
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4em;
    font-style: italic;
}

/* 21. Team Style */

.team-card-header{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 44px;
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 2em 0.5em 1em 0.5em;
    z-index: 2;
}

.team-card-content{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    position: relative;
    z-index: 2;
}

/* 22. Gallery Section */

.gallery-filter {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    user-select: none;
    justify-content: center;
    text-align: center;
}

.gallery-tab {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1em;
    cursor: pointer;
    transition: color .3s;
}

.gallery-tab.active {
    color: var(--accent-color);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0px;
    display: block;
    transition: all 0.4s ease;
}

.gallery-item.hidden{
    display: none;
    pointer-events: none;
}

.gallery-item.fade-in {
    animation: fadeIn .4s ease;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 22. Contact Style */

.contact-info-container{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding-right: 4em;
}

.contact-info{
    display: flex;
    flex-direction: row;
    gap: 20px 20px;
    align-items: center;
    border: 1px solid var(--accent-color-2);
    box-shadow: -2px 0px 0px 0px var(--accent-color);
    padding: 1em 1em 1em 1em;
    color: var(--primary);
}

.contact-info i{
    font-size: 1.5rem;
}

.contact-info-text{
    font-family: var(--font-family-1);
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

.contact-location{
    width: 100;
    display: flex;
    flex-direction: column;
    gap: 0px 0px;
    align-self: center;
    align-items: center;
    border: 1px solid var(--accent-color-2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-heading{
    margin: 40px 0px -70px 0px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-button{
    position: absolute;
    left: 29%;
    width: 45%;
    bottom: 30px;
    z-index: 2;
    text-align: center;
    align-self: flex-start;
}

/* 23. Blog Style */

.blog-link{
    font-family: var(--font-family-1);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--primary);
    transition: all 0.3s;
}

.blog-link:hover{
    color: var(--accent-color);
}

.meta-blog-container{
    display: flex;
    flex-direction: row;
    gap: 5px 5px;
    align-items: center;
}

.meta-data{
    font-family: var(--font-family-2);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1em;
    color: var(--accent-color);
}

.blog-cta-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px 5px;
    color: var(--accent-color);
}

.blog-cta-title .cta-title{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.recent-blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-blog-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.recent-blog-item img {
    max-width: 100%;
    width: 40%;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 150/150;
}

.recent-blog-meta {
    font-family: var(--font-family-2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color-2);
    display: block;
    margin-bottom: 2px;
}

.recent-blog-heading {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-family-1);
}

.recent-blog-item:hover .recent-blog-heading {
    color: var(--accent-color);
    transition: 0.2s ease;
}

/* 24. Progress Bar Style */

.progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-title {
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    height: 15px;
    background-color: var(--primary);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    transition: width 1s ease;
    position: relative;
}

.progress-text {
    position: absolute;
    right: 8px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    pointer-events: none;
}

/* 25. Icon Sytle */

.contact-icon{
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 25px 25px 25px 25px;
    font-size: 2.188rem;
    display: flex;
    text-align: center;
    transition: all 0.3s;
}

.contact-icon:hover{
    background-color: var(--primary);
    color: var(--accent-color);
    transform: scale(0.9);
}

.social-team-icon{
    font-size: 1rem;
    color: var(--primary);
}

.footer-icon{
    font-size: 18px;
    color: var(--primary);
    transition:  all 0.3s;
}

.footer-icon:hover{
    color: var(--accent-color);
}

/* 26. List Style */

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    flex-direction: row;
    gap: 10px 10px;
    align-items: flex-start;
    padding: 5px 0px;
    color: var(--primary);
}

.check-list a {
    color: var(--primary);
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
    text-transform: capitalize;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.check-list li:hover::before{
    color: var(--accent-color);
}

/* 26. Accordion Style */

.accordion .accordion-item {
    background-color: transparent;
    border: none;
    color: var(--primary);
    outline: none;
}

.accordion .accordion-item .accordion-body {
    color: var(--text-color);
    font-family: var(--font-family-2);
    text-align: start;
    padding: 15px 15px 15px 15px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: transparent;
    outline: none;
    border-radius: 0px;
    font-family: var(--font-family-1);
    border: 1px solid var(--accent-color-2);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 10px 10px;
    justify-content: space-between;
    padding: 15px 15px 15px 15px;
    color: var(--primary);
}

.accordion-button::after {
    content: "";
    width: auto;
    height: auto;
    padding: 25px 16px;
    background-color: var(--accent-color);
    color: var(--primary);
    width: 19px;
    height: 19px;
    border-radius: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    flex-shrink: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"><path 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"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-arrow-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v10.793l3.146-3.147a.5.5 0 1 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 1 1 .708-.708L7.5 13.293V2.5A.5.5 0 0 1 8 2z"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
    border: 1px solid var(--primary);
    box-shadow: none;
    outline: none;
}

/* 27. Custom Spacing Style */

.gspace-0 { 
    gap: 0px 0px; 
}
.gspace-1 { 
    gap: 10px 10px; 
}
.gspace-2 { 
    gap: 20px 20px; 
}
.gspace-3 { 
    gap: 30px 30px; 
}
.gspace-4 { 
    gap: 40px 40px; 
}
.gspace-5 { 
    gap: 50px 50px; 
}
.gspace-100{
    gap: 100px 100px;
}
.gspace-x-0 { 
    column-gap: 0px; 
}
.gspace-x-1 { 
    column-gap: 10px; 
}
.gspace-x-2 { 
    column-gap: 20px; 
}
.gspace-x-3 { 
    column-gap: 30px; 
}
.gspace-x-4 { 
    column-gap: 40px; 
}
.gspace-x-5 { 
    column-gap: 50px; 
}
.gspace-x-100{
    column-gap: 100px;
}

.gspace-y-0 { 
    row-gap: 0px; 
}
.gspace-y-1 { 
    row-gap: 10px; 
}
.gspace-y-2 { 
    row-gap: 20px; 
}
.gspace-y-3 { 
    row-gap: 30px; 
}
.gspace-y-4 { 
    row-gap: 40px; 
}
.gspace-y-5 { 
    row-gap: 50px; 
}
.gspace-y-100{
    row-gap: 100%;
}


/* Grid spacing (row-gap & column-gap) */

.grid-spacer-0{
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

.grid-spacer-1{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.grid-spacer-2{
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.grid-spacer-3{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.grid-spacer-4{
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.grid-spacer-5{
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.grid-spacer-100{
    --bs-gutter-x: 100px;
    --bs-gutter-y: 100px;
}

/* Grid spacing (column-gap) */

.grid-spacer-x-0 {
    --bs-gutter-x: 0px;
}
.grid-spacer-x-1 {
    --bs-gutter-x: 10px;
}
.grid-spacer-x-2 {
    --bs-gutter-x: 20px;
}
.grid-spacer-x-3 {
    --bs-gutter-x: 30px;
}
.grid-spacer-x-4 {
    --bs-gutter-x: 40px;
}
.grid-spacer-x-5 {
    --bs-gutter-x: 50px;
}
.grid-spacer-x-100{
    --bs-gutter-x: 100px
}

/* Grid spacing (row-gap) */

.grid-spacer-y-0 {
    --bs-gutter-y: 0px;
}
.grid-spacer-y-1 {
    --bs-gutter-y: 10px;
}
.grid-spacer-y-2 {
    --bs-gutter-y: 20px;
}
.grid-spacer-y-3 {
    --bs-gutter-y: 30px;
}
.grid-spacer-y-4 {
    --bs-gutter-y: 40px;
}
.grid-spacer-y-5 {
    --bs-gutter-y: 50px;
}
.grid-spacer-y-100{
    --bg-gutter-y: 100px
}