:root {
    --primary-color: #030625;
    /* Maroon */
    --secondary-color: #1b7895;
    /* Golden */
    --light-bg-text-color: #000;
    /* Black */
    --dark-bg-text-color: #fff;
    /* White */
    --heading-color: #16243E;
    /* Navy */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'outfit';
    src: url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Impact';
    src: url('../fonts/impact/impact.ttf') format('truetype');
    font-weight: 500;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button {
    font-family: 'outfit', sans-serif;
}

.main-header {
    padding: 24px 12px;
}

.header-logo-wrapper h1 a {
    font-size: 47px;
    font-weight: 500;
    font-family: "Impact";
    text-decoration: none;
    text-transform: uppercase;
    color: var(--primary-color);
}

.header-logo-wrapper h1 a span {
    color: var(--secondary-color);
}

.header-email-wrapper p {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    color: var(--primary-color);
}

.header-email-wrapper p span {
    color: var(--secondary-color);
}

img.logo {
    width: 20%;
}
.inventory-sec h1 {
    font-family: 'outfit';
    text-transform: uppercase;
}
.inventory-sec {
    padding-top: 225px;
    background: #f7f7f7;
}
/* Banner Section */
.hero-section {
     padding: 64px 12px;
    background: url(../images/banner.webp) no-repeat center bottom;
    background-size: cover;
    min-height: 667px;
    height: clamp(667px, 85vh, 1000px);
}

.hero-text-wrapper h2 {
    font-size: 98px;
    color: #fff;
    font-weight: 800;
    line-height: 108px;
    text-transform: uppercase;
}

.hero-text-wrapper h2 span {
    display: inline-block;
    /* background: var(--dark-bg-text-color); */
    color: var(--primary-color);
    padding: 12px 8px;
    position: relative;
    z-index: 1;
}

.hero-text-wrapper p {
    font-size: 22px;
    color: #fff;
    line-height: 34px;
}


.hero-text-wrapper a {
    color: var(--dark-bg-text-color);
    background: var(--secondary-color);
    padding: 16px 64px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 21px;
}

/* light sweep effect */
.hero-text-wrapper a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.hero-text-wrapper a:hover::before {
    width: 200%;
}

/* hover scale + shadow */
.hero-text-wrapper a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}



.hero-text-wrapper h2 span::after {
    background: #fff;
    width: 269px;
    height: 136px;
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    z-index: -1;
    transform: rotate(-7deg);
}

.banner-form-wrapper {
    background: #fff;
    padding: 34px;
    box-shadow: -10px 10px 25px rgba(0, 123, 255, 0.2),
        /* Left-bottom */
        10px 10px 25px rgba(0, 123, 255, 0.1),
        /* Right-bottom (mild) */
        -5px 5px 15px rgba(0, 123, 255, 0.3);
    /* Extra left-bottom accent */
}

.banner-form-wrapper h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 21px;
    line-height: 38px;
}

.banner-form-wrapper input[type='text'],
.banner-form-wrapper input[type='number'],
.banner-form-wrapper input[type='email'] {
    width: 100%;
    padding: 16px 12px;
    border: 0;
    background: var(--secondary-color);
    margin-bottom: 16px;
    color: var(--dark-bg-text-color);
}

.banner-form-wrapper input::placeholder {
    color: var(--dark-bg-text-color);
}

.input-wrapper-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Checkbox aur label ke darmiyan space */
    margin-bottom: 19px;
    margin-top: 19px;
}

.banner-form-wrapper input[type='checkbox'] {
    display: none;
}

.banner-form-wrapper input[type='checkbox']+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    /* margin-top: 4px; */
    font-size: 15px;
    width: 92%;
    font-weight: 500;
}

.input-wrapper-checkbox input[type="checkbox"]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #000;
    border-radius: 0;
    background: white;
    transition: all 0.3s;
}

.input-wrapper-checkbox input[type="checkbox"]+label::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Checked state */
.input-wrapper-checkbox input[type="checkbox"]:checked+label::before {
    background: #007bff;
    border-color: #007bff;
}

.input-wrapper-checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

.input-wrapper button {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* animated overlay */
.input-wrapper button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}

/* hover state */
.input-wrapper button:hover::before {
    left: 0;
}

.input-wrapper button:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}


/* Featured Section */

section.featured-slider-sec {
    padding: 64px 12px;
    background: #fff;
}


.feature-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.feature-box .feature-img {
    background: var(--primary-color);
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 16px;
}

.feature-content h4::before {
    content: "";
    position: absolute;
    width: 44%;
    height: 1.3px;
    background: var(--primary-color);
    bottom: -10px;
    left: -26px;
}

.feature-content {
    padding-left: 23px;
}

.feature-content p {
    font-size: 14px;
    line-height: 23px;
}

.feature-slider-arrows {
    display: flex;
    justify-content: end;
}

.arrows-wrapper {
    display: flex;
    gap: 56px;
    background: #000;
    padding: 14px 18px;
    position: relative;
    margin-bottom: 42px;
    justify-content: center; /* optional: center arrows */
}

/* arrow icons wrapper */
.arrows-wrapper div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;   /* optional: square clickable area */
    height: 48px;
    background: #111;  /* dark button background */
    border-radius: 50%; /* circle */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* icon style */
.arrows-wrapper i {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* hover effect */
.arrows-wrapper div:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--primary-color);
}

.arrows-wrapper div:hover i {
    color: #fff; /* optional: icon color change on hover */
}


.slick-slide {
    padding: 0 10px;
}

.arrows-wrapper::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 57%;
    background: transparent;
    border-left: 2px dotted #fff;
    left: 50%;
    transform: rotate(19deg);
    top: 19%;
}


.item.slick-center .feature-img {
    background: var(--secondary-color);
}

.item.slick-center .feature-img img {
    filter: invert(1) brightness(20.5);
}

/* Why choose section */
section.why-choose-sec {
    padding: 12px 12px;
    background: #f7f7f7;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-top: 90px;
}
section.why-choose-sec::after {
    content: '';
    position: absolute;
    top: 0px; 
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}
.works-wrapper {
    padding-top: 72px;
}

.works-wrapper h3 {
    font-size: 43px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 53px;
    /* position: relative; */
    z-index: 3;
    text-transform: uppercase;
}

.works-wrapper h3 span {
    display: inline-block;
    position: relative;
    color: #fff;
    z-index: 3;
    margin-right: 16px;
}

.box-background-wrapper {
    position: relative;
}

.span-background-box {
    display: inline-block;
    position: absolute;
    width: 140px;
    height: 230px;
    background: var(--primary-color);
    top: -170px;
    z-index: 2;
    left: -22px;
}

.work-list {
    padding-top: 50px;
    padding-bottom: 50px;
}

.work-list ul {
    padding: 0;
}

.work-list ul li {
    list-style-type: none;
    font-size: 24px;
    line-height: 37px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #d7d7d7;
    /* default grey */
    transform: scale(1);
    transition: all 0.5s ease;
    position: relative;
}

.work-list ul li i {
    margin-right: 21px;
    font-size: 12px;
    color: #d7d7d7;
    position: relative;
    opacity: 0;
    /* inactive icons hidden */
    transition: opacity 0.5s ease;
}

/* radiating circle for active item */
.work-list ul li.active i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    animation: radiate 2s infinite;
    /* slower */
}



/* active item style */
.work-list ul li.active {
    color: black;
    transform: scale(1.1);
}

.work-list ul li.active i {
    color: var(--secondary-color);
    opacity: 1;
}


/* assign each li animation with delay */
.work-list ul li:nth-child(1) {
    animation: highlight 5s infinite;
}

.work-list ul li:nth-child(2) {
    animation: highlight 5s infinite;
    animation-delay: 1s;
}

.work-list ul li:nth-child(3) {
    animation: highlight 5s infinite;
    animation-delay: 2s;
}

.work-list ul li:nth-child(4) {
    animation: highlight 5s infinite;
    animation-delay: 3s;
}

.work-list ul li:nth-child(5) {
    animation: highlight 5s infinite;
    animation-delay: 4s;
}

.works-wrapper a {
    background: var(--secondary-color);
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* hover effect */
.works-wrapper a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.works-wrapper a:hover::before {
    width: 200%;
}

.works-wrapper a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.why-choose-wrapper h5 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.why-choose-wrapper h2 {
    font-size: 57px;
    position: relative;
    line-height: 70px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.why-choose-wrapper h2::after {
    content: "";
    position: absolute;
    width: 24%;
    height: 2px;
    background: var(--light-bg-text-color);
    bottom: 28px;
    right: 0;
}

.why-choose-wrapper h2 span {
    color: var(--primary-color);
}

.why-choose-box {
    padding: 18px 36px;
    margin-bottom: 6px;
    display: flex;
    gap: 22px;
    transition: all 0.6s ease;
}

.why-choose-box h6 {
    color: var(--secondary-color);
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}

.why-choose-box p {
    color: var(--light-bg-text-color);
    font-size: 16px;
}

.icon {
    padding-top: 9px;
}

.icon i {
    font-size: 23px;
}

.why-choose-box:hover {
    background: var(--secondary-color);
    scale: 1.1;
}

.why-choose-box:hover h6 {
    color: var(--dark-bg-text-color);
}

.why-choose-box:hover p {
    color: var(--dark-bg-text-color);
}

.why-choose-box.icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-box:hover .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 1;
    background: var(--dark-bg-text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-box:hover .icon i {
    color: var(--secondary-color);
}

.why-choose-wrapper a {
    background: var(--primary-color);
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* light sweep effect */
.why-choose-wrapper a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.why-choose-wrapper a:hover::before {
    width: 200%;
}

/* hover scale + shadow */
.why-choose-wrapper a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}


/* Company Section */
.company-sec {
    padding: 94px 12px;
    background: #f7f7f7;
}

/* Reserve Section */
.reserve-parent {
    background: #f7f7f7;
}

.reserve-sec {
        padding: 174px 12px;
    background: url(../images/reserve-sec.webp) no-repeat center bottom;
    background-size: cover;
    min-height: 629px;
    height: clamp(629px, 85vh, 1000px);
    position: relative;

}

section.reserve-sec img {
    position: absolute;
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
}

.reserve-heading-wrapper h4 {
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.reserve-heading-wrapper a {
    background: var(--secondary-color);
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* hover effect */
.reserve-heading-wrapper a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.reserve-heading-wrapper a:hover::before {
    width: 200%;
}

.reserve-para-sec p {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    width: 83%;
}

/* FAQ Section */
section.faq-sec {
    padding: 254px 12px;
}

.faq-box-wrapper {
    min-height: 633px;
    background: var(--secondary-color);
    padding: 124px 54px;
    border-radius: 10px;
    position: relative;
}

.faq-box-wrapper h2 {
    font-size: 47px;
    font-weight: 800;
    color: var(--dark-bg-text-color);
    text-transform: capitalize;
}

.faq-box-wrapper p {
    font-size: 18px;
    color: var(--dark-bg-text-color);
}

.faq-box-wrapper a {
    position: relative;
    /* for pseudo-element positioning */
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: var(--light-bg-text-color);
    /* default text color */
    background: var(--dark-bg-text-color);
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
    /* base z-index */
    transition: all 0.4s ease;
}

/* Ensure text stays on top */
.faq-box-wrapper a span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* Animated background */
.faq-box-wrapper a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 300%;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.6s ease;
    z-index: 1;
    /* behind the text */
}

/* Hover effect */
.faq-box-wrapper a:hover::before {
    width: 200%;
}

.faq-box-wrapper img {
    position: absolute;
    bottom: -170px;
    right: -160px;
}

/* Change text color on hover */
.faq-box-wrapper a:hover span {
    color: var(--dark-bg-text-color);
    /* contrast if needed */
}


/* Gap between accordion items */
/* Accordion items gap and border */
/* Accordion items gap, border, radius */
.faq-accordion .accordion-item {
    margin-bottom: 22px;
    border-radius: 8px;
    border: 1px solid #d7d7d7;
    overflow: hidden;
}

/* Remove default Bootstrap arrows */
.faq-accordion .accordion-button::after {
    display: none;
}

/* Question button styling */
.faq-accordion .accordion-button {
    background: transparent;
    color: #000;
    /* default text color */
    font-weight: 500;
    padding-right: 40px;
    /* space for icon */
    position: relative;
    border: none;
    transition: all 0.4s ease;
    padding-top: 25px;
    padding-bottom: 25px;
}

.faq-accordion .accordion-button::after {
    display: none;
}

/* Custom plus/minus using pseudo-element */
.faq-accordion .accordion-button::before {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #000;
    /* default black */
    transition: all 0.3s ease;
}

/* When active (expanded) change plus to minus and color white */
.faq-accordion .accordion-button:not(.collapsed)::before {
    content: '−';
    color: #fff;
    /* white icon */
}

/* Active question + answer box background */
.faq-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-collapse.show .accordion-body {
    background: var(--primary-color);
    transition: all 0.4s ease;
}

/* Active question color */
.faq-accordion .accordion-button:not(.collapsed) {
    color: #47bac3;
    font-weight: 600;
    padding-bottom: 3px;
}

/* Active icon color */
.faq-accordion .accordion-button:not(.collapsed) .icon {
    color: #fff;
    /* white icon when active */
}

/* Accordion body styling */
.faq-accordion .accordion-body {
    padding: 9px 20px 38px 20px;
    font-size: 16px;
    color: #fff;
    background: var(--primary-color);
    /* ensure bg applied */
    border-radius: 0 0 8px 8px;
    /* smooth bottom corners */
    transition: all 0.4s ease;
}

/* Glow effect only on active body */
.faq-accordion .accordion-collapse.show .accordion-body {
    box-shadow: 0 0 40px 15px rgba(3, 6, 37, 0.6);
    /* dark glow */
}

/* Remove line/border between question and answer */
.faq-accordion .accordion-collapse {
    border: none;
}

/* Remove default focus outline (blue border) */
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.bottom-form-sec {
      background: url(../images/form-bg.webp) no-repeat center bottom;
    background-size: cover;
    min-height: 710px;
    height: clamp(710px, 85vh, 950px);
    position: relative;
    padding: 0 25px;
}
.bottom-form-sec .circle-img {
    position: absolute;
    top: -230px;
    z-index: 4;
    left: -130px;
}
.bottom-form-child {
    /* background: url(../images/form-child.webp) no-repeat; */
    /* padding: 0 64px; */
    position: relative;
    top: -99px;
}

.bottom-form-child h2 {
    color: #fff;
    font-weight: 800;
    font-size: 50px;
}

.bottom-form-child p {
    color: #fff;
    /* text-transform: lowercase; */
    font-size: 20px;
}



.bottom-form {
    background: #fff;
    padding: 25px;
    box-shadow: -10px 10px 25px rgba(0, 123, 255, 0.2),
        /* Left-bottom */
        10px 10px 25px rgba(0, 123, 255, 0.1),
        /* Right-bottom (mild) */
        -5px 5px 15px rgba(0, 123, 255, 0.3);
    /* Extra left-bottom accent */
    position: relative;
    top: 262px;
}



.bottom-form input[type='text'],
.bottom-form input[type='number'],
.bottom-form input[type='email'] {
    width: 100%;
    padding: 16px 12px;
    border: 0;
    background: #e8f1f4;
    margin-bottom: 16px;
    color: var(--dark-bg-text-color);
}

.bottom-form input:placeholder {
    color: var(--light-bg-text-color);
}

.questions-headings-wrapper {
    min-height: 533px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.bottom-form textarea {
    width: 100%;
    padding: 16px 12px;
    border: 0;
    background: #e8f1f4;
    margin-bottom: 16px;

    color: var(--dark-bg-text-color);
}

.bottom-form input::placeholder {
    color: var(--light-bg-text-color);
}

.bottom-form textarea::placeholder {
    color: var(--light-bg-text-color);
}

.bottom-form .input-wrapper-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Checkbox aur label ke darmiyan space */
    margin-bottom: 19px;
    margin-top: 19px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.bottom-form input[type='checkbox'] {
    display: none;
}

.bottom-form input[type='checkbox']+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    /* margin-top: 4px; */
    font-size: 15px;
    width: 92%;
    font-weight: 500;
}

.bottom-form .input-wrapper-checkbox input[type="checkbox"]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #000;
    border-radius: 0;
    background: white;
    transition: all 0.3s;
}

.bottom-form .input-wrapper-checkbox input[type="checkbox"]+label::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Checked state */
.bottom-form .input-wrapper-checkbox input[type="checkbox"]:checked+label::before {
    background: #007bff;
    border-color: #007bff;
}

.bottom-form .input-wrapper-checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

.bottom-form .input-wrapper button {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    font-size: 20px;
    font-weight: 400;
}

.container-child {
    position: relative;
    top: -75px;
}

.email-wrapper {
    position: absolute;
    bottom: 60px;
    left: 120px;
}

.email-wrapper h4 {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
}

.email-wrapper p {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}


/* bottom logo section */
section.bottom-logo-sec {
    padding: 24px 12px;
    text-align: center;
}

section.bottom-logo-sec h2 {
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Impact';
    color: var(--primary-color);
}

section.bottom-logo-sec h2 span {
    color: var(--secondary-color);
}

footer.footer-sec {
    padding: 24px 12px;
    background: var(--primary-color);
    text-align: center;
}

.footer-list ul li {
    display: inline-block;
    margin-right: 7px;
}

.footer-list ul li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    color: var(--dark-bg-text-color);
}

.copyright-sec p {
    font-size: 18px;
    color: var(--dark-bg-text-color);
}

 .footer-list li:not(:last-child)::after {
    content: "|";
    margin-left: 12px;
    color: var(--dark-bg-text-color);
} 
label .highlight{
    color: var(--secondary-color);
}
.custom-gutter{
     --bs-gutter-x: 4rem;
}
.works-heading {
    position: relative;
}
.wrapper{
  width:100%;
  padding-top: 20px;
  text-align:center;
}
.carousel{
  width:100%;
  margin:0px auto;
}
.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
}
.wrapper .slick-dots li button:before {
  font-size:20px;
  color:white;
}
@keyframes radiate {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}