:root {
    --default-font:
        "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #000000;
    --accent-color: #0075da;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;

    --user-gradient: linear-gradient(90deg,
            var(--nav-hover-color),
            var(--default-color));
}

:root {
    --nav-color: #000000;
    --nav-hover-color: #0075da;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #000000;
    --nav-dropdown-hover-color: #0075da;
}

.light-background {
    --background-color: #f7f5f2;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #ffffff;
    --default-color: #223040;
    --heading-color: #ca2e2a;
    --surface-color: #223040;
    --contrast-color: #223040;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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

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);
    font-weight: 600;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.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 Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.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;
    bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

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

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title p {
    color: var(--default-color);
    margin: 0;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-color), var(--default-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Sticky Social Icons
--------------------------------------------------------------*/

.sticky-icon {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 210px;
}

.sticky-icon a {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(150px);
    margin: 4px 0;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    border-radius: 30px 0 0 30px;
    text-transform: capitalize;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sticky-icon a:hover {
    transform: translateX(0);
}

.sticky-icon a i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.5s ease;
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

.Facebook {
    background: #1877f2;
}

.Youtube {
    background: #ff0000;
}

.Linkedin {
    background: #0a66c2;
}

.Twitter {
    background: #1da1f2;
}

.Instagram {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
}

.Google {
    background: #db4437;
}

.Enquary {
    background: var(--accent-color);
}

.Whatsapp {
    background: #25d366;
}

.Facebook i {
    color: #1877f2;
}

.Linkedin i {
    color: #0a66c2;
}

.Youtube i {
    color: #ff0000;
}

.Twitter i {
    color: #1da1f2;
}

.Instagram i {
    color: #e1306c;
}

.Google i {
    color: #db4437;
}

.Enquary i {
    color: var(--accent-color);
}

.Whatsapp i {
    color: #25d366;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #1e88e5;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#myBtn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .sticky-icon {
        width: auto;
    }

    .sticky-icon a {
        transform: translateX(0px);
        font-size: 10px;
        padding: 10px;
    }

    .sticky-icon a span {
        display: none;
    }

    .sticky-icon a i {
        width: 25px;
        font-size: 14px;
        height: 25px;
        min-width: 25px;
    }
}


/* =======================
  Globle HEADER BASE
======================= */
.header .navbar {
    background: color-mix(in srgb, var(--background-color) 92%, transparent);
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    z-index: 997;
    transition: all 0.3s ease;
}


.header .navbar.header-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background:
        color-mix(in srgb, var(--background-color) 98%, transparent);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.header .navbar-nav .nav-link {
    color: var(--nav-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.header .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--nav-hover-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: var(--nav-hover-color);
}

.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .nav-item.dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    margin-top: 10px;
    padding: 10px 0;
    border: none;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transition: all 0.25s ease;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    font-size: 14px;
    padding: 10px 18px;
    font-weight: 500;
    color: var(--default-color);
    position: relative;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg,
            rgba(13, 110, 253, 0.08),
            rgba(111, 66, 193, 0.08));
    color: var(--nav-hover-color);
    padding-left: 22px;
}

.navbar .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--nav-hover-color);
    transition: height 0.3s ease;
}

.navbar .dropdown-item:hover::before {
    height: 60%;
}

/* =======================
   RIGHT SIDE
======================= */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.phone-btn {
    /* background: linear-gradient(135deg,
      var(--accent-color),
      var(--default-color)); */
    padding: 0;
    color: var(--default-color);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1ebe5d);
}

.nav-btn:hover {
    color: var(--contrast-color);
}

.nav-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}

/* .nav-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.nav-btn:hover::after {
    left: 120%;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */

.nav-btn:hover i {
    transform: rotate(10deg) scale(1.15);
}

@media (max-width: 991px) {


    .navbar .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .navbar .dropdown-item {
        padding-left: 0;
    }

    .navbar .dropdown-item:hover {
        padding-left: 10px;
    }

    .nav-right {
        gap: 5px;
        align-items: center;
    }

    .nav-right .nav-btn {
        padding: 5px 10px;
        border-radius: 8px;
        width: 100%;
    }

        .nav-right .nav-btn.phone-btn {
        background: linear-gradient(135deg, var(--accent-color), var(--default-color));
        color: var(--contrast-color);
    }
}





/*Enquiry Modal*/
#quick_enquiry .modal-content {
    border: none;
    position: relative;
    padding: 0 !important;
    font-size: 14px;
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

#quick_enquiry .modal-header {
    padding: 0;
    border: none;
}

#quick_enquiry .btn-close {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 0px;
    opacity: 1;
}

#quick_enquiry .btn-close:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.modal {
    background: #282828d4;
    z-index: 999999 !important;
}


#quick_enquiry .modal-body {
    padding: 20px;
    height: 100%;
    color: var(--default-color);
}

#quick_enquiry .modal-body.color-1 {
    background: var(--background-color);
}

#quick_enquiry .modal-body .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}


#quick_enquiry .modal-info {
    background: var(--accent-color);
    padding: 20px;
    height: 100%;
    width: 100%;
}

#quick_enquiry .modal-info .info-content {
    color: #333;
}

#quick_enquiry .modal-info .info-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

#quick_enquiry .modal-info .info-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddddd42;
    color: var(--contrast-color);
}

#quick_enquiry .modal-info .info-features li i {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#quick_enquiry .modal-info .info-features li:last-child {
    border-bottom: none;
}

#quick_enquiry .modal-info .info-section {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--default-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#quick_enquiry .modal-info .info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#quick_enquiry .modal-info .info-section i {
    font-size: 24px;
    color: var(--default-color);
    margin-right: 12px;
    flex-shrink: 0;
}

#quick_enquiry .modal-info .info-section div {
    flex: 1;
}

#quick_enquiry .modal-info .info-section h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

#quick_enquiry .modal-info .info-section p {
    margin: 0;
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
}

#quick_enquiry .modal-info .mobile-info .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    color: #fff;
    gap: 10px;
}

#quick_enquiry .modal-info .mobile-info .divider::before,
#quick_enquiry .modal-info .mobile-info .divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--contrast-color);
}

#quick_enquiry .modal-info .mobile-info .divider span {
    padding: 2px 20px;
    background-color: var(--background-color);
    color: var(--default-color);
    font-weight: 600;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 14px;
}


#quick_enquiry .modal-info .mobile-info p {
    margin: 0px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--contrast-color);
}

#quick_enquiry .modal-info .mobile-info a {
    color: var(--contrast-color);
    text-decoration: none;
    transition: color 0.3s;
}

#quick_enquiry .modal-info .mobile-info a .icon {
    margin-right: 5px;
}

@media (max-width: 480px) {
    #quick_enquiry .modal-info .mobile-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    #quick_enquiry .modal-info .mobile-info strong {
        width: auto;
    }
}



.addressblock h4,
.contact-form h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* .modal-address {
    padding: 30px;
    height: 50%;
} */

/* .addresslist {
    padding: 15px 0;
    color: var(--default-color);
    border-top: 1px solid;
} */

.addresslist:first-child {
    border-top: none;
    padding-top: 0;
}

.addresslist h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.addresslist p a {
    color: var(--default-color);
}

.addresslist i {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-align: center;
    font-size: 18px;
}

.addresslist p {
    font-size: 14px;
    margin-bottom: 0px;
}

#quick_enquiry .heading {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

#quick_enquiry .form-control,
#quick_enquiry .form-select {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

#quick_enquiry .form-control:focus {
    outline: none;
    box-shadow: none;
}

#quick_enquiry textarea.form-control {
    padding: 20px;
    resize: none;
    height: inherit;
}

#quick_enquiry .form-outline .form-control.form-control-lg:focus~.form-label,
#quick_enquiry .form-outline .form-control.form-control-lg.active~.form-label {
    background: #fff;
    transform: translateY(-1.09rem) translateY(0.1rem) scale(0.7);
}

#quick_enquiry .btn-secondary {
    height: 52px;
    color: var(--contrast-color);
    background-color: var(--accent-color);
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

#quick_enquiry .btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.swiper.queryswiper {
    height: 100%;
    width: 100%;
}

.swiper.queryswiper .query-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#quick_enquiry .reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#quick_enquiry .review-box {
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#quick_enquiry .star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    font-size: 10px;
}

#quick_enquiry .star-rating i {
    color: #ffb400;
}

#quick_enquiry .logoimg img {
    max-height: 20px;
    margin-bottom: 0;
}

#quick_enquiry .heading-title a {
    font-size: 10px;
    font-weight: 600;
    color: #1c3faa;
    text-decoration: none;
}

#quick_enquiry .heading-title a:hover {
    text-decoration: underline;
}





/* ============================================================
   CONTACT PARTNER SECTION (Base Desktop Styles)
============================================================ */
.contact-partner {
    background-color: var(--default-color);
    color: var(--contrast-color);
}

.contact-partner-content .partner-content-title {
    padding: 7px 9px 6px;
    background-color: var(--contrast-color);
    border-radius: 5px;
    color: var(--default-color);
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
    margin-bottom: 50px;
}

.partner-heading-title {
    font-size: 48px;
    display: block;
    color: #DEE0FF;
}


/* ============================================================
   GET STARTED SECTION
============================================================ */
.get-started {
    overflow: initial;
    background-image: linear-gradient(90deg, #E9E6EF 0%, #AFC6E6 100%);
}

.get-started .partner-content {
    background-color: transparent;
}

.get-started .partner-content p,
.get-started .partner-content h3 {
    font-size: 20px;
    line-height: 30px;
}

.get-started .partner-content h3 {
    font-weight: 700;
}

.get-started .partner-content h3 a {
    color: var(--default-color);
}

.partnertitle {
    margin: 30px 0;
}

/* LIST ITEMS */
.partner-list-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-list-items .partner-list-item+.partner-list-item {
    padding-top: 10px;
}

.partner-list-items .partner-list-item .partner-list-icon {
    margin-right: 10px;
}

/* FORM BOX */
.get-started .php-email-form {
    background: var(--contrast-color);
    padding: 30px;
    height: 100%;
}

.get-started .php-email-form h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.get-started .php-email-form .Middleborder {
    padding: 10px 0;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.get-started .php-email-form .Middleborder i {
    background: var(--contrast-color);
    padding: 0 10px;
}

.get-started .php-email-form .Middleborder .border-line {
    margin: -14px -30px 0 -30px;
    background: #dedede;
    min-height: 1px;
}

.get-started .php-email-form p {
    font-size: 15px;
    margin-bottom: 20px;
}

/* FORM POSITION */
.getform {
    margin-top: -250px;
}

/* ICON BOXES */
.get-started .icon-box {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    border-right: 1px solid #ccc;
}

.get-started .icon-box:last-child {
    border-right: none;
}

.get-started .icon-box h4 {
    font-size: 25px;
    margin: 0 20px 0 0;
    color: var(--default-color);
    font-weight: 700;
}

.get-started .icon-box p {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}

.theme-btn {
    color: #fff;
    padding: 10px 19px;
    text-transform: capitalize;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: none;
    background: transparent linear-gradient(15deg, #0075da 0%, var(--accent-color) 100%) 0% 0% no-repeat padding-box !important;
    z-index: 1;
    display: inline-block;
}

.form-error {
    position: absolute;
    font-size: .875rem;
    color: #dc4c64;
}

/*intl*/
.iti {
    width: 100%;
}

#phone {
    padding-left: 50px;
    border: 1px solid #ccc;
    width: 100%;
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #ccc;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer .footer-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--heading-color);
}

.footer .footer-box p {
    margin: 5px 0;
    color: var(--default-color);
}

.footer .social-links {
    display: flex;
    gap: 10px;
}

.footer .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

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

.footer .footer-bottom {
    padding: 20px 0;
}

.footer .footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer .footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer .footer-links a {
    color: var(--default-color);
    text-decoration: none;
    transition: 0.3s;
}

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

/* Copyright */
.footer .copyright {
    color: var(--default-color);
    font-size: 13px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .footer .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer .footer-links {
        justify-content: center;
    }
}