@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat Alternates', sans-serif;
    font-family: 'Outfit', sans-serif;
    background-color: #d0dae933 !important;
    overflow: inherit !important;

}

:root {
    --primary: #006efe;
    --secondary: #30d1be;
    --light: #fff;
    --dark: #000;
    --button: linear-gradient(126deg, #2872d1, #35dbb7);
    --header: linear-gradient(#011230, #1071b6);
}

.btn-primary {
    padding: 13px 32px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    background: var(--button);
}

.side-menu-btn {
    position: fixed;
    top: 70%;
    left: -55px;
    background: var(--button);
    color: #fff;
    padding: 11px 33px;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 1;
    transition: background 0.3s ease;
    font-size: 22px;
    gap: 15px;
    display: flex;
    align-items: center;
}
 

.side-menu-btn:hover {
    background: var(--button);
}

.container {
    max-width: 1250px;
}

.header-banner {
    overflow: hidden;
}

.animated-text {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
}

.heading,
.leftheading {
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-align: start;
    color: var(--dark);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.heading strong,
.leftheading strong {
    font-size: 35px;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/*--------------------------*/
/*Cursor base*/
/*--------------------------*/

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background 0.3s, box-shadow 0.3s, border 0.3s;
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    animation: cursor-glow 3s infinite alternate ease-in-out,
        cursor-pulse 1.5s infinite alternate ease-in-out;
    box-shadow: 0 0 20px rgba(0, 110, 254, 0.7),
        0 0 40px rgba(48, 209, 190, 0.6);
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--light);
    box-shadow: 0 0 25px rgba(48, 209, 190, 1),
        0 0 50px rgba(0, 110, 254, 0.9);
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes cursor-glow {
    0% {
        background-position: left top;
    }

    50% {
        background-position: right center;
    }

    100% {
        background-position: left bottom;
    }
}

@keyframes cursor-pulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 110, 254, 0.6),
            0 0 30px rgba(48, 209, 190, 0.4);
    }

    to {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 30px rgba(0, 110, 254, 1),
            0 0 60px rgba(48, 209, 190, 0.9);
    }
}

/*--------------------------*/
/*Header*/
/*--------------------------*/

.header {
    padding: 25px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header-left {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 45%;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.support {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.support a {
    text-decoration: none;
    color: #fff;
}

.support-call {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-call i {
    font-size: 20px;
}

.consult-btn {
    background: #fff;
    color: #0b1535 !important;
    padding: 15px 35px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.consult-btn:hover {
    background: #1f7aff;
    color: #fff !important;
}

.menu-icon {
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 100%;
    background-color: #fff;
    cursor: pointer;
    transition: all 500ms ease-in-out;
    align-items: center;
    justify-content: center;
    display: flex;
}

.menu-icon::before,
.menu-icon::after {
    top: 23px;
    left: -32px;
    width: 16px;
    height: 16px;
    content: "";
    border-radius: 100%;
    position: absolute;
    background-color: #fff;
}

.menu-icon::after {
    top: 27px;
    width: 8px;
    height: 8px;
    left: -12px;
}

.menu-icon button {
    gap: 5px;
    padding: 0;
    width: 25px;
    display: -webkit-box;
    display: flex;
    border: none;
    flex-wrap: wrap;
    justify-content: center;
    background-color: transparent;
}

.menu-icon button span {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #161714;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: transparent !important;
    transition: background-color 0.3s ease;
}

/*--------------------------*/
/* Side Navbar */
/*--------------------------*/

.side-navbar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #161c33;
    transition: all 0.4s ease;
    padding: 40px;
    z-index: 12;
}

.side-navbar.active {
    left: 0;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        left: -320px;
    }

    to {
        left: 0;
    }
}

.side-navbar ul {
    list-style: none;
    padding: 0;
}


.side-navbar ul li {
    margin: 30px 0;
}

.side-navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

#closeBtn {
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 25px;
    right: 10% !important;
    cursor: pointer;
}

.side-navbar .dropdown-menu {
    position: absolute !important;
    background: #182440;
    top: -30px !important;
    left: 250px !important;
    border: none;
    box-shadow: none;
    padding-top: 10px;
    display: none;
}

.side-navbar .dropdown-menu li {
    margin: 0px !important;
}

.side-navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #182440;
}

.side-navbar .dropdown-menu li a {
    padding: 15px 50px !important;
}

.nav-link {
    display: inline-block !important;
}

.nav-link:hover {
    color: #fff !important;
}

.side-navbar .dropdown-menu li a:hover {
    background: var(--button);
    color: var(--light);
}

.side-navbar .dropdown {
    width: 250px;
}

.side-navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu1 {
    position: absolute !important;
    background: #182440;
    top: -30px !important;
    left: 350px !important;
    border: none;
    box-shadow: none;
    padding-top: 10px;
    display: none;
}

.side-navbar .dropdown-menu1::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #182440;
}

.dropdown-submenu:hover .dropdown-menu1 {
    display: block;
}


/*--------------------------*/
/*Footer Section*/
/*--------------------------*/

footer {
    background: url(../images/footer-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

footer .footer-logo {
    width: 50%;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;

}

.footer-first,
.footer-last {
    padding-top: 4rem;
}

.footer-first-contain h2 {
    /*font-family: "Urbanist", Sans-serif;*/
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1em;
    color: #FFFFFF;
}

.footer-first-contain ul li i {
    color: var(--primary);
    margin-right: 20px;
}

.footer-number {
    color: var(--primary);
    font-size: 45px;
    font-weight: 700;
}

.footer-number-about h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    padding-bottom: 10px;
}

.footer-number-about p {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    max-width: 225px;
}

.footer-second {
    background: var(--light);
    color: black;
}

.footer-form {
    padding: 4rem 3rem 1rem;
}

.footer-form h3 {
    color: #06100d;
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
}

.footer-form input {
    width: 100%;
    height: 64px;
    border: none;
    margin-bottom: 8px;
    border-radius: 15px;
    padding-left: 25px;
    background-color: #f2f2f2;
}

.footer-form button {
    color: #fff;
    width: 100%;
    height: 55px;
    border: none;
    margin-top: 10px;
    font-weight: 600;
    border-radius: 100px;
    background-color: #244cc9;
    transition: all 500ms ease-in-out;
}

.sector {
    margin-top: 2rem;
}

.img-review {
    padding: 2rem 0;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    position: relative;
}

.img-review img{
    width: 25%;
    height: auto;
   object-fit: contain;
}

.img-review::before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: gray;
}

.footer-last ul li {
    margin-bottom: 10px;
    color: #c4c4c4;
    display: flex;
    align-items: baseline;
}

.footer-last ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-last h3 {
    /*font-family: "Urbanist", Sans-serif;*/
    font-size: 23px;
    font-weight: 600;
    line-height: 1.1em;
    color: #FFFFFF;
}

/*--------------------------*/
/*Breadcrumb Section*/
/*--------------------------*/

.breadcrumb-modern {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #1a1b1d url("../images/Home/header-bg.webp") no-repeat center center / cover;
    position: relative;
    z-index: 1;
}

.breadcrumb-modern nav {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.breadcrumb-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light);
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 0.8s ease-out forwards;
}

.breadcrumb-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: underlineGrow 0.7s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underlineGrow {
    to {
        width: 80px;
    }
}

.breadcrumb-item a {
    color: #ffffffcc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff99;
}

/* header Footer breadcrumb Responsive */

@media (max-width: 991px) {

    .footer-second {
        border-radius: 20px;
        margin-top: 10px;
    }
    
    footer .footer-logo{
        width: 25%;
    }

    .img-review img{
        width: 10%;
    }
    .sector {
        margin-top: 0;
    }

    .footer-last {
        display: flex;
        gap: 2rem;
    }

    .side-navbar {
        width: 500px;
        left: -520px;
    }

    .support p {
        margin-bottom: 0;
    }

}

@media (max-width: 767px) {
    .logo {
        width: 65%;
    }


    .side-navbar{
        overflow-y: auto;
    }
    /*.side-navbar {*/
    /*    width: 260px;*/
    /*}*/

    /*.side-navbar .dropdown-menu {*/
    /*    left: 170px !important;*/
    /*}*/


    .side-navbar .dropdown-menu{
        top: 30px !important;
        left: 0 !important;
    }
    
    .dropdown-submenu .dropdown-menu1{
        top: 50px !important;
        left: 0 !important;
    }
    .side-navbar .dropdown-menu1::before,
    .side-navbar .dropdown-menu::before{
        display: none;
    }
    
    
    footer .footer-logo {
        width: 35%;
    }
}

@media (max-width: 568px){
   .logo {
        width: 80%;
    }
    
    .img-review img {
        width: 20%;
    }
    
    footer .footer-logo {
        width: 40%;
    }

}

@media (max-width: 479px) {
    .logo {
        width: 85%;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }

    .footer-last {
        display: block;
    }

    .consult-btn {
        width: 85%;
        display: inline-block;
    }
    .breadcrumb-heading {
        font-size: 2rem;
    }
    .footer-first-contain h2{
        font-size: 25px;
    }
    
    footer .footer-logo {
        width: 60%;
        padding: 10px;
    }
    
    .footer-form {
        padding: 1rem 1rem 1rem;
    }
}

@media (max-width: 375px){
    footer .footer-logo {
        width: 55%;
    }
    
    .logo {
        width: 100%;
    }
}
