@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --primary-color: #1f8f00;
    --secondary-color: #000;
    --red-color: #ff0000;
    --yellow-color: #FCBF2E;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior: smooth; */
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.red-color {
    color: var(--red-color) !important;
}

.container-fluid {
    padding: 0 5rem;
}

.carousel-control-next,
.carousel-control-prev {
    width: 40px;
    height: 40px;
    background: #242424;
    border-radius: 50%;
    color: var(--white-color);
    opacity: 1;
    font-size: 0.875rem;
}

/* Loader Wrapper */
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: 0.5;
    }

    to {
        transform: translateY(-15px);
        opacity: 1;
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    width: 70.4px;
    height: 70.4px;
    --clr: rgb(247, 197, 159);
    --clr-alpha: rgb(247, 197, 159, .1);
    animation: spinner 1.6s infinite ease;
    transform-style: preserve-3d;
}

.spinner>div {
    background-color: var(--clr-alpha);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 3.5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
    transform: translateZ(-35.2px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
    transform: translateZ(35.2px);
}

@keyframes spinner {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}

.section-padding {
    padding: 80px 0;
}

.title {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* From Uiverse.io by adamgiebl */
.btn1 {
    background: #000;
    color: white;
    font-family: inherit;
    padding-left: 1.2em;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50vw;
    border: none;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.btn1 .icon {
    background: var(--white-color);
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 50%;
    right: 0.3em;
    transition: all 0.3s;
}

.btn1:hover .icon {
    width: calc(100% - 0.6em);
    height: calc(100% - 0.6em);
    border-radius: 50vw;
}

.btn1 .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--secondary-color);
    border-radius: 0.5rem;
}

.btn1:hover .icon svg {
    transform: translateX(0.1em);
}

.btn1:active .icon {
    transform: scale(0.95);
}


/* ================================ 
Navbar Section 
=================================== */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 8px 0;
    transition: all ease-in-out 0.5s;
}

.navbar .navbar-brand>img {
    height: 70px;
}

.navbar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: var(--white-color);
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--white-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}


.navbar-brand {
    width: 140px;
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #ffffff;
    transition: all ease-in-out 0.5s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

.inner-navbar {
    background-color: var(--white-color);
    position: relative;
}

.inner-navbar .navbar-brand>img {
    height: 60px;
    transition: all 0.25s ease-in-out;
}

.inner-header .btn1 {
    background: var(--white-color);
    color: #121212;
}

.inner-header .icon {
    background: #000;
    color: var(--white-color);
}

.inner-header .icon svg {
    color: var(--white-color);
}

.scroll-on .nav-link::before {
    background-color: var(--secondary-color);
}

.scroll-on .nav-link {
    color: var(--secondary-color);
}

.scroll-on .nav-link::before {
    background-color: var(--secondary-color);
}

.scroll-on .navbar-brand>img {
    height: 60px;
    transition: all 0.25s ease-in-out;
}

.scroll-on .btn1 {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.scroll-on .icon {
    background: var(--white-color);
}

.scroll-on .icon svg {
    color: var(--secondary-color);
}

.inner-navbar .nav-link::before {
    background-color: var(--secondary-color);
}

.inner-navbar .nav-link {
    color: var(--secondary-color);
}

.inner-navbar .nav-link::before {
    background-color: var(--secondary-color);
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 10rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 15px;
        text-decoration: none;
        font-size: 0.875rem
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

/* ================================ 
Banner Section 
=================================== */
.banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--white-color);
    padding-bottom: 1rem;
}

.videoPanel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.banner-video {
    object-fit: cover;
    width: 100%;
    filter: brightness(0.8);
    aspect-ratio: 16/9;
    pointer-events: none;
}

.banner h1 {
    font-weight: 600;
    font-size: 3vw;
    font-family: var(--my-family);
    width: 100%;
    letter-spacing: 0.25rem;
    max-width: 80%;

}

.banner .icon-contain {
    width: 26px;
    aspect-ratio: 1/1;
    border: 1px solid var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 10px;
    background-color: transparent;
    transition: all 0.25s ease-in-out;
}

.banner .icon-contain:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.banner .social-connect {
    transform: rotate(90deg);
    position: absolute;
    right: 2%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner .social-connect h6 {
    color: var(--secondary-color);
    font-size: 12px;
}

.banner .social-connect .icon-contain {
    transform: rotate(-90deg);
}


.about h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.125rem;
    color: #222222;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}


.service .img-fluid {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;

}

.service .img-contain {
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);

}

.service .img-contain::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.404) 20%, transparent);
    pointer-events: none;
}

.service .img-contain .layer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    color: var(--white-color);
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -moz-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);

}

.service .img-contain .layer h3 {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
}

.service .img-contain:hover .layer {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.gallery .img-fluid {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.cta {
    overflow-x: hidden;
    background-color: #F7F1E8;
}

.cta .img-fluid {
    width: 100%;
    aspect-ratio: 5/3.25;
    object-fit: cover;
    object-position: center;
}

.cta .content {
    padding: 5rem;
    height: 100%;
}

.cta .content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.25px;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.blogs .img-fluid {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.blogs h3 {
    font-size: 1.125rem;
    margin-top: 1rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 0.5rem;
}

footer {
    background-color: #222222;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 3rem 0 1rem;
}

footer a {
    color: #d6d6d6;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
}

footer h6 {
    font-size: 1.5rem;
}

.foot-link p {
    margin-bottom: 0.75rem;
}


/* ================================ 
Parallax section 
=================================== */
.parallax-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../images/banner/parallax.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
}

.parallax-section .inner-contain {
    padding: 1.75rem;
    background-color: #ffffffe3;
    backdrop-filter: blur(2px);
}

.parallax-section .inner-contain p {
    margin: 1rem 0 1.5rem;
}

.parallax-section .img-fluid {
    aspect-ratio: 4/3;
}

.mission .title {
    font-size: 2.5rem;
    margin-bottom: 1.125rem;
}

.mission p {
    font-size: 1.125rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.testi img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.testi .inner-contain {
    padding: 2rem;
    background-color: #f5f5f5b7;
    height: 100%;
    padding-bottom: 1.5rem;

}

.testi .carousel-control-prev {
    right: 3rem !important;
    left: auto;
}

.testi .inner-contain p {
    margin-bottom: 0;
    margin-top: 1rem;
}

.testi .inner-contain h5 {
    font-size: 1rem;
}

.testi .inner-contain small {
    font-size: 0.8rem;
}

.contact {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("../images/banner/parallax.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;

}

.contact-form-box {
    background-color: #ffffffcc;
    backdrop-filter: blur(2px);
    padding: 1.5rem;
}

.contact-form-box h5 {
    line-height: 1.4;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    min-height: 48px;
    font-size: 0.9rem;
    border: 1px solid #dbdbdb;

    &:focus {
        box-shadow: none;
        border-color: var(--primary-color);
    }
}

.bread {
    background-color: #ececec;
}


.toc {
    position: sticky;
    top: 120px;
}

.blog-details .list-group-item.active,
.blog-details .list-group-item:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.blog-details .list-group-item.active::after,
.blog-details .list-group-item:hover::after {
    width: 100%;
}

.blog-details .list-group-item {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;


    span {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 0.95rem;
    }



    &::after {
        content: '';
        display: inline-block;
        height: 1px;
        width: 0;
        background-color: var(--secondary-color);
        bottom: -3px;
        left: 0;
        position: absolute;
        transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
}

.blog-details .list-group li i {
    font-size: 0.5rem;
}

.blog-details .list-group li {
    margin-bottom: 0.75rem;
}

.blog-details .list-group-item-action {
    width: auto;
}

.blog-details hr {
    margin: 3rem 0;
}

.blog-details .img-fluid {
    margin-bottom: 2rem;
    margin-top: 1rem;
    width: 100%;
}

.blog-details h1 {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.4;
}

.blog-details h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.blog-details h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.blog-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-details h5 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blog-details .tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    border: 1px solid #dbdbdb;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);

    &:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }
}

.accordion-button {
    box-shadow: none !important;
    border: none;
    font-weight: 500;
}

.accordion-button::after {
    display: none !important;
    /* Remove Bootstrap chevron */
}

.accordion-item {
    border-radius: 6px;
    overflow: hidden;
}

.accordion-button .toggle-icon {
    font-size: 20px;
    transition: transform 0.3s, content 0.3s;
}

.accordion-button:not(.collapsed) .toggle-icon {
    content: "\ea78";
    /* ri-subtract-line */
    font-family: "remixicon";
}

.accordion-button.collapsed .toggle-icon::before {
    content: "\ea13";
    /* ri-add-line */
    font-family: "remixicon";
}

.accordion-item .icon-contain {
    width: 31px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: grid;
    place-items: center;

    i {
        line-height: 1;
    }
}

.accordion-body p {
    font-size: 0.95rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.accordion-button {
    border: 0;
    border-bottom: 1px solid #dbdbdb;
}

.faq {
    background-color: #F7F1E8;
}

.design-process {
    background: #f8f9fa;
}

.process-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h5 {
    margin-top: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.process-card p {
    font-size: 0.95rem;
    color: #555;
}

.process-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.process-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}


/* Section Styling */
.contact-section {
    background: #fff;
    color: #000;
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

/* Info Box */
.icon-box {
    border-left: 3px solid #000;
    padding: 18px 20px;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.icon-box:hover {
    background: #f1f1f1;
    transform: translateX(6px);
}

.icon-box h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.icon-box p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

/* Contact Form */
.contact-form .form-control,
.contact-form select {
    border: none;
    border-bottom: 1.5px solid #000;
    border-radius: 0;
    background: transparent;
    color: #000;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #555;
    box-shadow: none;
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

/* Button */
.btn-custom {
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #333;
    transform: translateY(-2px);
}




@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important
    }
}

@media (max-width: 1528px) {
    .banner-video {
        height: 102vh;
    }
}

@media (max-width: 800px) {
    .scroll-on .navbar-toggler{
        background-color: var(--secondary-color);
    }
    .offcanvas-body{
        text-align: center;
    }
    .offcanvas-body ul{
        margin-bottom: 1.5rem;
    }
    .navbar .nav-link{
        color: var(--secondary-color);
    }
    .section-padding {
        padding: 50px 0;
    }
    .container-fluid {
        padding: 0 1rem;
    }
    .about h2 {
        font-size: 2.5rem;
    }
    .cta .content {
        padding: 1rem;
    }
    .cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .banner h1 {
  font-size: 9vw;
  width: 100%;
  max-width: 100;
}
}