:root {
    --default-font: "Roboto", system-ui, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
    font-display: swap
}

:root {
    --background-color: #ffffff;
    --default-color: #666666;
    --heading-color: #333333;
    --accent-color: rgb(214, 100, 100);
    --surface-color: #ffffff;
    --contrast-color: #ffffff
}

:root {
    --nav-color: #ffffff;
    --nav-hover-color: rgb(214, 100, 100);
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #666666;
    --nav-dropdown-hover-color: rgb(214, 100, 100)
}

.contact-button {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    animation: fadeInUp 1s both .4s
}

#contactForm {
    background-color: black;
    margin: 0 auto;
    max-width: 800px;
    padding: 50px;
    border-radius: 25px;
    position: relative;
    margin-top: 100px;
    display: block
}

.contact-button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

  /* Video Box Styling */
  .video-box {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
  }
  
  /* Responsive Video Styling */
  .video-box video {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }



.modal1 {
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease
}

.modal1:target {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, .5)
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.close {
    position: absolute;
    right: 5px;
    top: 0;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color .3s ease
}

.close:hover {
    color: red
}

label {
    display: block;
    margin: 10px 0 5px
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    margin-left: 10px
}

button[type="submit"]:hover {
    background-color: #45a049
}

.close-button {
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer
}

.close-button:hover {
    background-color: #da190b
}

.light-background {
    --background-color: #f7f7f7;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff
}

:root {
    scroll-behavior: smooth
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    scroll-behavior: smooth;
    min-height: 100vh;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: .3s;
    outline: none
}

a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all .5s;
    z-index: 997
}

.header .logo {
    line-height: 1
}

.header .logo img {
    max-height: 32px;
    margin-right: 8px
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 8px
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, .1)
}

.scrolled .header {
    --background-color: rgba(0, 0, 0, .9)
}

.navmenu li a {
    display: inline-block;
    position: relative;
    color: grey
}

.navmenu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: transform .25s ease-out
}

.navmenu li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .navmenu li {
        position: relative
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 13px;
        font-family: var(--nav-font);
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }

    .navmenu li:last-child a {
        padding-right: 0
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color)
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu .dropdown ul li {
        min-width: 200px
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color)
    }

    .navmenu .dropdown ul a i {
        font-size: 12px
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

@media (max-width:1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color)
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg)
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all .5s ease-in-out
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, .1)
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, .03)
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, .8);
        transition: .3s
    }

    .mobile-nav-active .navmenu>ul {
        display: block
    }
}

.container .card .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c73df
}

.container .card .icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #fff
}

.container .card .slide {
    width: 300px;
    height: 200px;
    transition: .5s
}

.container .card .slide.slide1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: .7s;
    transform: translateY(100px)
}

.container .card:hover .slide.slide1 {
    transform: translateY(0)
}

.container .card .slide.slide2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: .8s;
    transform: translateY(-100px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.container .card:hover .slide.slide2 {
    transform: translateY(0)
}

.container .card .slide.slide2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    bottom: 15px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c73df
}

.container .card .slide.slide2 .content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #414141
}

.container .card .slide.slide2 .content h3 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 24px;
    text-align: center;
    color: #414141
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative
}

.footer-map {
    position: relative;
    height: 450px;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    border-radius: 4px;
    overflow: hidden;
    float: right
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

@media (max-width:768px) {
    .footer-map {
        height: 250px;
        margin-top: 20px;
        float: none;
        margin-left: 0
    }
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color)
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font)
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: .3s
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1
}

.footer .footer-links ul a:hover {
    color: var(--accent-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: .3s
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color)
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color)
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: .3s;
    border-radius: 0 4px 4px 0
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .copyright p {
    margin-bottom: 0
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all .6s ease-out
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%)
}

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 85px;
    overflow: clip
}

@media (max-width:1199px) {

    section,
    .section {
        scroll-margin-top: 66px
    }
}

.clients {
    padding: 20px 0
}

.container h6 {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #888
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: .3s;
    opacity: .5;
    filter: grayscale(100)
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
    cursor: pointer
}

@media (max-width:640px) {
    .clients .client-logo img {
        padding: 20px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.section-title p {
    margin-bottom: 0
}

.hero {
    padding: 0
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden
}

.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0
}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3
}

.hero .carousel-container a {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px
}

.hero .carousel-container p {
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px
}

.hero .carousel-container a:hover {
    background-color: rgb(228, 180, 180)
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 70px;
    font-weight: 700;
    animation: fadeInDown 1s both
}

@media (max-width:768px) {
    .d-none {
        display: none !important
    }

    body {
        font-size: 16px
    }

    .hero .carousel-container h2 {
        font-size: 28px !important;
        margin-bottom: 15px
    }

    .hero .carousel-container p {
        font-size: 16px !important;
        margin-bottom: 10px;
        padding: 5px 10px !important
    }

    .hero .carousel-container a {
        padding: 8px 15px !important;
        font-size: 14px
    }
}

@media (max-width:576px) {
    .hero .carousel-container h2 {
        font-size: 24px !important
    }

    .hero .carousel-container p {
        font-size: 14px !important
    }
}

@media (min-width:1024px) {

    .hero h2,
    .hero p {
        max-width: 60%
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    animation: fadeInUp 1s both .4s
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: .3s;
    opacity: .5
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: .5
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: .9
}

@media (min-width:1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1
}

.hero .carousel-indicators {
    list-style: none
}

.hero .carousel-indicators li {
    cursor: pointer
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.why-choose-us {
    padding: 60px 0
}

.why-choose-us .content {
    padding: 30px;
    background: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
}

.why-choose-us .content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color)
}

.why-choose-us .content p {
    margin-bottom: 25px
}

.why-choose-us .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 50px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.why-choose-us .content .read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: .3s
}

.why-choose-us .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px)
}

.why-choose-us .content .read-more:hover i {
    margin-left: 10px
}

.why-choose-us .icon-boxes {
    padding-top: 30px
}

.why-choose-us .icon-box {
    padding: 30px;
    background: var(--surface-color);
    border-radius: 8px;
    transition: .3s;
    height: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
}

.why-choose-us .icon-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
    transition: .3s
}

.why-choose-us .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color)
}

.why-choose-us .icon-box p {
    margin-bottom: 0
}

.why-choose-us .icon-box:hover {
    transform: translateY(-10px)
}

.why-choose-us .icon-box:hover i {
    transform: scale(1.1)
}

.featured-services {
    padding: 40px 0 10px 0
}

.featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 30px
}

.featured-services .service-item .icon {
    margin-right: 20px
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 40px;
    line-height: 0;
    transition: .3s
}

.featured-services .service-item:hover .icon i {
    color: var(--accent-color)
}

.featured-services .service-item .title {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    transition: .3s
}

.featured-services .service-item .description {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 10px
}

.featured-services .service-item .readmore {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: .3s;
    font-weight: 700;
    font-size: 14px
}

.featured-services .service-item .readmore i {
    margin-left: 8px
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
    color: var(--accent-color)
}

.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700
}

.about .content ul {
    list-style: none;
    padding: 0
}

.about .content ul li {
    padding-bottom: 10px
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color)
}

.about .content p:last-child {
    margin-bottom: 0
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: .3s
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px
}

.about .content .read-more:hover i {
    margin-left: 10px
}

.about .about-images img {
    border-radius: 10px
}

.stats .stats-item {
    padding: 30px;
    width: 100%
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--accent-color);
    font-weight: 700
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600
}

.services .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: .3s
}

.services .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color)
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px
}

.services .service-item .title a {
    color: var(--heading-color)
}

.services .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0
}

.services .service-item:hover {
    border-color: var(--accent-color)
}

.services .service-item:hover .title a {
    color: var(--accent-color)
}

.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0)
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2
}

.call-to-action .container {
    position: relative;
    z-index: 3
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color)
}

.call-to-action p {
    color: var(--default-color)
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: .5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color)
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color)
}


.testimonials .section-header {
    margin-bottom: 40px
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden
}

.testimonials .testimonial-item {
    text-align: center
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 10px solid var(--background-color);
    margin: 0 auto;
    filter: blur(5px)
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1)
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto
}

.testimonials .swiper-wrapper {
    height: auto
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%)
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color)
}

@media (min-width:992px) {
    .testimonials .testimonial-item p {
        width: 80%
    }
}

.bi.bi-telephone.hov {
    position: relative;
    cursor: pointer
}

.bi.bi-telephone.hov:hover::after {
    content: "Call us now";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    margin-left: 10px;
    white-space: nowrap
}

.team {
    --default-color: #ffffff
}

.team .member {
    text-align: center;
    position: relative;
    height: 100%;
    border-radius: .5rem;
    border: 2px solid wheat
}

.member img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: .5rem;
    transition: .2s
}

@media (max-width:768px) {
    .member img {
        height: 750px
    }
}

.member .overlay-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
    color: wheat;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    z-index: 2;
    border: 2px solid wheat;
    background-color: rgba(0, 0, 0, .5);
    padding: 10px;
    -webkit-text-stroke-width: .2px;
    -webkit-text-stroke-color: rgb(31, 31, 27);
    margin: 0;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out;
    transform-origin: bottom;
    opacity: 1
}

.member:hover .overlay-text {
    transform: translateZ(100%) scale(.8);
    opacity: 0;
    overflow: hidden
}

.member .overlay-text span {
    font-style: italic;
    display: block;
    font-size: 13px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px
}

.team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0;
    transition: .2s
}

.team .member .member-info-content {
    margin-top: -50px;
    transition: margin .2s
}

.team .member:hover .member-info {
    background: rgba(0, 0, 0, .6);
    opacity: 1;
    transition: .4s;
    overflow: hidden
}

.team .member h4 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-top: 20px;
    font-size: 18px
}

.team .member h6 {
    color: white;
    font-size: 10px
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px
}

.team .member .social {
    margin-top: 50px
}

.team .member .social a {
    transition: .3s;
    color: var(--default-color)
}

.team .member .social a:hover {
    color: var(--accent-color)
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color)
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s ease-in-out;
    visibility: hidden;
    opacity: 0
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: .3s;
    cursor: pointer
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color)
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color)
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color)
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all .3s ease-in-out
}

.contact .info-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px
}

@media (min-width:992px) {
    .contact .info-item.info-item-borders {
        border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%)
    }
}

.contact .php-email-form {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 30px;
    margin-top: 30px
}

@media (max-width:575px) {
    .contact .php-email-form {
        padding: 20px
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color)
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%)
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: .4s;
    border-radius: 50px
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}



.sectionPrivacy {
  
    padding-top: calc(2rem + 50px); /* Added navbar height (50px) to existing padding */
    padding: 2rem;
    margin: 4rem auto 2rem;
    max-width: 1000px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;

}

.sectionPrivacy p {
font-size: 14px;
padding-top: 20px;
margin-left: 20px;
margin-right: 20px;
}

.sectionPrivacy strong, li {
margin-left: 20px;
}