@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --bg: #0b1623;
    --panel: #0f1e2e;
    --text: #e8eef6;
    --muted: #a7b5c7;
    --accent: #2ae2c6;
    --accent-2: #3b82f6;
    --card: #0d1a28;
    --border: rgba(255, 255, 255, .08);
    --shadow: 0 8px 30px rgba(0, 0, 0, .35);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1180px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins";
    text-transform: capitalize;
}

p,
ul {
    font-family: "Poppins";
    margin: 0;
    padding: 0;
    list-style: none;
}

span,
input,
textarea,
a,
button {
    font-family: "Poppins";
    margin: 0;
    padding: 0;
}

a:hover {
    color: inherit;
}

a.popup-btn {
    background: #041838;
    color: #fff;
}

body {
    overflow-x: hidden;
    background: radial-gradient(1200px 600px at 10% -10%, #14243a 0%, transparent 60%),
        radial-gradient(900px 500px at 90% 10%, #0f233a 0%, transparent 60%),
        var(--bg);
    font-family: "Poppins";
}

main {
    overflow: hidden;
}

a,
button,
input,
textarea:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.form-group input[type=number] {
    -moz-appearance: textfield;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes blink-bg {
    0% {
        background-color: var(--accent);
        border-color: var(--accent);
    }

    100% {
        background-color: transparent;
        border-color: var(--accent);
    }
}

@keyframes blink-bg-second {
    0% {
        background-color: #ffaa00;
        border-color: #ffaa00;
    }

    100% {
        background-color: transparent;
        /* border-color:#041838; */
        color: white;
    }
}

/*Website Custom Style Css For Single Items Start Here*/
/*Heading & Para Style Css*/
.heading-one {
    font-size: 77px;
    line-height: 84px;
}

.heading-two {
    font-size: 60px;
    line-height: 67px;
}

.heading-three {
    font-size: 46px;
    line-height: 52px;
}

.heading-four {
    font-size: 38px;
    line-height: 44px;
}

.heading-five {
    font-size: 24px;
    line-height: 30px;
}

.heading-six {
    font-size: 20px;
    line-height: 26px;
}

p {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 10px;
}

li {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 5px;
}

/*Heading & Para Style Css*/

/*Buttons Style Css*/
.website-main-buttons {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
}

.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons a.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons a.call-btn {
    font-size: 16px;
    width: 175px;
    height: 45px;
    border-radius: 50px;
    padding: 10px 10px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
    /* animation: bounce2 2s ease infinite; */
}

/*Buttons Style Css*/

/*Website Custom Style Css For Single Items End Here*/

/*Header Css Start Here*/
header {
    /* background: #fff; */
    backdrop-filter: blur(8px);
    background: rgba(11, 22, 35, .6);
    border-bottom: 1px solid var(--border);
    width: 100%;
    box-shadow: 0 0 20px -5px #b2b2b2;
    position: relative;
    top: 0;
    z-index: 1000;
    transition: all .3s ease-in-out;
}

header nav.navbar {
    padding: 10px 0px;
    align-items: center;
    position: inherit;
    /* justify-content: center; */
}

header nav.navbar .navbar-brand {
    padding: 0px 0;
    margin: 0;
}

header nav.navbar .navbar-brand .logo {
    width: 150px;
    margin: 0;
    transition: all 0.5s ease-in-out;
    display: block;
}

header .navbar-toggler {
    background-color: #fff;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

header .navbar-expand-lg .navbar-collapse {
    justify-content: center;
    flex-direction: column;
    align-items: end;
    margin: 0 0 0 20px;
}

header .navbar-collapse .navbar-main-nav {
    display: flex;
    align-items: center;
    gap: 120px;
}

header .navbar-main-nav ul.navbar-nav {
    width: 100%;
    justify-content: center;
    margin: 0 10px 0 0;
}


header nav.navbar .website-main-buttons {
    justify-content: center;
    margin: 0;
}

 header nav.navbar .website-main-buttons button.popup-btn {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent);
    animation: blink-bg 0.2s infinite alternate;
}

header nav.navbar .website-main-buttons button.popup-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(0.9);
} 

header nav.navbar .website-main-buttons a.call-btn {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

header nav.navbar .website-main-buttons a.call-btn:hover {
    background: transparent;
    color: white;
    transform: scale(0.9);
}

header nav.navbar .website-main-buttons button.chat-btn {
    background: #f72f2f;
    color: #fff;
    border: 2px solid #f72f2f;
    animation: blink-bg 0.3s infinite alternate;
}

header nav.navbar .website-main-buttons button.chat-btn:hover {
    background: transparent;
    color: #041838;
}

/*Header Css End Here*/


/* Hero */
.hero {
    padding: 100px 0 50px;
    position: relative
}

/* .hero-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: center
} */

.hero .kicker {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: 12px
}

.hero .h1 {
    font-size: clamp(28px, 6vw, 60px);
    line-height: clamp(35px, 6vw, 67px);
    margin: 10px 0 16px;
    color: var(--text);
    font-weight: 600;
}

.lead {
    color: var(--muted);
    font-size: clamp(16px, 2.2vw, 17px);
    line-height: clamp(23px, 2.2vw, 24px);
}

.hero .hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

.hero .hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow)
}

.hero .website-main-buttons {}

.hero .website-main-buttons a.popup-btn {
    background: var(--accent);
    border: 1px solid var(--accent);
}

.hero .website-main-buttons a.popup-btn:hover {
    background: transparent;
    color: white;
    transform: scale(0.9);
}

.hero .website-main-buttons button.chat-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: white;
}

.hero .website-main-buttons button.chat-btn:hover {
    background: var(--accent);
    transform: scale(0.9);
}

.hero-illus {
    display: grid;
    gap: 16px
}

.chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.chip {
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px
}

.illus {
    height: 280px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(300px 200px at 20% 20%, rgba(46, 143, 255, .3) 0%, transparent 60%),
        radial-gradient(300px 200px at 80% 30%, rgba(215, 180, 106, .25) 0%, transparent 60%),
        linear-gradient(120deg, #0c1828, #0b1a2b);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.icon-cloud {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    gap: 16px;
}

.icon {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border)
}

.icon svg {
    opacity: .9
}

/* Section: Services */
.service-sec {
    padding: 56px 0
}

.service-sec .service-head-content {
    margin-bottom: 40px;
}

.service-sec .service-head-content h2 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: clamp(33px, 4vw, 45px);
    margin: 0 0 8px;
    font-weight: 800;
    color: white;
}

.service-sec .service-head-content p.lead {
    margin-top: 0
}

.service-sec .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    height: -webkit-fill-available;
}

.service-sec .card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 20px;
    color: white;
}

.service-sec .card ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: var(--muted)
}

.service-sec .card li {
    margin: 6px 0;
    list-style: disc;
}

.service-sec .badge {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(215, 180, 106, .2), rgba(215, 180, 106, .05));
    border: 1px solid var(--border);
    padding: 0;
}

/* Highlight banner */
.service-sec .highlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
    align-items: center;
    background: linear-gradient(90deg, rgba(215, 180, 106, .12), rgba(59, 130, 246, .12));
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-top: 32px
}

.service-sec .highlight h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 31px;
    color: white;
}

.service-sec .highlight p {
    margin: 0;
    color: var(--muted)
}

.service-sec .mock {
    height: 140px;
    border-radius: 14px;
    background:
        radial-gradient(200px 120px at 20% 40%, rgba(255, 255, 255, .1) 0%, transparent 60%),
        linear-gradient(120deg, #0b1623, #0f1e2e);
    border: 1px solid var(--border);
    display: grid;
    place-items: center
}

/* Footer */
.footer {
    margin-top: 56px;
    padding: 28px 0 44px;
    border-top: 1px solid var(--border);
    color: var(--muted)
}

/* .foot-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start
} */

.footer .brand {}

.footer .brand img {
    width: 200px;
    margin-bottom: 15px;
}

.footer ul.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer ul.social-links li {
    margin: 0px;
}

.footer ul.social-links li a {
    color: var(--muted);
}

.footer ul.social-links li a:hover {
    color: var(--accent);
}

.newsletter {
    display: flex;
    gap: 10px
}

.newsletter input[type=email] {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    background: #0a1522;
    border: 1px solid var(--border);
    color: var(--text)
}

.newsletter .btn {
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer
}

.newsletter .btn.primary {
    background: linear-gradient(135deg, var(--accent), #041838);
    color: white
}

@media only screen and (min-width:768px) and (max-width:991px) {
    header .navbar-collapse .navbar-main-nav {
        justify-content: center;
        margin-top: 20px;
    }

    section.hero {
        padding: 50px 0px;
    }

    .hero .website-main-buttons {
        margin: 20px 0px;
    }

    .service-sec {
        padding: 0px 0px 50px;
    }

    .service-sec .highlight {
        display: block;
    }

    .service-sec .mock {
        margin-top: 20px;
    }

    .footer ul.social-links {
        /* display: grid; */
        /* grid-template-columns: repeat(3, 90px); */
        margin-bottom: 20px;
    }

    .footer {
        margin: 0px;
    }

    .newsletter {
        /* display: block; */
    }

    .newsletter input[type="email"] {
        /* width: 100%; */
        /* margin-bottom: 10px; */
    }

    .newsletter button.btn.primary {
        /* width: 100%; */
    }
}


@media only screen and (min-width:576px) and (max-width:767px) {
    header .navbar-collapse .navbar-main-nav {
        justify-content: center;
        margin-top: 20px;
    }

    section.hero {
        padding: 50px 0px;
    }

    .hero .website-main-buttons {
        margin: 20px 0px;
    }

    .service-sec {
        padding: 0px 0px 50px;
    }

    .service-sec .highlight {
        display: block;
    }

    .service-sec .mock {
        margin-top: 20px;
    }

    .footer ul.social-links {
        display: grid;
        grid-template-columns: repeat(3, 90px);
        margin-bottom: 20px;
    }

    .footer {
        margin: 0px;
    }

    .newsletter {
        display: block;
    }

    .newsletter input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter button.btn.primary {
        width: 100%;
    }
}


@media only screen and (min-width:300px) and (max-width:575px) {
    header .navbar-collapse .navbar-main-nav {
        justify-content: center;
        margin-top: 20px;
    }

    section.hero {
        padding: 50px 0px;
    }

    .hero .website-main-buttons {
        margin: 20px 0px;
    }

    .service-sec {
        padding: 0px 0px 50px;
    }

    .service-sec .highlight {
        display: block;
    }

    .service-sec .mock {
        margin-top: 20px;
    }

    .footer ul.social-links {
        display: grid;
        grid-template-columns: repeat(3, 90px);
        margin-bottom: 20px;
    }

    .footer {
        margin: 0px;
    }

    .newsletter {
        display: block;
    }

    .newsletter input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter button.btn.primary {
        width: 100%;
    }
}