* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif !important;
    text-decoration: none !important;
}

:root {
    --theme-color1: #372382;
    --theme-color2: #0093E8;
    --theme-color3: #5F5F5F;

    --sidebar-width: 250px;
    --sidebar-collapsed-width: 70px;
}

html {
    scroll-behavior: smooth;
}
#tab1:checked ~ nav label[for="tab1"],


/* header css start  */

.black-nav a.nav-link {
    color: black !important;
}

.black-nav a.nav-link:hover {
    color: black !important;
}


.black-nav a.nav-link.active:before {
    background: #000 !important;
}

header.submt-app {
    border-bottom: 1px solid #D1D1D1;
}

.header {
    background: transparent;
    position: relative;
    z-index: 222;
    backdrop-filter: blur(25px);
    padding: 16px 50px !important;
}

nav.navbar {
    position: relative;
    z-index: 333;
    backdrop-filter: blur(25px);
}

nav a.nav-link {
    color: white !important;
    transition: 0.3s;
}

nav a.nav-link:hover {
    color: white !important;
    transform: translateY(-5px);
    position: relative;

}

.navbar a.nav-link.active {
    transform: translateY(-5px);
    position: relative;
}

.navbar a.nav-link.active:before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    position: absolute;
    top: 30px;
    border-radius: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline;
    margin: auto;
}

header.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.main-header button.toggle-buton {

    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 333;
}

.offcanvas {
    width: 300px !important;
}
.alpha-box {
    margin-top: 5%;
    height: 50vh;
    display: flex;
    align-items: center;
    background: #372382 !important;
}

.main-header .offcanvas a.nav-link.active {
    background: var(--theme-color1);
    color: white;
    border-radius: 10px;
}

.main-header .offcanvas a.nav-link {
    text-align: center;
    border-bottom: 1px solid var(--theme-color1);
    margin-bottom: 9px;
}

.img-nav {
    width: 200px;
}


/* header css end  */


/* second header css start  */

.second-header .header {
    background: white;
    color: black !important;
    border-bottom: 1px solid #ccc;
}

/* second header css end  */


/* button css start  */

/* dark butn  */


.main-butn {
    position: relative;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid var(--theme-color1);
    border-radius: 50px;
    background: var(--theme-color1);
    overflow: hidden;
    transition: color 0.4s ease, background 0.4s ease;
    z-index: 1;
}


.main-butn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.main-butn:hover::before {
    width: 100%;
}


.main-butn::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-color1);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.main-butn:hover::after {
    width: 60%;
}


.main-butn:hover {
    color: var(--theme-color1);
    background: #fff;
    border-color: var(--theme-color1);
}

button.dlt-btn {border: 1px solid red;padding: 7px;color: red;}

button.dlt-btn:hover{
    border: 1px solid red;
    padding: 7px;
    color: red;
}
/* light butn  */

.main-butn-white {
    position: relative;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-color1);
    border: 2px solid var(--theme-color1);
    border-radius: 50px;
    background: #fff;
    overflow: hidden;
    transition: color 0.4s ease, background 0.4s ease;
    z-index: 1;
}


.main-butn-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--theme-color1);
    z-index: -1;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.main-butn-white:hover::before {
    width: 100%;
}


.main-butn-white::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.main-butn-white:hover::after {
    width: 60%;
}

.main-butn-white:hover {
    color: #fff;
    background: var(--theme-color1);
    border-color: var(--theme-color1);
}

/* button css end  */

/* home page css start  */

/* url('./images/home-banner.svg')  */

.hero-section {
    background: center center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

 .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        filter: brightness(90%); /* Darken video slightly */
    }

.social-buttons {
    position: fixed;
    bottom: -80px;
    right: 50px;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-buttons a {
    display: block;
    margin-bottom: 10px;

}

.hero-section h1 {
    font-size: 72px;
    max-width: 54%;
    margin: auto;
}

.built .stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px #37238221;
    transition: all 0.3s ease;
    border: 1px solid var(--theme-color1);
    height: 100%;
}

.built .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



h2.main-title {
    font-size: 44px;
    padding-left: 20px;
    color: #33363A;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

h2.main-title::before {
    content: "";
    position: absolute;
    background: var(--theme-color1);
    top: 0;
    left: 0;
    right: 0;
    width: 10px;
    height: 56px;
}

.main-para {
    color: var(--theme-color3);
    font-family: "Bricolage Grotesque", sans-serif !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.stat-card::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background-color: var(--theme-color1);
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;

}

.stat-card:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;

}

.built .stat-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.built .stat-card p {
    font-weight: 800;
    color: black !important;
}

.built .stat-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #33363A;
}

.ceo .mr h5 {
    font-size: 20px;
    font-weight: 700;
    color: #33363A;
}

.ceo .mr h6 {
    color: #33363A;
}

.mission .info-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px dashed var(--theme-color1);
}

.mission .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission .info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #33363A;
}

.mission .info-img {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.mission .info-img img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
}

.mission .info-card p {
    font-size: 14px;
}


.mission .info-img img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.mission .info-img img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    filter: grayscale(1000%);
}

.choose-section .icon-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

section.choose-section {
    background-image: url(./images/whiteback.jpg);
    background-blend-mode: overlay;
    background-color: #cdcaca;
}

.choose-section .icon-box .icon {
    width: 45px;
    height: 45px;
    background: #000000 !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 22px;
  
}

img.wc-icon{
    filter: invert(1);
}

.choose-section .icon-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 24px;
    color: #33363A;
}

.choose-img img {
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    width: 100%;
}


.choose-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.choose-section .icon-box p {
    color: var(--theme-color3);
}

.projects-section .card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.projects-section .card-img-top {
    border-bottom: 1px solid #eee;
    height: 220px;
    object-fit: cover;
}

.projects-section .location-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 6px;
}

.projects-section .discover-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-top: 15px;
    color: #000;
    gap: 10px;
}

.projects-section h5.card-title {
    font-size: 26px;
    padding: 40px 0;
    color: #33363A;
}

.projects-section p.card-text {
    color: #33363A;
    padding-bottom: 40px;
}

.client img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.client .meking h3 {
    font-size: 32px;
    color: #33363A;
    font-weight: 600;
}

.client .meking h3 {
    font-size: 32px;
    color: #33363A;
    font-weight: 600;
    margin-bottom: 30px;
}

.client .meking p {
    max-width: 38%;
    margin: auto;
}

.client img:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.download .down-inner {
    background-color: #FAFAFA;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 20px;
}

.download h4 {
    font-size: 40px;
    color: black;
    margin-bottom: 23px;
}

.download h5 {
    font-size: 20px;
    color: black;
    padding-bottom: 23px;
}

.blog .blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1;
}


.blog .blog-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--theme-color2);
    z-index: -1;
    transition: height 0.5s ease;
}


.blog .blog-card:hover::before {
    height: 100%;
    color: white;
}

.blog .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: white
}

.blog .blog-card:hover .blog-meta {
    color: white !important;
}


.blog .blog-card img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.5s ease;
    width: 100%;
    height: 263px;
    object-fit: cover;
}


.blog .blog-meta {
    font-size: 14px;
    color: #5F5F5F;
    margin-bottom: 8px;
}

.blog .blog-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog .read-more {
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog .blog-card:hover .read-more {
    color: white;
}

.touch .contact-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    background: #fff;
    transition: all 0.4s ease;
    text-align: left;
}

.touch .contact-card:hover {
    background: #f8f9fa;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.touch .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    filter:invert(0);
    transition: transform 0.6s ease, background 0.3s ease;
}


.touch .contact-card:hover .contact-icon {
    transform: rotate(360deg);
    background: var(--theme-color1) !important;
    filter:invert(0);
}


.touch .contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.touch .contact-card p {
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

/* homepage css end  */


/* about page css start  */

.choose-making .response-box .res-icon {
    border-radius: 50%;
    border: 1px solid;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 11px;
}

.about-ban {
    background-image: url(./images/about-banner.png);
    height: 60vh;
    background-blend-mode: overlay;
    background-color: #2f3a4a4d;
}

.about-ban h1 {
    font-family: "Bricolage Grotesque", sans-serif;

}

h6.about-title {
    background: white;
    color: black;
    width: fit-content;
    display: flex;
    align-items: center;
    margin: auto;
    padding: 7px 13px;
    border-radius: 10px;
}

.about-ban .about-title img {
    width: 25px;
    /* filter: invert(1); */
}

.about-ban .about-inner {
    margin-top: 100px;
}

.company .timeline {
    position: relative;
    padding-left: 40px;
    border-left: 2px dashed #ccc;
}


.company .timeline-dot {
    position: absolute;
    left: -43px;
    width: 20px;
    height: 30px;
    top: 3px;
    border-radius: 50%;
    background-color: var(--theme-color1);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--theme-color1);
}

.company .timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.company .timeline-content {
    padding-left: 20px;
}

.company .timeline img {
    border-radius: 8px;
    max-width: 100%;
    height: 229px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}


.company .timeline img:hover {
    transform: rotateY(15deg) scale(1.05);
}

h3.inner-title {
    font-size: 28px;
    font-weight: 600;
    color: #030712;

}

.choose-making .response-box .single h5 {
    font-size: 24px;
    color: black;
    font-weight: 500;
}

.choose-making .response-box {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 15px;

}

.tour img {
    width: 100%;
}
h1.about-page {
    max-width: 100%;
}

section.tour {
    box-shadow: 0 0 55px 0 rgba(0, 0, 0, .1);
    background: var(--theme-color2);
}

/* about pagecss end  */


/* service page css start  */

.service-title{
    max-width: 100% !important;
}

.enquiry-section {
    padding: 50px 0;
}

.enquiry-section .enquiry-title {
    font-weight: 600;
    color: var(--theme-color1);
    margin-bottom: 30px;
}

.enquiry-section .form-control {
    border-radius: 6px;
    box-shadow: none;
}

.enquiry-section .enq-inner {
    max-width: 50%;
}

.enquiry-section {
    background-color: #FAFAFA;
}

/* service page css end  */

/* projet page css start  */

.product-tab .nav-tabs {
    justify-content: center;
    gap: 0.25rem;
}

.product-tab .nav-tabs .nav-link {
    border: none;
    color: #222;
    font-weight: 600;
    padding: .6rem 1.1rem;
    position: relative;
    background: transparent;
    transition: color .2s ease;
}

.product-tab .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 20%;
    width: 70%;
    margin: auto;
    bottom: -1px;
    height: 3px;
    background: var(--theme-color1);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.product-tab .nav-tabs .nav-link:hover {
    color: var(--theme-color1);
}

.product-tab .nav-tabs .nav-link:hover::after,
.product-tab .nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.product-tab .nav-tabs .nav-link.active {
    color: var(--theme-color1);
}

/* Cards styling */
.product-tab .card.custom-card {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    background: #fff;
    height: 100%;
}

.product-tab .card.custom-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-tab .card.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-tab .card.custom-card:hover img {
    transform: scale(1.08);
}

.product-tab .card-title {
    font-size: 1rem;
    font-weight: 600;
}

.product-tab .card-text {
    font-size: 0.9rem;
    color: #555;
}

.projects-section .glo-pro {
    border-bottom: 1px solid #ccc;
}


/* product page css end  */

/* single-product page css start  */

.single-product img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.structure button.download {
    background: none;
    border: none;
    color: var(--theme-color2);
    font-weight: 500;
}

.structure h4 {
    font-size: 32px;
    color: black;
    margin: 25px 0;
}

.structure .us-info {
    max-width: 80%;
    margin: auto;
    text-align: left !important;
}

.us-info .info-box h6 {
    font-size: 24px;
    color: black;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.structure .feature-item h6 {
    font-size: 20px;
    color: black;
}

.structure img {
    width: 100%;
    height: 420px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
}


.structure img:hover {
    transform: scale(1.03) rotate(1.5deg);
    filter: brightness(1.1);

}

/* single-product page css start  */


/* safety page css start  */

.safety img {
    width: 100%;
}

.control img.left-gal {
    width: 100%;
    margin-bottom: 20px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.control img.right-gal {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 20px;
}

.control img.bottom-gal {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.control img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.control img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* safety page css start  */

/* gallery page css start  */

.control img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    object-fit: cover;
}

.control img.small-img {
    height: 185px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.control img.large-img {
    height: 390px;
    width: 100%;
    object-fit: cover;
}

.control img.leader-img-left {
    height: 250px;
    margin-bottom: 20px;
    width: 100%;
    object-fit: cover;
}

.control img.leader-img-right {
    height: 521px;
    margin-bottom: 20px;
}

/* gallery page css end  */

/* client page css start  */

.value p {
    max-width: 40%;
    margin: auto;
}

.say .testimonial-card img {
    width: 60px !important;
}

.say .testimonial-card .stars i.bi.bi-star-fill {
    color: #F5C74D;
}

.say .testimonial-card {
    border: 1px solid #D6D6D6;
    padding: 20px;
    border-radius: 20px;
    height: 215px;
}


/* client page css end  */


/* career page start  */

.current .job-card {
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.current .job-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.current .job-card small {
    font-weight: 500;
    color: var(--theme-color1);
    font-size: 16px;
}

.current .job-card h6 {
    font-weight: 600;
}

.current .job-card .purchase {
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 10px;
}

/* career page css end  */

/* sunmit page css start  */
.submit .job-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 20px;
    height: 100%;
}

.submit .job-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
}

.submit .job-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color1);
    /* Purple like screenshot */
    display: block;
    margin-bottom: 5px;
}

.submit .job-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: black;
}

.submit .form-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
}

section.submit {
    margin: 140px 0 0 0;
    background: #F9F9FB;
}

/* submit page css end  */

/* single-blog page css start  */


.single-blognew .blog-meta {
    font-size: 16px;
    color: #6c757d;
}

.single-blognew .blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 15px 0;
}

.single-blognew .highlight-box {
    border-left: 4px solid var(--theme-color1);
    padding-left: 15px;
    margin: 25px 0;
}

.single-blognew .highlight-box h6 {
    font-weight: 600;
}

.single-blognew .conclusion-box {
    border-left: 4px solid var(--theme-color1);
    padding: 15px;
    background: #f8f9fa;
    margin-top: 30px;
    border-radius: 5px;
}

.single-blog .conclusion-box h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

section.single-blognew {
    margin: 130px 0 0 0;
}

/* single blog page css end  */

/* contact page css start  */

.contact .office-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
    transition: all 0.5s ease;
}

.contact .office-card:hover {
    transform: translateY(-5px);
    transition: 0.5s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact .office-card h6 {
    font-weight: 600;
}

.contact .office-flag {
    width: 75px;
    height: 43px;
    margin-bottom: 10px;    
    /* border-radius: 50%; */
    object-fit: contain;
}

.contact .get-direction {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact .get-direction:hover {
    text-decoration: underline;
}

section.contact {
    margin: 60px 0 0 0;
}

section.us-con {
    background: #F9F9FB;
}

.us-con .form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.us-con .contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--theme-color1);
    margin-bottom: 1rem;
}

.us-con .form-control,
.form-select {
    border-radius: 8px;
    height: 48px;
}

.us-con .form-control::placeholder {
    color: #aaa;
}

.us-con .form-textarea {
    height: 100px;
}


.us-con .image-box img {
    width: 100%;
    border-radius: 10px;
    height: 430px;
    object-fit: contain;
}

/* contact page css end  */

/* request form page css start  */

.bilt .stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    gap: 30px;
}

.bilt .step {
    text-align: center;
    flex: 1;
    position: relative;
}

.bilt .step::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: -1;
}

.bilt .step:last-child::after {
    display: none;
}

.bilt .step .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid #ccc;
    background: #fff;
    transition: 0.3s;
}

.bilt .step.active .icon {
    background: black;
    border-color: black;
    color: #fff;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.4);
}

/* .bilt .step.completed .icon {
    background: #28a745  !important;
    border-color: #28a745;
    color: #fff;
} */

.bilt .step small {
    font-weight: 500;
    color: var(--theme-color3);
    font-size: 18px;
}

.bilt .step.active small {
    color: black;
    font-weight: 600;
}

.bilt .form-section {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    animation: fadeIn 0.4s ease-in-out;
    max-width: 40%;
    margin: auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

form#quotationForm {
    background: #FAFAFA;
    padding: 50px 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.bilt .form-section.active {
    display: block;
}

.bilt .form-section h4 {
    color: var(--theme-color1);
    font-size: 34px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bilt .form-section a {
    color: black;
    font-weight: 600;
}

.bilt .stepper .step p {
    color: black;
    font-weight: 300;
}

.bilt .otp-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
}

.bilt .otp-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.bilt .otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.bilt .otp-input {
    width: 75px;
    height: 57px;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    border-bottom: 2px solid #000000 !important;
    border-radius: 0;
    border: none;
}

.bilt .otp-input:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.bilt .third-section {
    max-width: 80%;
    text-align: left;
}

.bilt .forth-sec {
    max-width: 50%;
}

.checkmark-circle i.bi.bi-check-circle-fill {
    color: green;
    font-size: 54px;
}

section.bilt {
    margin: 100px 0 0 0;
}

.bilt h3 {
    font-size: 42px;
}


/* request page css end  */

/* footer css start  */


footer {
    background: #FAFAFA;
    border-top: 5px solid var(--theme-color1);
    padding: 40px 0 20px;
    font-size: 15px;
    color: #333;
}

footer h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

footer a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--bs-primary);
}

.footer-logo img {
    margin-bottom: 10px;
    width: 100%;
}

.social-icons a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    margin-right: 8px;
    color: #333;
    transition: all 0.3s ease;
}

/* .social-icons a:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
} */

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* footer css end  */



/* admin dashboard page css start  */

/* Sidebar */
.admin-panel .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background-color: #FAFBFC;
    color: #636060;
    transition: width 0.3s, left 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.admin-panel .sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

.admin-panel .sidebar.show {
    left: 0;
}

.admin-panel .sidebar h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.admin-panel .sidebar.collapsed h3 span {
    display: none;
}

.admin-panel .sidebar .nav-link {
    color: #636060;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 400;
}

.admin-panel .sidebar.collapsed .nav-link span {
    display: none;
}

.admin-panel .sidebar .nav-link:hover {
    background-color: #CCFFFF99;
    border-radius: 5px;
    color: #009699;
}

/* Sidebar toggle button (arrow) */

/* Hidden checkbox toggle */
#sidebarToggle {
    display: none;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    color: #fff;
    padding: 1rem;
    transition: transform .3s ease;
    z-index: 1050;
}

.sidebar h5 {
    margin-bottom: 1.5rem;
}

.sidebar .nav-link {
    color: #5F5F5F;
    margin-bottom: .5rem;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

.sidebar .nav-link:hover {
    background: var(--theme-color1);
    color: white;
}

.sidebar .nav-link img {
    margin: 0 10px 0 0;
}

/* Close (X) button inside sidebar */

.close-btn {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-bottom: 1rem;
}

.sidebar .nav-link.active {
    background: var(--theme-color1);
    color: white;
}

.sidebar .nav-link.active img,
.sidebar .nav-link:hover img {
    filter: brightness(35);
}

/* Main */
.main {
    margin-left: 280px;
    padding: 0;
    transition: margin-left .3s ease;
    background: #FAFBFC;
}

/* Hide sidebar when toggled */
#sidebarToggle:checked~.sidebar {
    transform: translateX(-100%);
}

#sidebarToggle:checked~.main {
    margin-left: 0;
}

/* Mobile behavior */


/* Toggle button */

.main .toggle-btn {
    cursor: pointer;
    background: var(--theme-color1);
    color: white;
    font-size: 22px;
    padding: 0px 6px;
}
.admin-logo {
    padding: 20px 15px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}
.admin-logo img {
    width: 100%;
    /* padding: 30px 10px; */
}

/* .main .dash-head {
    background: white;
    padding: 10px;
    margin: 0;
    padding-left: 0;
} */
.main .dash-head {
    background: white;
    padding: 21px !important;
    margin: 0;
}

.main .dash-title h3 {
    color: #33363A;
    font-weight: 600;
}

.main .bell i.bi.bi-bell {
    color: #FFA412;
    font-size: 20px;
}

.main .bell {
    background: #FFFAF1;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #FFA412;
    position: relative;
    cursor: pointer;
}

.main .bell:after {
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    background: #EB5757;
    border-radius: 50%;
}

.main .dropdown img.user-img {
    width: 55px;
    height: 55px;
}

.main .dash-head .search-bar span {
    background: #F9FAFB !important;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    padding-left: 20px;
    font-size: 22px;
    color: var(--theme-color1);
    padding-top: 9px;

}

.main .dash-head .search-bar input {
    background: #F9FAFB !important;
    padding: 12px;
    border-radius: 35px;
}

.main .dropdown a#userDropdown {
    color: #33363A;
}

.staf-bars .card-custom {
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
}

.staf-bars .card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.staf-bars .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
}

.main .staf-bars h6 {
    color: var(--theme-color3);
}

.main .staf-bars .icon-circle i {
    font-size: 24px;
}

.main .staf-bars .card h4 {
    color: #33363A;
    font-weight: 600;
}


.staf-bars .trend {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-weight: 600;
}

.staf-bars .trend.up {
    color: #28a745;
}

.staf-bars .trend svg {
    margin-left: 5px;
    width: 12px;
    height: 12px;
}

.staf-bars .card img {
    width: 100%;
}

.updates {
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.updates .table thead th {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #f8f9fa;
}

.updates .table td {
    vertical-align: middle;
    font-size: 14px;
}

.updates .progress {
    height: 6px;
    border-radius: 4px;
}

.updates .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.updates .search-bar {
    max-width: 220px;
}

.updates .pagination {
    margin: 0;
}

.form-control:focus {
    border-color: #ccc !important;
    outline: 0;
    box-shadow: none !important;
}

.form-select:focus {
    border-color: #ccc;
    outline: 0;
    box-shadow: none;
}

.main .per-project .rate h4 {
    font-size: 18px;
    color: #33363A;
}

.main .per-project .rate {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.per-project .barline img {
    height: 480px;
    width: 100%;
}

/* admin dashboard page css end  */


/* project dashboard page css start  */

.all-project .table th {
    font-weight: 600;
    font-size: 14px;
    color: black;
}

.all-project .table td {
    vertical-align: middle;
    font-size: 14px;
}

.all-project .status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.all-project .status-complete {
    background-color: #e8f7ee;
    color: #28a745;
}

.all-project .status-active {
    background-color: #e8f1fd;
    color: #0d6efd;
}

.all-project .status-delayed {
    background-color: #fff2e6;
    color: #fd7e14;
}

.all-project .status-hold {
    background-color: #fffde6;
    color: #ffc107;
}

.all-project .progress {
    height: 6px;
    border-radius: 5px;
}

.all-project .project-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.all-project .table-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.all-project .pagination-footer {
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 13px;
    color: #000000;
    margin-top: 10px;
    gap: 30px;
}

.all-project {
    border: 1px solid #ccc;
    border-radius: 10px;
}

.all-project h6 {
    font-size: 20px;
    margin: 0;
}

.all-project button.btn {
    background: var(--theme-color1);
    color: white;
    border: none;
    padding: 7px 20px;
    border-radius: 20px;
}

.card-new-pro {
    border-radius: 12px;
    padding: 20px;

}

.card-new-pro .form-control {
   padding: 10px 16px;
    background: #ffffff;
    border-color: #ccc;
    border-radius: 34px;
}

.card-new-pro select.form-select {
    height: 58px;
    border-radius: 30px;
    border-color: #ccc;
}

.card-new-pro label.form-label {
    color: #33363A;
    font-weight: 600;
}

.card-new-pro .nav-tabs .nav-link {
    border: none;
    color: #33363A;
    font-weight: 600;
    font-size: 20px;
}

.card-new-pro .nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--theme-color1);

    color: var(--theme-color1);
    background: transparent;
}

.upload-tab #fileInput {
    display: none;
}

.upload-tab .img-preview {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.upload-tab.upload-tab .img-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.upload-tab .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}



/* project-dashboard page css end  */


/* sales admin dashboard page css start  */


.barline-sales img {
    height: 350px;
}

.quote a.nav-link.active {
    border: none;
    color: var(--theme-color1);
    font-weight: 600;
    border-bottom: 3px solid var(--theme-color1);
}

.quote a.nav-link {
    color: black;
    font-weight: 600;
    font-size: 16px;
}

.quote .controls .input-group-text {
    background: #fff;
    border-right: 0;
}

.quote .controls input.form-control {
    border-left: 0;
}

/* .quote td.active {
    background: #EEFFEF;
} */

.quote .table td {
    padding: 15px 10px;
}

/* sales admin dashboard page css end  */


/* assign team page css start  */


.assign input[type="radio"].tab-radio {
    display: none;
}

/* Content display control */
.assign #tab1:checked~.content #content1,
.assign #tab2:checked~.content #content2,
.assign #tab3:checked~.content #content3,
.assign #tab4:checked~.content #content4,
.assign #tab5:checked~.content #content5,
.assign #tab6:checked~.content #content6,
.assign #tab7:checked~.content #content7 {
    display: block;
}

/* Hide all tab contents by default */
.assign .tab-content {
    display: none;
    padding-top: 0;
}

/* Tab link active styling */

.assign nav label {
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: var(--theme-color1);
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 500;
}

.assign #tab1:checked~nav label[for="tab1"],
.assign #tab2:checked~nav label[for="tab2"],
.assign #tab3:checked~nav label[for="tab3"],
.assign #tab4:checked~nav label[for="tab4"],
.assign #tab5:checked~nav label[for="tab5"],
.assign #tab6:checked~nav label[for="tab6"], 
.assign #tab7:checked~nav label[for="tab7"] {
    border-bottom: 3px solid var(--theme-color1);
    color: var(--theme-color1);
    font-weight: 700;
}

/* Layout for form groups in two columns */
.assign .form-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.assign .form-group {
    flex: 1 1 45%;
    min-width: 250px;
}

.assign h5 {
    font-size: 26px;
    color: #33363A;
}

.card-new-pro select {
    padding: 16px;
    background: #ffffff;
    border-color: #ccc;
    border-radius: 34px;
    width: 100%;
}

/* assign page css end  */

/* quote2 page css start  */

.jsw .status-uploaded {
    color: #28a745;
    font-weight: 600;
}

.jsw .status-pending {
    color: #FFC107;
    /* Bootstrap warning color */
    font-weight: 600;
}

.jsw .status-inprogress {
    color: #FFC107;
    font-weight: 600;
}

.jsw .icon-link {
    margin-right: 5px;
}

/* Custom badge-like status styles */
.jsw .status-badge {
    padding: 0.25em 0.5em;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    min-width: 70px;
    text-align: center;
}


.jsw .email-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

.jsw .email-link:hover {
    text-decoration: underline;
}

.jsw .table-responsive {
    border: 1px solid #ccc;
    border-radius: 10px;
}




.jsw h6 {
    font-size: 20px;
    color: black;
    font-weight: 600;
}
.p-dlt {
    background: transparent !important;
    color: red !important;
    border: 1px solid red !important;
    padding: 3px 7px !important;
    border-radius: 5px !important;
}

/* quote2 page css end  */

.hero-section.about-ban {
    height: 400px; 
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    display: flex;
    align-items: center;         
    justify-content: center;     
    position: relative;
    color: white;
}

.hero-section.about-ban .hero-content {
    z-index: 2; 
    position: relative;
}

.hero-section.about-ban::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.contact-icon{
    filter: invert();
}


.desc_one {
    width: 300px;
}


.stitle {
    max-width: 200px;
}

.service-action {
    display: flex;
    gap: 10px;
    align-items: center;
}

.project-btn {
    background-color: var(--theme-color1);
    padding: 4px;
    color: white;
    font-size: 12px;
    border: 1px solid var(--theme-color1);
    border-radius: 4px;
    transition: all 0.3s ease; /* smooth hover effect */
}

.project-btn:hover {
    background-color: white;
    color: var(--theme-color1);
}

.project-dltbtn {
    background-color: white;
    padding: 3px;
    color: white;
    font-size: 12px;
    border: 1px solid var(--theme-color1);
    border-radius: 4px;
    transition: all 0.3s ease; /* smooth hover effect */
}


.project-dltbtn:hover {
    background-color: white;
    color: var(--theme-color1);
}


.n-btn{
    background-color: var(--theme-color1);
    padding: 11px 15px;
    color: white;
    font-size: 12px;
    border: 1px solid var(--theme-color1);
    border-radius: 4px;
    transition: all 0.3s ease; /* smooth hover effect */
}
.n-btn:hover{
    background-color:  #4c3b8d;
    padding: 11px 15px;
    color: rgb(186, 183, 183);
    font-size: 12px;
    border: 1px solid var(--theme-color1);
    border-radius: 4px;
    transition: all 0.3s ease; /* smooth hover effect */
}

.p-btn {
    background-color: var(--theme-color1);
    padding: 6px;
    color: white;
    font-size: 12px;
    border: 1px solid var(--theme-color1);
    border-radius: 4px;
    transition: all 0.3s ease; /* smooth hover effect */
}

.p-btn:hover {
    background-color: white;
    color: var(--theme-color1);
}

.p-dltbtn {
    background-color: white;
    padding: 5px 8px;
    color: red;
    font-size: 12px;
    border: 1px solid red;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.p-dltbtn:hover {
    background-color: red;
    color: rgb(243, 239, 239);
}


.quote a.nav-link:hover{
    padding:12px 20px !important;
}


.choose-making p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.say .testimonial-card {
    border: 1px solid #D6D6D6;
    padding: 20px;
    border-radius: 20px;
    height: 215px;
}


.sbt-quote {
    position: absolute;
    right: 63px;
    top: 20%;
}

video.hero-video {
    width: 100%;
}

.hero-content {
    position: absolute;
}

/* Responsive start  */

@media (max-width:1399px) {

    .header {
        justify-content: space-between !important;
    }

    .client .meking p {
        max-width: 50%;
        margin: auto;
    }

    .enquiry-section .enq-inner {
        max-width: 80%;
    }

    .value p {
        max-width: 60%;
        margin: auto;
    }
    .hero-section h1 {
    max-width: 70%;
}
  
}

@media (max-width:1199px) {

    .hero-section h1 {
        font-size: 60px;
    }

    h2.main-title {
        font-size: 40px;
    }

    section.client {
        padding-top: 0 !important;
    }

    .client .meking p {
        max-width: 60%;
        margin: auto;
    }

    .social-buttons {
        position: fixed;
        bottom: -80px;
        right: 20px;
        transform: translateY(-50%);
        z-index: 1000;
    }

    .choose-making .response-box .single h5 {
        font-size: 20px;
    }

    .main-para {
        font-size: 14px;
    }

    section.submit {
        margin: 127px 0 0 0;
    }

    .bilt .form-section {
        max-width: 55%;
    }
}

@media(max-width:991px) {
    .navbar a.nav-link.active:before {
        left: 18px;
        bottom: 0;
    }

    .client .meking p {
        max-width: 70%;
        margin: auto;
    }

    .hero-section h1 {
        font-size: 50px;
    }

    .download h4 {
        font-size: 30px;
    }

    .download .playstore img {
        width: 100%;
    }

    h2.main-title::before {
        width: 10px;
        height: 44px;
    }

    h2.main-title {
        font-size: 30px;
    }

    .choose-img img {
        width: fit-content;
        margin-bottom: 45px;
    }

    .company .timeline-item:last-child {
        margin-bottom: 0 !important;
    }

    .structure .us-info {
        max-width: 100%;
    }

    .value p {
        max-width: 70%;
        margin: auto;
    }

    .bilt .form-section {
        max-width: 60%;

    }

    .bilt .stepper {
        flex-direction: column;
        align-items: flex-start;
    }

    .bilt .step {
        text-align: left;
        width: 100%;
    }

    .bilt .step::after {
        display: none;

    }

    .bilt .step .icon {
        margin: 0 15px 0 0;
        float: left;
    }

    .bilt .otp-container {
        padding: 0;
    }

    .bilt .third-section {
        max-width: 80% !important;
    }

    .bilt .form-section h4 {
        color: var(--theme-color1);
        font-size: 22px;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    #sidebarToggle:checked~.sidebar {
        transform: translateX(0);
    }

    .main {
        margin-left: 0;
    }

    .close-btn {
        display: block;
        /* show close button on mobile */
    }



}

@media (max-width:767px) {

    .main-butn-white {
        position: relative;
        padding: 4px 20px;
        margin: 10px 0 0 0;
    }

    .main-butn {
        padding: 4px 20px;
        margin: 10px 0 0 0;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .client .meking h3 {
        font-size: 24px;
    }

    .download h4 {
        font-size: 24px;
    }

    h2.main-title {
        font-size: 30px;
    }

    .choose-section .icon-box h5 {
        font-size: 20px;
    }

    h3.inner-title {
        font-size: 24px;
    }

    .tour img {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 80%;
    }

    section.disaster {
        padding-top: 0 !important;
    }

    .value p {
        max-width: 100%;
        margin: auto;
        padding: 0 50px;
    }

    section.submit {
        margin: 127px 0 0 0;
        padding: 46px 0 0 0;
    }

    .bilt .stepper .step p {
        color: black;
        font-weight: 300;
        margin: 0 0 0 60px;
    }

    section.bilt {
        margin: 134px 0 0 0;
    }

    .bilt .form-section {
        max-width: 80%;
    }

    .bilt .third-section {
        max-width: 100% !important;
    }

    .projects-section p.card-text {
        padding-bottom: 8px;
    }


}

@media (max-width:629px) {
   .main-header button.toggle-buton {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 333;
}

    section.single-blognew {
        margin: 160px 0 0 0;
    }

    .second-header .header {
        padding: 16px 20px !important;
    }
}

@media (max-width:575px) {

    .main-header button.toggle-buton {
        position: absolute;
        right: 20px;
        bottom: 20px;
        z-index: 333;
    }

    .about-ban .about-inner {
        margin-top: 171px;
    }

    .client .meking p {
        max-width: 100%;
        margin: auto;
    }

    .company .timeline-content {
        padding-left: 0;
    }

    .company .com-inner {
        padding-left: 20px;
    }

    .company .timeline {
        padding-left: 35px;
    }

    .company .timeline-dot {
        left: -39px;
    }

    h3.inner-title {
        font-size: 22px;
    }

    .value p {
        max-width: 100%;
        margin: auto;
        padding: 0;
    }

    section.submit {
        margin: 127px 0 0 0;
        padding: 78px 0 0 0;
    }

    section.bilt {
        margin: 191px 0 0 0;
    }

    .bilt h3 {
        font-size: 30px;
    }

    .bilt .form-section {
        max-width: 100%;
    }

    .bilt .otp-input {
        width: 40px;
        height: 40px;

    }
    .hero-section h1 {
    max-width: 90%;
}
}

@media(max-width:480px) {

    .main-header button.toggle-buton {
        position: absolute;
        right: 20px;
        bottom: 20px;
        z-index: 333;
    }

    .header {
        padding: 10px !important;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .built .stat-card h4 {
        font-size: 20px;

    }

    .main-para {
        color: var(--theme-color3);
        font-size: 14px;
    }

    .about-ban .about-inner {
        margin-top: 230px;
    }

    .single-blognew .blog-title {
        font-size: 20px;
    }

    section.single-blognew {
        margin: 227px 0 0 0px;
    }

    section.contact {
        margin: 265px 0 0 0;
    }
}

@media (max-width:425px) {

    .main-header button.toggle-buton {
        position: absolute;
        right: 20px;
        z-index: 333;
        top: 20px;
        bottom: auto;
    }
}


