/* ========================================================================== */
/*  Allflow HTML Template CSS*/
/*  ========================================================================== */

/*
==========================================================================
TABLE OF CONTENTS
==========================================================================

1. Vendor CSS
2. Variables
3. Base
4. Typography
5. Button Component
6. Navbar Component
7. Sidebar Component
8. Hero Section
9. Feature Component
10. Newsletter Form Component
11. Service Component
12. Process Component
13. Team Component
14. FAQ Component
15. Brand Component
16. Portfolio Component
17. Counter Component
18. Testimonial Component
19. Blog Component
20. Card Background Component
21. Pricing Card Component
22. Contact Card Component
23. Why Choose Us Component
24. Appointment Component
25. About Component
26. Underline Component
27. Testimonial Component
28. Icon Component
29. Footer Component
30. Scroll To Top Button
31. Preloader
32. Responsive Mobile

==========================================================================
*/

/* ========================================================================== */
/* 1. Vendor CSS */
/*  ========================================================================== */

@import url('vendor/manrope-font-family.css');
@import url('vendor/roboto-font-family.css');
@import url('vendor/bootstrap.min.css');
@import url('vendor/fontawesome.css');
@import url('vendor/brands.css');
@import url('vendor/regular.css');
@import url('vendor/solid.css');
@import url('vendor/swiper-bundle.min.css');
@import url('vendor/animate.min.css');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

/* ========================================================================== */
/* 2. Variables */
/*  ========================================================================== */

:root{
    --primary: #FEFEFE;
    --secondary: #000000;
    --text-color: #4A4A4A;
    --accent-color-1: #0F1B91; 
    --accent-color-2: #FFFFFF;
    --accent-primary: #0A115E;
    --accent-color-4: #F1F1F1;
    --accent-color-transparent: #FFFFFF00;
    --accent-border: #B9B9B9;
    --global-border-radius-1: 10px 10px 10px 10px;
    --global-border-radius-2: 15px 15px 15px 15px;
    --font-1: "Manrope", sans-serif;
    --font-2: "Roboto", sans-serif;
    
    /* Font Size Variables */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 32px;
    --fs-4xl: 36px;
    --fs-5xl: 40px;
    --fs-6xl: 48px;
    --fs-7xl: 56px;
    --fs-8xl: 60px;
    --fs-9xl: 64px;
    --fs-10xl: 9em;
    --fs-11xl: 3.75rem;
    --fs-12xl: 2.75em;
    --fs-13xl: 2.25em;
    --fs-14xl: 2em;
    --fs-15xl: 1em;
    --fs-16xl: 0.8rem;
    --fs-17xl: 16.8px;
    --fs-18xl: 15.008px;
    --fs-19xl: 21.008px;
    --fs-20xl: 32.8px;
    --fs-21xl: 25px;
    
    /* Font Weight Variables */
    --fw-normal: normal;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-bolder: bolder;
    --fw-black: 900;
    
    /* Line Height Variables */
    --lh-tight: 0.8em;
    --lh-normal: 1em;
    --lh-relaxed: 1.2em;
    --lh-loose: 1.5em;
    --lh-extra-loose: 1.8em;
}

/* ========================================================================== */
/* 2. Keyframes */
/*  ========================================================================== */

@keyframes load {
    to {
        --progress: var(var(--value))
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        
        transform-origin: center;
        border-width: 13px;
    }
}

/* ========================================================================== */
/* 4. Base Element CSS */
/*  ========================================================================== */

body{
    font-family: var(--font-2);
    color: var(--secondary);
}

h1 {
    font-size: var(--fs-6xl);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-relaxed);
}

h2{
    font-size: var(--fs-5xl);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-relaxed);
}

h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-medium);
    line-height: var(--lh-relaxed);
}

h4 {
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    line-height: var(--lh-relaxed);
}

h5 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
}

h6 {
    font-size: var(--fs-18xl);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-relaxed);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

button, a{
    font-size: var(--fs-sm);
    color: var(--secondary);
    text-decoration: none;
    font-family: var(--font-1);
}

p {
    font-size: var(--fs-base);
    font-family: var(--font-2);
    margin-bottom: 0;
    color: var(--text-color);
}

ul{
    list-style: none;
}

/* ========================================================================== */
/* 5. Section, Layout, Component */
/*  ========================================================================== */

.section {
    padding: 4em 1em 4em 1em;
    background-size: cover;
    background-position: center;
}

.hero-container {
    max-width: 1340px;
    margin-right: auto;
    margin-left: auto;
}

.appointment-container {
    overflow: visible;
    max-width: 1340px;
    margin-right: auto;
    margin-left: auto;
}

.appointment-section {
    padding: 4em 1em 4em 1em;
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.banner-section{
    padding: 0em 1em 0em 1em;
    position: relative;
    background-color: var(--accent-color-2);
}

.section-wrapper{
    padding: 1em;
    position: relative;
    background-color: var(--accent-color-2);
    overflow: hidden;
}

.section404{
    padding: 10em 0em 10em 0em;
}

.text-404{
    font-size: var(--fs-10xl);
    font-family: var(--font-1);
    color: var(--accent-color-1);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-normal);
}

/* ========================================================================== */
/* 6. Utility & Colors Component */
/*  ========================================================================== */

.bg-accent-color-1 {
    background-color: var(--accent-color-1);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-accent-color-4 {
    background-color: var(--accent-color-2);
}

.read-more {
    color: var(--secondary);
    transition: all 0.5s;
}

.read-more:hover {
    color: var(--accent-color-1);
}

.bg-text-color {
    background-color: var(--text-color);
}

.accent-color-1 {
    color: var(--accent-color-1);
}

.accent-secondary {
    color: var(--secondary);
}

.accent-primary {
    color: var(--primary);
}

.font-1{
    font-family: var(--font-1);
}
.font-2{
    font-family: var(--font-2);
}

/* ========================================================================== */
/* 7. Form Component */
/*  ========================================================================== */

.form input,
.form textarea,
.form select {
    background-color: var(--accent-color-2);
    border: solid 1px var(--accent-border);
    border-radius: 30px;
    color: var(--secondary);
    outline: none;
    font-family: var(--font-2);
    padding: 10px 26px;
    font-size: var(--fs-15xl);
    width: 100%;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border: 1px solid var(--accent-color-1);
    box-shadow: none;
    color: var(--secondary);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--text-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--text-color);
    font-family: var(--font-2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color);
    font-family: var(--font-2);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
}

.form label{
    font-size: var(--fs-17xl);
    font-weight: var(--fw-regular);
    text-align: start;
    color: var(--text-color);
}

.form .form-select {
    color: var(--primary);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

input.error-border,
textarea.error-border{
    border-color: var(--accent-color-1);
}

.error-text {
    color: var(--accent-color-1);
    font-size: var(--fs-base);
    margin-bottom: 10px;
  }

.form .submit_form {
    display: inline-block;
    text-decoration: none;
    border: none;
    transition: all 0.5s;
    background-color: var(--accent-color-1);
    color: white;
    border-radius: 50%;
}

.form .submit_form:hover {
    background-color: var(--secondary);
    color: var(--accent-color-1);
}

.alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid var(--primary);
  }

.success {
    color: var(--primary);
}
  
.error {
    color: var(--primary);
}  
  
.check-icon,
.cross-icon {
    font-size: var(--fs-xl);
    margin-right: 10px;
}

.hidden{
    display: none;
}

/* ========================================================================== */
/* 8. Header Component */
/*  ========================================================================== */

header{
    background-color: var(--primary);
    position: relative;
    z-index: 3;
}

.navbar {
    position: relative;
    display: flex;
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 1em 0em 1em 0em;
    gap: 2em;
}

.nav-btn{
    display: none;
    padding: 8px 16px;
    background-color: var(--accent-color-1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.nav-btn:hover{
    background-color: var(--accent-primary);
}

.navbar-nav .nav-link:focus {
    color: var(--secondary);
}

.nav-link-wrapper{
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    font-family: var(--font-2);
    color: var(--secondary);
    letter-spacing: 1.2px;
    padding: 15px 30px 15px 30px;
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
    color: var(--accent-color-1) !important;
}

.navbar-toggler {
    border: none;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: var(--accent-color-1);
    color: var(--primary);
}

.navbar-toggler-icon {
    color: var(--accent-color-1);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    width: 220px;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    z-index: 3;
}

.dropdown-item {
    padding: 20px 20px 20px 20px;
    color: var(--secondary);
    font-family: var(--font-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 1.2px;
    line-height: var(--lh-normal);
}

.dropdown-item.active {
    color: var(--secondary);
    background-color: transparent;
}

.dropdown-item:hover {
    background-color: var(--accent-color-1);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color-1);
}

.dropdown-toggle::after {
    display: none !important;
}

/* ========================================================================== */
/* 9. Sidebar Component */
/*  ========================================================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100%;
    background: var(--primary);
    color: var(--secondary);
    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(350px);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
    width: 100%;
}

.close-btn {
    display: inline-block;
    justify-content: center;
    background-color: var(--accent-color-1);
    border: none;
    border-radius: 8px 8px 8px 8px;
    color: var(--primary);
    position: relative;
    font-size: var(--fs-base);
    cursor: pointer;
    padding: 8px 18px;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 0px;
}

.menu a {
    color: var(--secondary);
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    text-transform: capitalize;
}

.menu a:hover,
.menu a.active,
.menu a.focus {
    color: var(--accent-color-1);
    background-color: var(--primary);
}

.sidebar-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-dropdown-btn {
    background: none;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: var(--fs-sm);
    cursor: pointer;
    padding: 0px 15px;
    border-radius: 24px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.sidebar-dropdown-btn:hover {
    color: var(--accent-color-1);
    border: 1px solid var(--accent-color-1)
}

.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: 210px;
    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;
}

/* ========================================================================== */
/* 10. Newsletter Form Component */
/*  ========================================================================== */

#newsletterForm {
    display: flex;
    gap: 8px;
    width: 100%;
}

#newsletterForm input {
    font-size: var(--fs-base);
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: var(--fw-regular);
    color: #000000;
}

#newsletterForm .error-text {
    color: #e63946;
    font-size: var(--fs-sm);
    margin-top: 4px;
}

#newsletterForm .hidden {
    display: none;
}

#newsletterForm button {
    background-color: var(--accent-color-1);
    color: var(--primary);
    padding: 10px 16px;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-base);
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

/* ========================================================================== */
/* 11. Button Component */
/*  ========================================================================== */

.btn{
    display: inline-block;
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    text-align: center;
    vertical-align: middle;
    padding: 14px 26px;
    border-radius: 30px !important;
    transition: all 0.15s ease-in-out;
    border-radius: 0;
    line-height: var(--lh-normal);
    letter-spacing: 1.2px;
    font-family: var(--font-2);
}

.btn-accent-1{
    background-color: var(--accent-color-1);
    color: white;
    transition: all 0.5s;
}

.btn-accent-2{
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.5s;
}

.btn-outline-accent-1{
    background-color: transparent;
    color: white;
    border: 1px solid var(--accent-color-1);
}

.btn-outline-accent-2{
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-accent-1:hover{
    background-color: var(--accent-primary);
    color: var(--primary);
}

.btn-accent-2:hover{
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-outline-accent-2:hover{
    background-color: var(--accent-primary);
    color: var(--primary);
}

.tab-content{
    padding: 1.5em;
}

/* ========================================================================== */
/* 12. Banner Component */
/*  ========================================================================== */

.banner-img-1{
    background-image: url('../image/a-action-appliance-repairs.png');
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 6em 1em 6em 1em;
    min-height: 900px;
    border-radius: var(--global-border-radius-1);
    overflow: hidden;
    z-index: 1;
}

.banner-img-1::before{
    content: "";
    background-image: linear-gradient(90deg, var(--primary) 0%, var(--accent-color-transparent) 50%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 0;
}

.banner-img-2{
    background-image: url('../image/dishwasher-repair.jpg');
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6em 1em 6em 1em;
    border-radius: var(--global-border-radius-2);
    overflow: hidden;
    z-index: 1;
}

.banner-img-2::before{
    content: '';
    position: absolute;
    background-color: var(--secondary);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 0;
}

.contactus-bg{
    background-image: url('../image/appliance-repair-dallas-texas.jpg');
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 8em 1em;
    border-radius: var(--global-border-radius-1);
    overflow: hidden;
    z-index: 1;
}

.contactus-bg::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(90deg, var(--secondary) 0%, var(--accent-color-transparent) 100%);
    opacity: 0.5 ;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.contactus-bg.small-banner{
    background-image: url('../image/male-plumber-hands-repairing-pipe-under-sink-2023-11-27-05-30-57-utc_result-1024x683.webp');
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 2em 2em;
    border-radius: var(--global-border-radius-1);
    overflow: hidden;
}

.contactus-bg.small-banner::before{
    content: '';
    position: absolute;
    background-color: var(--secondary);
    opacity: 0.5 ;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* ========================================================================== */
/* 13. Space, Heading, Logo Component */
/*  ========================================================================== */


.space-header{
    display: block;
    height: 150px;
}

.banner-heading{
    width: 50%;
}

.banner-heading h1{
    font-size: var(--fs-8xl) !important;
}

.logo-container{
    width: 200px;
}

/* ========================================================================== */
/* 14. Overlay Component */
/*  ========================================================================== */

.overlay{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(51, 51, 51, .5);
    transition: left 0.4s ease-in-out;
    z-index: 4;
}

.overlay.active{
    left: 0;
}

.banner-overlay-2{
    position: absolute;
    background-color: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,0,0,.35),transparent 75%);
    transition: opacity 0.3s ease;
    opacity: 1;
}

.blog-image:hover .blog-overlay{
    opacity: 0;
}

/* ========================================================================== */
/* 15. Swiper Component */
/*  ========================================================================== */

.swiper-slide {
    padding: 0.5rem;
}

/* ========================================================================== */
/* 16. Rating Box Component */
/*  ========================================================================== */

.rating-box{
    display: flex;
    background-color: var(--accent-color-1);
    min-height: 200px;
    width: 200px;
    transform: rotateZ(45deg);
    border-radius: var(--global-border-radius-2);
    margin-top: -150px;
    padding: 2em;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.rating-box-content{
    transform: rotateZ(-45deg);
}

.rating-box-content span{
    font-size: var(--fs-6xl);
    color: var(--primary);
    font-weight: var(--fw-medium);
}

.rating-box:hover{
    transform: rotateZ(45deg);
}

/* ========================================================================== */
/* 17. Banner Icon Component */
/*  ========================================================================== */

.banner-icon-container{
    position: absolute;
    bottom: 100px;
}

.banner-icon{
    align-items: center;
    padding: 5px 15px;
    background-color: var(--primary);
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    gap: 1em;
    color: var(--text-color);
}

.banner-icon i{
    font-size: var(--fs-2xl);
}

/* ========================================================================== */
/* 18. Card Component */
/*  ========================================================================== */

.card{
    display: flex;
    border-radius: var(--global-border-radius-2);
}

/* ========================================================================== */
/* 19. Service Card Component */
/*  ========================================================================== */

.card-service{
    background-color: var(--accent-color-4);
    border: 1px solid var(--accent-color-4);
    transition: all 0.3s ease;
    height: 100%;
}

.service-content{
    padding: 8em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: start;
    text-align: start;
}

.service-content .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--accent-color-1);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px 0px rgba(14.999999999999998, 26.999999999999957, 145, 0.2901960784313726);
}
  
.service-content .icon svg {
   width: 50%;
   height: 50%;
   fill: var(--primary);
}
  
.card-service:hover .icon {
   background-color: var(--primary);
   box-shadow: 0px 0px 15px 0px rgba(254, 254, 254, 0.2901960784313726);
}
  
.card-service:hover .icon svg {
   fill: var(--accent-color-1);
}

.card-service:hover{
    background-color: var(--accent-color-1);
}

.card-service:hover h3,
.card-service:hover p{
    color: var(--primary);
}

.card-layout{
    position: relative;
    background-color: var(--accent-color-4);
    overflow: hidden;
    border: none;
}

/* ========================================================================== */
/* 20. Blog Component */
/*  ========================================================================== */

.card-blog{
    position: relative;
    background-color: var(--accent-color-4);
    overflow: hidden;
    border: none;
    height: 100%;
}

.card-blog .card-body{
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 40px 30px;
    text-align: start;
}

.card-blog .card_footer{
    display: flex;
    flex-direction: row;
    border-top: 1px solid var(--accent-border);
    gap: 1em;
    padding: 15px 30px;
    color: #858585;
    font-size: 12px;
}

.blog-container{
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================================== */
/* 21. Card Background Component */
/*  ========================================================================== */

.card-bg-accent-2{
    background-color: var(--secondary);
    color: var(--primary);
    padding: 2em;
    border-radius: var(--global-border-radius-2);
}

/* ========================================================================== */
/* 22. Pricing Card Component */
/*  ========================================================================== */

.card-pricing{
    padding: 2em;
}

/* ========================================================================== */
/* 23. Contact Card Component */
/*  ========================================================================== */

.contact-card{
    display: flex;
    flex-direction: row;
    padding: 20px;
    border: 1px solid var(--accent-border);
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1em;
}

.contact-card span{
    font-weight: var(--fw-medium);
}

/* ========================================================================== */
/* 24. Why Choose Us Component */
/*  ========================================================================== */

.whychoose-img{
    position: relative;
    width: 800px;
    max-width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
}

.whychooseus-details{
    display: flex;
    flex-direction: column;
    padding: 3em 4em 3em 2em;
    gap: 1em;
}

/* ========================================================================== */
/* 25. Appointment Component */
/*  ========================================================================== */

.appointment-layout{
    position: relative;
    margin-left: auto;
    margin-right: 1em;
    z-index: 1;
    width: 45%;
}

.card-appointment{
    padding: 2em;
    margin: -25em 0em 0em 0em;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
}

/* ========================================================================== */
/* 26. About Component */
/*  ========================================================================== */

.card-about{
    padding: 20px;
    border: 1px solid var(--accent-border);
    border-radius: var(--global-border-radius-1);
    width: 100%;
    height: 100%;
}

.about-counter-container{
    background-color: var(--accent-color-1);
    color: var(--primary);
    padding: 18px;
    border-radius: var(--global-border-radius-1);
}

.about-counter-container span{
    font-size: var(--fs-9xl);
    font-family: var(--font-1);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-relaxed);
}
.about-counter-container i{
    font-size: var(--fs-7xl);
}


.about-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 20px;
    z-index: 3;
    gap: 1em;
}

.about-img{
    max-width: 100%;
    height: auto;
    aspect-ratio: auto 800 / 800;
    border-radius: var(--global-border-radius-1);
    z-index: 1;
}

/* ========================================================================== */
/* 27. Underline Component */
/*  ========================================================================== */

.underline-1{
    border-bottom: 2px solid var(--accent-color-2) !important;
    border-radius: var(--global-border-radius-1);
}

.underline-2{
    border-bottom: 2px solid var(--accent-color-1) !important;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0px 0px 0px;
}

.underline-3{
    border-bottom: 1px solid var(--accent-border);
    width: 100%;
}

/* ========================================================================== */
/* 28. Testimonial Component */
/*  ========================================================================== */

.card-testimonial{
    border: 1px solid var(--accent-color-4);
    padding: 2em;
    height: 100%;
    border-radius: var(--global-border-radius-2);
}

.card-testimonial span{
    font-size: var(--fs-xs);
    color: var(--accent-color-1);
}

.testimonial-person{
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========================================================================== */
/* 29. Icon Component */
/*  ========================================================================== */

.icon-container{
    background-color: var(--primary);
    padding: 12px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    top: 16px;
    right: 16px;
    position: absolute;
}

.icon-box {
    background-color: var(--accent-color-1);
    color: var(--secondary);
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.icon-container i{
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.icon-container:hover i{
    transform: rotate(45deg);
}

.rotate45{
    transform: rotate(-45deg);
}
.icon-box-2{
    background-color: var(--primary);
    color: var(--accent-color-1);
    font-size: 24px;
    padding: 16px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: end;
    justify-content: end;
    text-align: end;
}

.info-box{
    background-color: var(--primary);
    color: var(--accent-color-1);
    font-size: 18px;
    padding: 16px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: end;
    justify-content: end;
    text-align: end;
}

.icon-box-2.rotate45{
    transform: rotate(-45deg);
}

.stars{
    color: #f0ad4e;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social-item {
    aspect-ratio: 1/1;
    height: 32px;
    width: 32px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-2);
    border-radius: 50%;
    background-color: var(--accent-color-1);
    text-decoration: none;
}

.social-item-2{
    background-color: var(--primary);
    color: var(--accent-color-1);
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.social-item-2:hover{
    background-color: var(--accent-color-4);
}

.social-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.social-team{
    display: flex;
    gap: 1em;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.social-item:hover{
    background-color: var(--accent-primary);
}

.custom-container{
    width: 70%;
    text-align: center;
}

/* ========================================================================== */
/* 30. Team Component */
/*  ========================================================================== */

.team-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5em;
}

.team-details p{
    font-weight: var(--fw-medium);
}

/* ========================================================================== */
/* 31. Counter Component */
/*  ========================================================================== */

.counter-container{
    padding: 4em 1em 4em 1em;
    background-color: var(--accent-color-1);
    border-radius: var(--global-border-radius-1);
}

.counter-box{
    padding: 2em;
    background-color: var(--primary);
    border-radius: var(--global-border-radius-1);
    text-align: center;
}

.counter-text{
    text-align: center;
    color: var(--secondary);
}

.counter-box span{
    font-size: var(--fs-9xl);
    font-family: var(--font-1);
    color: var(--accent-color-1);
    font-weight: var(--fw-semibold);
    align-content: center;
    line-height: var(--lh-relaxed);
}

/* ========================================================================== */
/* 32. Cheveron List Component */
/*  ========================================================================== */

.chevron-list {
    list-style: none;
    padding: 0;
}

.chevron-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.chevron-list a {
    color: var(--primary);
    font-size: var(--fs-base);
}

.chevron-list li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: var(--fw-black);
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: var(--fs-sm);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--text-color);
}
.check-list a {
    color: var(--secondary);
    font-size: var(--fs-base);
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: var(--fw-black);
    position: absolute;
    left: 0;
    color: var(--accent-color-1);
    font-size: var(--fs-sm);
}

/* ========================================================================== */
/* 33. Cost Detail Component */
/*  ========================================================================== */

.cost-detail-1{
    display: flex;
    flex-direction: row;
    background-color: var(--secondary);
    padding: 2em;
    border: 1px solid var(--secondary);
    border-radius: var(--global-border-radius-2);
}

.cost-detail-2{
    display: flex;
    flex-direction: row;
    background-color: var(--accent-color-1);
    padding: 2em;
    border: 1px solid var(--accent-color-1);
    border-radius: var(--global-border-radius-2);
}

/* ========================================================================== */
/* 34. Pricing List Component */
/*  ========================================================================== */


.pricing-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list-2{
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li{
    display: flex;
    align-items: center;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.pricing-list li:not(:last-child){
    border-bottom: 1px solid var(--accent-border) ;
}

.pricing-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: var(--fw-bolder);
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: var(--fs-sm);
}

.pricing-list-2 li{
    display: flex;
    align-items: center;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.pricing-list-2 li:not(:last-child){
    border-bottom: 1px solid var(--accent-border) ;
}

.pricing-list-2 li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: var(--fw-black);
    position: absolute;
    left: 0;
    color: var(--accent-color-1);
    font-size: var(--fs-sm);
}

/* ========================================================================== */
/* 35. Info List Component */
/*  ========================================================================== */

.info-list{
    padding: 0;
}

/* ========================================================================== */
/* 36. Image Wrapper Component */
/*  ========================================================================== */


.image-wrapper{
    padding: 10px 0px 0px 10px;
    border-radius: var(--global-border-radius-1);
    margin: 0em 0em 0em -4em;
    z-index: 2;
    background-color: var(--accent-color-2);
}

.image-container{
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
}

.image-container img{
    border-radius: var(--global-border-radius-2);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

/* ========================================================================== */
/* 37. Portfolio Component */
/*  ========================================================================== */

.portfolio-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

.portfolio-container img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--global-border-radius-1);
}

.portfolio-details{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 400px;
    height: 100%;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 700ms;
    padding: 2em 6em 2em 2em;
    transform: translate(-315px, 315px);
    overflow: hidden;
}

.portfolio-details:hover{
    transform: translate(0,0);
}

/* ========================================================================== */
/* 38. Video & Request Loader Component */
/*  ========================================================================== */

.request-loader {
    position: relative;
    height: 70px;
    border-radius: 50% !important;
    border: solid 1px var(--secondary);
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-1);
    font-size: 25px;
    aspect-ratio: 1/1;
    transition: all 0.3s ease-in-out;
}

.request-loader:hover {
    border: solid 2px var(--accent-color-1);
    color: var(--secondary);
    background-color: var(--accent-color-1);
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color-1);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%; 
    height: 80vh;
}

/* ========================================================================== */
/* 39. Detail List Component */
/*  ========================================================================== */

.detail-list{
    color: var(--primary);
    transition: all 0.3s ease;
}

.detail-list:hover{
    color: var(--accent-color-1);
}

.small-description{
    color: var(--text-color);
    font-size: var(--fs-16xl);
}

.faq-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-left: 2.5em;
    gap: 2em;
}

.faq-button-wrapper{
    display: flex;
    flex-direction: column;
}

.faq-header{
    background-color: var(--accent-color-4);
    color: var(--secondary);
    padding: 12px 24px;
    border-radius: 30px;
}

.faq-content{
    padding: 16px 48px;
}

.accordion .accordion-item {
    background-color: transparent                                                   ;
    border: none;
    outline: none;
    border-radius: 30px;
}

.accordion .accordion-item .accordion-body {
    color: var(--text-color);
    font-family: var(--font-1);
}

.accordion-button:focus {
    box-shadow: none;
    color: var(--primary);
}

.accordion .accordion-button {
    background-color: var(--primary);
    border: none;
    outline: none;
    border-radius: 30px !important;
    font-family: var(--font-2);
    font-size: var(--fs-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 12px 24px;
    color: var(--secondary);
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23414260" 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) {
    color: var(--text-color);
    font-weight: 500;
    background-color: var(--accent-color-1);
    border: none;
    box-shadow: none;
    border: none;
    color: var(--primary);
    outline: none;
}

/* ========================================================================== */
/* 40. Maps Component */
/*  ========================================================================== */

.maps{
    width: 100%;
    min-height: 100%;
}

/* ========================================================================== */
/* 41. Service List Component */
/*  ========================================================================== */

.service-list {
    width: 100%;
    color: white;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 10px 5px;
}

.service-list a {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease-in-out;
    font-size: var(--fs-base);
    font-weight: normal;
}

/* ========================================================================== */
/* 42. Animate Box Component */
/*  ========================================================================== */

.animate-box {
    opacity: 0;
}

.animated.zoomInRotate{
    animation-name: zoomInRotate;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.text-container{
    width: 50%;
    align-self: center;
    text-align: center;
}

/* ========================================================================== */
/* 43. Footer Component */
/*  ========================================================================== */

.footer{
    border-radius: var(--global-border-radius-1);
}

.footer-list{
    list-style: none;
    padding-left: 0;
}

.footer-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    margin-bottom: 0.5em;
    color: var(--accent-color-1);
}

.footer-list a{
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.2s;
    font-family: var(--font-2);
}

.footer-list a:hover{
    color: var(--accent-color-1);
}

/* ========================================================================== */
/* 44. Tablet Responsive */
/*  ========================================================================== */

@media screen and (max-width: 1024px){
    h1{
        font-size: var(--fs-4xl);
    }
    h2{
        font-size: var(--fs-20xl);
    }
    h3 {
        font-size: var(--fs-19xl);
    }
    h4{
        font-size: var(--fs-xl);
    }
    h5{
        font-size: var(--fs-17xl);
    }
    h6{
        font-size: var(--fs-base);
    }

    button, a{
        font-size: var(--fs-sm);
    }

    .navbar{
        background-color: var(--primary);
        position: relative;
    }

    .navbar-nav{
        display: none;
    }

    .nav-btn{
        display: block;
    }

    .nav-link-wrapper{
        margin-right: 0;
        margin-left: auto;
        padding-right: 4.5em;
    }

    .appointment-layout{
        position: relative;
        margin-right: auto;
        width: 90%;
    }
    .about-counter-container span{
        font-size: var(--fs-12xl);
    }
    .card-appointment{
        margin-top: -23em;
    }

    .banner-icon-container{
        position: relative;
        padding-top: 12em;
    }

    .logo-container{
        max-width: 180px;
    }
    .nav-link{
        font-size: var(--fs-base);
    }
    .dropdown-item {
        padding: 15px 30px;
        font-size: var(--fs-base);
    }
    .logo{
        max-width: 80%;
    }

    .event-banner{
        width: 100%;
    }
    .counter-box span{
        font-size: var(--fs-12xl);
    }
    .banner-heading{
        width: 70%;
    }

    .banner-heading h1{
        font-size: var(--fs-4xl) !important;
    }
    .rating-box-content span{
        font-size: var(--fs-4xl);
    }
    .faq-wrapper{
        margin: 0;
    }

    .number-box{
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .text-container{
        width: 70%;
    }

    .tab-content{
        padding: 0.5em;
    }
}

/* ========================================================================== */
/* 45. Mobile Responsive */
/*  ========================================================================== */

@media screen and (max-width: 767px){
    h1{
        font-size: var(--fs-3xl);
    }
    h2{
        font-size: var(--fs-4xl);
    }
    h6{
        font-size: var(--fs-sm);
    }
    .banner-img-1{
        background-position: left;
    }
    .appointment-section {
        padding: 2em 1em 2em 1em;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }
    .appointment-container{
        padding: 1em 1em 1em 1em;
        overflow: hidden;
    }
    .nav-link-wrapper{
        padding: 0;
    }
    .navbar .social-container{
        display: none;
    }
    .event-image{
        width: 100%;
    }
    .overlay-avatar{
        width: 85%
    }
    .rating-box-content span{
        font-size: var(--fs-3xl);
    }
    .about-wrapper{
        padding: 20px 0px 0px 0px;
    }
    .banner-heading{
        width: 100%;
    }
    .banner-heading h1{
        font-size: var(--fs-4xl) !important;
    }
    .banner-icon-container{
        position: relative;
        padding-top: 150px;
    }
    .about-counter-container span{
        font-size: var(--fs-13xl);
    }
    .text-container{
        width: 100%;
    }
    .blog-image{
        height: 180px;
    }
    .appointment-layout{
        position: relative;
        margin-right: auto;
        width: 100%;
    }
    .card-appointment{
        margin-top: 0em;
    }
    .whychoose-img{
        height: 300px;
    }
    .whychooseus-details{
        padding-left: 1em;
        padding-right: 1em;
    }
    .rating-box-content span{
        font-size: var(--fs-14xl);
    }
    .maps{
        width: 100%;
        height: 300px;
    }
    .blog-container{
        max-width: 100%;
    }
}