/* General Styling */

:root {
    --font-default: 'Poppins', sans-serif;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    --color-bg: #029b9b;
    --color-light: #ffffff;
    --color-dark: #222;
    --color-heading: #222;
    --hero-overlay-color: #000000;
    --menu-color: #ffffff;
    --theme-color: #029b9b;
    --border-color: #e2e2e2;
    --theme-color-dark: #f8f8f8;
    --text-color: #3a3a3a;
    --hero-text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #3a3a3a;
    --text-theme-color: #029b9b;
    --light-color: #ffffff;
    --color-default: #3a3a3a;
    --color-primary-hover: #029b9b;
    --color-secondary-hover: #0c6de0;
    --color-primary: #3a3a3a;
    --color-secondary: #424242;
    --color-start: #3a3a3a;
    --color-end: #3a3a3a;
    --hero-card-bg: rgb(228 227 223 / 17%);
    --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
    --menu-color-bg: #565656;
    --color-bg: #000000;
    --color-light: #000000;
    --color-dark: #ffffff;
    --color-heading: #029b9b;
    --hero-overlay-color: #000000;
    --menu-color: #ffffff;
    --theme-color: #000000;
    --border-color: #14929a;
    --theme-color-dark: #2c2c2c;
    --text-color: #ffffff;
    --hero-text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #565656;
    --text-theme-color: #14929a;
    --light-color: #000000;
    --color-primary-hover: #029b9b;
    --color-secondary-hover: #0c6de0;
    --color-default: #000000;
    --color-primary: #000000;
    --color-secondary: #000000;
    --color-start: #000000;
    --color-end: #000000;
    --hero-card-bg: rgb(0 0 0 / 83%);
    --box-shadow-color: rgb(20 146 154 / 49%);
}

body {
    font-family: var(--font-default);
    color: var(--text-color);
    background: var(--theme-color);
    transition: 0.5s background ease;
}

body.dark {
    --menu-color-bg: #ffffff;
    --color-bg: #000000;
    --color-light: #000000;
    --color-dark: #ffffff;
    --color-heading: #029b9b;
    --hero-overlay-color: #000000;
    --menu-color: #ffffff;
    --border-color: #029b9b;
    --theme-color-dark: #151515;
    --text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #565656;
    --text-theme-color: #029b9b;
    --light-color: #000000;
    --color-primary-hover: #029b9b;
    --color-secondary-hover: #0c6de0;
    --color-default: #424242;
    --color-primary: #424242;
    --color-secondary: #424242;
    --color-start: #000000;
    --color-end: #000000;
    --hero-card-bg: rgb(0 0 0 / 83%);
    --box-shadow-color: rgb(94 94 94 / 69%);
}

#darkmode-button {
    border-radius: 4px 0 0 4px;
    border: none;
    outline: none;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    position: absolute;
    right: 0px;
    top: 101px;
    background: var(--color-light);
    color: var(--theme-color);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

.toggle-container {
    position: relative;
}

.theme-btn {
    width: 6em;
    height: 6em;
    padding: 0.5em;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.theme-btn img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.theme-btn.light {
    display: none;
}

.dark .theme-btn.dark {
    display: none;
}

.dark .theme-btn.light {
    display: block;
}

.hide-on-mobile {
    display: block;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

section {
    padding: 100px 0;
    overflow: hidden;
}

.section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--light-color);
}

.section-grey {
    padding: 90px 0;
    overflow: hidden;
    background: var(--theme-color-dark);
}

.sections-bg {
    background-color: var(--theme-color-dark);
}

.section-header {
    text-align: center;
    padding-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    color: var(--theme-color);
}

.section-header p {
    margin-bottom: 0;
    color: #b8651d;
}

img {
    transition: 0.3s;
}

img:hover {
    transform: scale(1.1);
}

.fill-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px 30px 10px 10px;
    border: 0;
    transition: 0.3s;
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.fill-btn:hover {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    color: var(--text-white-color);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs .page-header {
    padding: 120px 0 60px 0;
    min-height: 20vh;
    background: url(../images/page-header-bg.png) center bottom;
    background-size: cover;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.breadcrumbs .page-header:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--light-color), var(--light-color));
    z-index: 0;
    opacity: 0.6;
}

.breadcrumbs .page-header h2 {
    color: var(--color-primary);
}

.breadcrumbs .page-header p {
    color: var(--menu-color);
}

.breadcrumbs nav {
    background-color: var(--theme-color);
    padding: 20px 0;
    margin-top: 90px;
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--color-default);
}

.breadcrumbs nav ol a {
    color: var(--text-white-color);
    transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
    text-decoration: underline;
}

.breadcrumbs nav ol li+li {
    padding-left: 10px;
    color: var(--text-white-color);
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary);
    content: "/";
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgb(16 16 16 / 80%);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #000000;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(48% - 3px);
    left: calc(48% - 3px);
    border: 2px solid #fff;
    border-color: var(--light-color) transparent var(--light-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
    .hide-on-mobile {
        display: none !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.topbar {
    background: #00796b;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

.topbar .contact-info i {
    font-style: normal;
    color: #fff;
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

@media (max-width: 575px) {
    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: 13px;
    }
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

.topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: #fff;
}

.page.header {
    background: #222;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
}

.header.sticked {
    position: fixed;
    background-color: white;
    top: 0;
    right: 0;
    left: 0;
    height: 90px;
    box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.1);
    /* Inner shadow */
}

.header .logo img {
    margin-left: -70px;
    max-height: 70px;
    margin-right: 6px;
}

.sticked .logo .logo-sticky {
    display: none;
}

.sticked.stikcy-menu .logo .logo {
    display: none;
}

.sticked.stikcy-menu .logo .logo-sticky {
    display: block;
}

.header.stikcy-menu {
    background: var(--light-color);
}

.header.stikcy-menu .logo h1 {
    color: var(--color-primary);
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    letter-spacing: 0.8px;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

.sticked-header-offset {
    margin-top: 0;
}

section {
    background: var(--light-color);
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navbar li {
        position: relative;
    }
    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: black;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .stikcy-menu .navbar a {
        color: var(--text-color);
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--text-theme-color);
    }
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: var(--light-color);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 12px;
    }
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 400;
        color: var(--text-color);
    }
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }
    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }
    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: var(--color-primary);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        color: rgb(255 255 255);
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }
    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }
    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        color: #fff;
        background: rgba(0, 131, 116, 0.8);
    }
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        background-color: var(--color-primary);
    }
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }
    .mobile-nav-show {
        color: var(--theme-color);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }
    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .navbar {
        right: 0;
    }
    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgb(0 0 0 / 80%);
        z-index: 9996;
    }
}


/* Hero Banner Buttons */

.btn-get-started {
    background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
    box-shadow: 0 6px 20px #029b9b70;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-get-started:hover {
    box-shadow: 0 6px 20px #029b9b70;
    color: #ffffff;
}

.btn-get-started:active {
    box-shadow: 0 6px 20px #029b9b70;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: 0;
}

.btn-get-started:hover::before {
    transform: scale(1);
}

.btn-get-started.mr-20 {
    margin-right: 1.25rem;
}

@media (max-width: 768px) {
    #hero .caption h2 {
        font-size: 2rem;
    }
    #hero .caption p {
        font-size: 1rem;
    }
    #hero .btn-get-started {
        font-size: 0.875rem;
        padding: 8px 20px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

#services {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-heading);
}

.section-header p {
    font-size: 1.125rem;
    color: #777;
}


/* Service Cards */

.service-card {
    position: relative;
    padding: 2rem;
    background-color: #f1e3e3;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}


/* Rotated Cards */


/* .card-rotated {
    transform: rotate(-4deg);
} */


/* .card-rotated-2 {
    transform: rotate(4deg);
} */

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn {
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-outline-warning {
    border: 2px solid #ffc107;
    color: #ffc107;
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    color: #fff;
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

.btn-outline-success {
    border: 2px solid #28a745;
    color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}

.btn-outline-info {
    border: 2px solid #17a2b8;
    color: #17a2b8;
}

.btn-outline-info:hover {
    background-color: #17a2b8;
    color: #fff;
}


/* Responsive */

@media (max-width: 992px) {
    .service-card {
        padding: 1.5rem;
    }
    .service-title {
        font-size: 1.3rem;
    }
    .service-description {
        font-size: 0.9rem;
    }
}

#services {
    position: relative;
    overflow: hidden;
}

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tech-pattern.jpg') center left;
    /* Replace with your pattern image */
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
    /* Ensures the pattern stays behind other content */
    opacity: 0.1;
    /* Adjust for a subtle effect */
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-section {
    background: url(../images/hero-bg.png) center left;
    background-size: cover;
    padding: 0px 0;
    border-radius: 0px;
    position: relative;
    background-attachment: fixed;
}

.footer-section:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    opacity: 0.8;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.copyright-text {
    margin-top: 30px;
}

.single-cta i {
    color: #c00113;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #c00113;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content .list {
    padding-left: 0;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-widget ul li,
.footer-widget ul li a {
    font-size: 14px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-white-color);
    line-height: 28px;
}

.footer-social-icon span {
    color: var(--theme-color);
    display: block;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
}

.facebook-bg {
    background: var(--color-primary);
}

.twitter-bg {
    background: var(--color-primary);
}

.google-bg {
    background: var(--color-primary);
}

.footer-widget-heading h3 {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    text-decoration: underline;
}

.footer-widget ul li a {
    color: var(--text-white-color);
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #e4e4e4;
    border: 1px solid #e4e4e4;
    color: #222222;
}

.subscribe-form button {
    position: absolute;
    right: -3px;
    background: transparent;
    border: 0;
    top: -8px;
}

.subscribe-form button i {
    color: #ffffff;
    font-size: 2rem;
    transform: rotate(-6deg);
}

.copyright-area {
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #b9b9b9;
}

.copyright-text p a {
    color: var(--theme-color);
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: var(--color-primary);
}

.footer-menu li a {
    font-size: 14px;
    color: #b9b9b9;
}

.footer-menu li a:hover {
    color: #000000;
}


/* Footer Section Styling */

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    max-width: 180px;
}

.footer-text p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.footer-social-icon {
    margin-top: 20px;
}

.footer-social-icon span {
    font-size: 16px;
    margin-right: 10px;
}

.footer-social-icon a {
    color: #fff;
    margin: 0 15px;
    font-size: 22px;
    transition: color 0.3s ease;
}

.footer-social-icon a:hover {
    color: #009688;
}

.footer-widget-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.footer-widget .list li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-widget .list li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget .list li a:hover {
    color: #009688;
}

.subscribe-form input[type="text"] {
    padding: 15px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #555;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    outline: none;
}

.subscribe-form button {
    background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
    border: none;
    padding: 15px 30px;
    /* border-radius: 30px; */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e48720;
}

.copyright-text {
    font-size: 14px;
    color: #b3b3b3;
}

.copyright-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #009688;
}


/* Floating Icons Animation */

.footer-social-icon a {
    animation: floatIcon 5s ease-in-out infinite;
}

.footer-social-icon a:nth-child(1) {
    animation-delay: 0s;
}

.footer-social-icon a:nth-child(2) {
    animation-delay: 1s;
}

.footer-social-icon a:nth-child(3) {
    animation-delay: 2s;
}

.footer-social-icon a:nth-child(4) {
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Footer Widget Columns - Responsive Design */

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 30px;
    }
    .footer-column {
        margin-bottom: 30px;
    }
    .subscribe-form {
        margin-bottom: 15px;
    }
}