
.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: #5b3dcc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-circle {
  width: 30px;
  height: 30px;
  border: 2px solid #c3b7ef;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, border 0.2s ease;
}

.logo {
    width: 205px;
}

/* ---------------------- Header (START) --------------------------- */

header {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    color: #fff;
}

header > div:first-child {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header > div:first-child .bars {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

header > div:first-child nav > ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

header > div:first-child nav > ul > li {
    margin: 0 15px;
}

header > div:first-child a {
    color: #fff;
    font-weight: 500;
    padding: 6px 10px;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    font-size: 19px;
    text-decoration: none;

    &:hover {
        background-color: #ffffff;
        color: var(--primary-color);
    }
}




header nav .dropdown {
    position: relative;
}

header nav .dropdown .fa-chevron-down {
    font-size: 16px;
    margin-left: 3px;
    transition: .5s;
}

header nav .dropdown:hover > ul {
    display: block;
}

header nav .dropdown:hover .fa-chevron-down {
    transform: translateY(4px);
}

header nav .dropdown ul {
    background-color: #fff;
    position: absolute;
    width: 16rem;
    list-style-type: none;
    padding: 0;
    z-index: 5;
    top: 115%;
    border-radius: 8px;
    display: none;
    /* border: 1px solid #000; */
}

header nav .dropdown ul li a {
    color: var(--primary-color);
    display: inline-block;
    padding: 13px 10px;
    font-size: 16px;
    border-radius: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;

    &:hover {
        background-color: #000;
        color: #fff;
    }
}



header > div:first-child .right {
    display: flex;
    align-items: center;
    gap: 20px;
}

header > div:first-child .right .get-quote-btn {
    text-decoration: none;
    background-color: #c6f806;
    color: #000;
    border: none;
    padding: 12px 25px;
    margin-left: 10px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;

    &:hover {
        background-color: #000;
        color: #fff;
    }
}



/* header .menu  {
    color: #000;
} */

header .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    color: #000;
    width: 80vw;
    height: 100vh;
    padding: 20px;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

header .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: none;
}

header .menu .menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

header .menu .links .link-head {
    border-bottom: 1px solid #b9b9b9;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu .links .link-head a {
    text-decoration: none;
    color: #000;
}

header .menu .links .link-body {
    display: flex;
    flex-direction: column;
    display: none;
}

header .menu .links .link-body a {
    padding: 8px 16px !important;
    display: block;
    border-bottom: 1px solid #b9b9b9;
    border-radius: 0;
    text-decoration: none;
    color: #000;
}

.menu .contact-info .icons {
    color: var(--primary-color) !important;
}

.menu .contact-info span {
    font-size: 14px;
}

.menu .footer {
    margin-top: 20px;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.menu .footer a {
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #000;
    padding: 8px;
    border-radius: 50%;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ---------------------- Header (END) --------------------------- */



/* ---------------------- Footer (START) --------------------------- */

footer {
    background-color: #18185e;
    color: #fff;
    padding: 140px 90px 100px;
    position: relative;
}

footer .footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/home/cta-bg.jpg);
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    padding: 0 30px;
    height: 200px;
    border-radius: 20px;
}

footer .footer-card img {
    /* width: 200px; */
    height: 300px;
    position: relative;
    top: -50px;
}

footer .footer-card h2 {
    width: 350px;
}

footer .footer-card button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer .footer-card button:hover {
    background-color: #000;
    color: #fff;
}



footer .footer-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* justify-content: space-between;
    align-items: center; */
}

footer .footer-section .logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-section .logo-section a {
    color: #a3a3bf;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #a3a3bf;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

footer .footer-section .logo-section a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

footer .footer-copyright {
    /* display: flex; */
    background-color: var(--primary-color);
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

footer .footer-copyright .arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50%;
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 3px solid #fff;

}



@media (max-width: 1024px) {
    header > div:first-child .bars {
        display: block;
    }
    header nav {
        display: none;
    }

    header .right .get-quote-btn {
        display: none;
    }

    
    /* --------------------------------------------------------------- */

    footer .footer-card {
        top: -20%;
        flex-direction: column;
        padding: 20px 0;
        justify-content: center;
        gap: 10px;
    }

    footer .footer-card img {
        display: none;
    }

    footer .footer-card h2 {
        width: 100%;
        text-align: center;
    }

    footer .footer-section {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    /* --------------------------------------------------------------- */

    footer {
        padding: 120px 30px 130px;
    }
    footer .footer-card {
        top: -10%;
        
    }

    footer .footer-section {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .footer-copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}


@media (max-width: 425px) {

    header {
        padding: 20px;
    }

    header .logo {
        width: 170px;
    }

    /* --------------------------------------------------------------- */

    footer .footer-copyright .arrow {
        right: 10px;
        left: unset;
        transform: unset;
        top: -100%;
    }
}