/*--------------------------------------------------
  1. CSS VARIABLES
--------------------------------------------------*/
@font-face {
    font-family: 'Switzer Variable';
    src: url('../fonts/Switzer-Variable.woff2') format('woff2'),
        url('../fonts/Switzer-Variable.woff') format('woff'),
        url('../fonts/Switzer-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

:root {
    --bs-primary: #2E3192;
    --bs-primary-light: #3B37FD;
    --bs-primary-rgb: 46, 49, 146;
    --bs-secondary: #3B37FD;
    --bs-btn-bg: #005EB8;
    --bs-body-color: #000000;
    --bs-heading-color: #000000;
    --bs-link-color: #2E3192;
    --bs-link-hover-color: #3B37FD;
    --bs-heading-text: 'Space Grotesk';
    --bs-body-text: 'Poppins';
    --bs-button-text: 'Switzer Variable';
}

/* Override Bootstrap button variables */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary-light);
    --bs-btn-hover-border-color: var(--bs-primary-light);
}

.btn-accent {
    background-color: #005EB8;
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #004a94;
    color: #fff;
}

/*--------------------------------------------------
  2. GLOBAL STYLE
--------------------------------------------------*/
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--bs-body-color);
    background-color: #fff;
    font-family: var(--bs-body-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-heading-color);
    font-weight: 700;
    font-family: var(--bs-heading-text);
}

h1,
.h1 {
    font-size: 50px;
}

.h2,
h2 {
    font-size: 44px;
}

h3,
.h3 {
    font-size: 36px;
}

h4,
.h4 {
    font-size: 28px;
}

h5,
.h5 {
    font-size: 24px;
}

h6,
.h6 {
    font-size: 18px;
    font-family: "Jost";
    font-weight: 500;
}

p {
    color: var(--bs-body-color);
    line-height: 1.7;
}

img {
    max-width: 100%;
}

/* Links */
a {
    color: var(--bs-link-color);
    text-decoration: none;
}

a:hover {

    text-decoration: none;
}

.btn {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 600;
    font-family: var(--bs-button-text);
    border-radius: 5px;
    background: var(--bs-primary);
    padding: 12px 16px;
    color: #fff;
    transition: all 0.6s ease 0s;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 5px !important;
}

.btn:hover {
    background-color: #fff;
    color: var(--bs-primary);
}

/*--------------------------------------------------
  3. NAVBAR
--------------------------------------------------*/
.navbar {
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary) !important;
}

.nav-link {
    color: var(--bs-body-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bs-primary) !important;
}

.navbar-toggler {
    border: none;
}

.right-top {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Full Screen Menu Base */
.fullscreen-menu {
    position: fixed;
    width: 400px;
    max-width: 100%;
    right: 0 !important;
    left: auto !important;
    padding: 50px;
    inset: 0;
    background-image: url(../images/menu-bg.jpg);
    background-size: cover;
    color: #fff;
    z-index: 9999;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.fullscreen-menu:before {
    content: "";
    background-color: rgba(46, 49, 146, 0.95);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Slide Down + Fade */
.fullscreen-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nav Links */
.fullscreen-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    z-index: 2;
}

.fullscreen-nav li {
    margin: 20px 0;
}

.fullscreen-nav a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateX(50px);
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Animated links after menu opens */
.fullscreen-menu.show .fullscreen-nav a {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger effect */
.fullscreen-nav li:nth-child(1) a {
    transition-delay: 0.1s;
}

.fullscreen-nav li:nth-child(2) a {
    transition-delay: 0.2s;
}

.fullscreen-nav li:nth-child(3) a {
    transition-delay: 0.3s;
}

.fullscreen-nav li:nth-child(4) a {
    transition-delay: 0.4s;
}

.fullscreen-nav li:nth-child(5) a {
    transition-delay: 0.5s;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 110px;
    font-size: 3rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.close-btn:hover {
    color: #3B37FD;
}

.top-logo {
    width: 268px;
}


/*--------------------------------------------------
  4. HERO SECTION
--------------------------------------------------*/
.hero-section {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
    align-self: flex-end;
}

.hero-section h1 {
    font-size: 64px;
    line-height: 80px;
    font-weight: 500;
}

.hero-section p {
    font-family: Jost;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 109.091% */
    text-transform: uppercase;
}

.full-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* IMPORTANT: acts like background-size: cover */
    object-position: center;
}

.hero-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.input-group {
    border-radius: 10px;
    background: rgba(245, 245, 245, 0.20);
    padding: 15px;
    gap: 30px;
}

.hero-form .form-select {
    border: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #DEE2E6;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M1.64604 4.64592C1.69249 4.59935 1.74766 4.56241 1.80841 4.5372C1.86915 4.512 1.93427 4.49902 2.00004 4.49902C2.06581 4.49902 2.13093 4.512 2.19167 4.5372C2.25242 4.56241 2.30759 4.59935 2.35404 4.64592L8.00004 10.2929L13.646 4.64592C13.6925 4.59943 13.7477 4.56255 13.8085 4.53739C13.8692 4.51223 13.9343 4.49929 14 4.49929C14.0658 4.49929 14.1309 4.51223 14.1916 4.53739C14.2524 4.56255 14.3076 4.59943 14.354 4.64592C14.4005 4.6924 14.4374 4.74759 14.4626 4.80833C14.4877 4.86907 14.5007 4.93417 14.5007 4.99992C14.5007 5.06566 14.4877 5.13076 14.4626 5.1915C14.4374 5.25224 14.4005 5.30743 14.354 5.35392L8.35404 11.3539C8.30759 11.4005 8.25242 11.4374 8.19167 11.4626C8.13093 11.4878 8.06581 11.5008 8.00004 11.5008C7.93427 11.5008 7.86915 11.4878 7.80841 11.4626C7.74766 11.4374 7.69248 11.4005 7.64604 11.3539L1.64604 5.35392C1.59948 5.30747 1.56253 5.2523 1.53733 5.19155C1.51212 5.13081 1.49915 5.06568 1.49915 4.99992C1.49915 4.93415 1.51212 4.86903 1.53733 4.80828C1.56253 4.74754 1.59948 4.69236 1.64604 4.64592Z' fill='white'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.hero-form .form-select option {
    background-color: #000;
}

.home-social {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 5;
}

.home-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.home-social ul li {
    font-size: 12px;
}

.home-social ul li a {
    color: #fff;
}

.home-social ul li a:hover {
    text-decoration: underline;
}


/*--------------------------------------------------
  5. CARDS & SECTIONS
--------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 2rem;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: var(--bs-primary);
}

/*--------------------------------------------------
  6. FORMS
--------------------------------------------------*/
.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 49, 146, 0.25);
}

/*--------------------------------------------------
  7. FOOTER
--------------------------------------------------*/
.footer {
    padding: 50px 0;
    background-color: #f5f6ff;
    color: var(--bs-body-color);
}

.footer a {
    color: var(--bs-body-color);
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
    color: var(--bs-primary);
}

/*--------------------------------------------------
  8. UTILITIES
--------------------------------------------------*/
.bg-primary-light {
    background-color: var(--bs-primary-light) !important;
    color: #fff;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-light-primary {
    color: var(--bs-primary-light) !important;
}

.btn-rounded {
    border-radius: 50px !important;
}

/*--------------------------------------------------
  9. RESPONSIVE FIXES
--------------------------------------------------*/

.blue70 {
    position: relative;
}

.blue70::after {
    content: "";
    width: 68%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bs-primary);
    z-index: 0;
}

.blue70 .container {
    z-index: 2;
    position: relative;
}

.info-bar {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.info-icon {
    font-size: 30px;
}

.info-text h6 {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.22px;
}

.info-text p {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.2px;
    margin: 0;
}

.custom-tabs .nav-link {
    background: #f3f3f3;
    border-radius: 6px;
    margin-right: 10px;
    font-weight: 600;
    color: #000;
    border: none;
    padding: 10px 20px;
}

.custom-tabs .nav-link.active {
    background: #fff;
    border-top: 3px solid #2E3192;
    /* blue top border */
    color: #000;
}

.custom-tabs {
    border-bottom: none !important;
}

.v-play {
    width: 60px;
    height: 60px;
    background-color: #fff;
    left: 30px;
    bottom: 30px;
    text-align: center;
    color: var(--bs-primary);
    box-shadow: 0 0 15px var(--bs-primary);
}

.bb-lightbox-mode-fullscreen .bb-lightbox-media-container {
    background-color: var(--bs-primary);
}

.services-section {
    background-image: url(../images/services-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
}

.nav-pills p {
    margin: 0;
}

.nav-pills .tab-header {
    font-weight: 500;
}

.nav-pills .tab-header i {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}

.nav-pills .nav-link.active .tab-header, .nav-pills .nav-link:hover .tab-header {
    color: var(--bs-primary);
}

.nav-pills .nav-link.active .tab-header i {
    opacity: 1;
    visibility: visible;
}

.services-tab-image {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.services-tab-image img {
    width: 100%;
    height: auto;
    min-height: 100%;
}

.services-tab-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.tab-pane {
    position: relative;
}

.services-tab-text {
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 30px;
}

.services-tab-text h3,
.services-tab-text p {
    color: #fff;
    font-weight: 400;
}

.project-section {
    position: relative;
    background-image: url(../images/slide22.jpg);
    background-size: cover;
    background-position: center;
}

.project-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(46, 49, 146, 0.9);
    z-index: 1;
}

.project-section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    bottom: 0;
    background-color: #F2F5FB;
    z-index: 2;
}

.project-section .container {
    z-index: 9;
    position: relative;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.w-400 {
    font-weight: 400;
}

.project-box {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.author-box img {
    width: 70px;
    border-radius: 50%;
}

.author-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.author-detials h6 {
    margin: 0;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.author-detials h5 {
    margin: 0;
    color: #FFF;
    font-family: "Switzer Variable";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.project-box-text {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
    display: flex;
    padding: 30px 30px 20px 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 5px;
    flex: 1 0 0;
}

.project-box-text h6,
.project-box-text h4,
.project-box-text p {
    color: #fff;
}

.project-box-text>h6 {
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.project-box-text p {
    line-height: 22px;
}

.pl-50 {
    padding-left: 50px !important;
}

.fw-500 {
    font-weight: 500;
}

.swiper-slide img {
    border-radius: 15px;
    border: 1px solid #AAA;
    background: #FFF;
}

.logo-slider-section .logo-slider-section {
    background-color: #F2F5FB;
    padding-top: 0;
    width: 50px;
    margin: 0 auto;
}

.form-inner {
    display: flex;
    gap: 12px;
}

.subscriber {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background-color: transparent;
    color: #fff;
    padding: 8px 15px;
    width: 400px;
}

.form-inner .btn.submit-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    transition: all 0.6s ease 0s;
}

.form-inner .btn.submit-button:hover {
    background-color: transparent;
    color: #fff;
}

p small {
    font-size: 11px;
}

.newsletter-section .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    margin-bottom: 30px;
}

.since {
    display: flex;
    gap: 0;
    align-items: center;
}

.footer-logo-section {
    padding: 50px 0;
}

.since h2 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-family: "Albert Sans";
    font-size: 170px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -6.9px;
    color: transparent;
    margin: 0 0 0 -25px;
}

.since h5 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F6F6F6;
    font-family: "Albert Sans";
    font-size: 55px;
    font-weight: 600;
    letter-spacing: -1.8px;
    color: transparent;
    transform: rotate(-90deg);
    margin: 0;
}

.footer-logo h1 {
    color: #FFF;
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -6.15px;
}

.footer-menu h5 {
    color: #FFF;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px dashed #FFF;
    margin-bottom: 25px;
}

.footer-menu ul {
    counter-reset: my-counter;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
    font-size: 20px;
    counter-increment: my-counter;
    position: relative;
    padding-left: 30px;
    /* space for number */
}

.footer-menu ul li:before {
    content: counter(my-counter, decimal-leading-zero);
    /* 01, 02, 03 */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 30px;
}

.footer-menu ul li a,
.footer-menu a,
.footer-menu p,
.lower-footer p,
.lower-footer h6,
.lower-footer a {
    color: #fff;
}

.footer-menu ul li a:hover,
.lower-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-menu .contact-info p {
    font-size: 20px;
    margin-bottom: 10px;
}

.lower-footer p {
    margin: 0;
}

.lower-footer {
    padding: 20px 0 0;
    border-top: 1px dashed #FFF;
    margin-top: 20px;
}

.text-right {
    text-align: right;
}
.hero-section.inner-banner {
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.inner-banner p {
  font-size: 16px;
  margin: 0;
  color: #fff;
}
.bg-light {
  background-color: #F2F5FB;
}
.container-md {
  width: 900px;
  max-width: 100%;
}
.exp-number {
  font-size: 134px;
  margin: 0;
  line-height: 1;
}
.experience-box h5 {
  font-size: 30px;
}
.map-section {
  position: relative;
}
.map-section h3 {
  color: rgba(31, 31, 31, 0.00);
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #AAA;
  font-family: "Space Grotesk";
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
}
.img-showcase {
  display: flex;
  gap: 15px;
}
.img-showcase img {
  max-width: 200px;
  height: auto;
}
.quality-section {
  position: relative;
}
.quality-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background-color: var(--bs-primary);
  z-index: 1;
}
.quality-section .container{
    z-index: 2;
    position: relative;
}
.quality-text-box {
  padding: 100px 50px;
  background-color: #fff;
  border-radius: 50px;
}
.quality-section li {
  margin-bottom: 10px;
}
.product-box {
  display: flex;
  padding: 30px 30px 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
}
/*.product-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.7);
    z-index: 0;
}*/
.product-box-headline, .product-box-footer {
  position: relative;
  z-index: 2;
}
.product-box-headline h3{
    font-size: 40px;
    height: 100px;
}
.product-box-footer {
  display: flex;
  padding: 15px 0;
  gap: 30px;
  justify-content: space-between;
  border-top: 1px solid #fff;
  width: 100%;
}
.product-box-footer a {
  color: #fff;
}
.product-box-footer i {
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
}
.section-headline h2, .section-headline h3, .section-headline h4{
    font-family: var(--bs-body-text);
}
.border-right {
  border-right: 1px solid #000;
  margin-right: 30px;
}
.projuct-inner-box {
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
}
.category-box {
  display: flex;
  gap: 25px;
}
.category-box-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.category-box-item img {
  width: 50px;
}
.category-box-item p {
  margin: 0;
  font-size: 18px;
}
.product-details-text ul {
  list-style: none;
  padding: 0 0 0 40px;
  margin: 20px 0 30px 0px;
  border-left: 1px solid #000;
}
.product-details-text ul li {
  padding-left: 30px;
  margin-bottom: 5px;
  background-image: url(../images/tick1.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 18px auto;
}
.product-details-text .border-right{
    padding-right: 80px;
}
.thumb {
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumb:hover {
    transform: scale(1.05);
    border-color: #005EB8;
}
.services-box h5 {
  border-radius: 8px;
  background: #005EB8;
  padding: 15px;
}
.product-box.services-box {
  height: 450px;
  margin-bottom: 30px;
}
.services-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 35%, #0A0B33 100%);
}
.contact-page-box h6 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-family: var(--bs-body-text);
}
.contact-page-box h6:before{
    content: "";
    position: absolute;
    width: 27px;
    height: 3px;
    left: 0;
    top: 35px;
    background-color: #000;
}
.contact-page-box a{
    color: #000;
}
.contact-form-box {
  padding: 90px;
  border-radius: 30px;
  position: relative;
}
.contact-form-box .form-control {
  background-color: transparent;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
.contact-form-box .form-control::placeholder {
  color: #fff;
}
.contact-form-box .btn.btn-light {
  padding: 12px 50px;
}
.sub-menu {
  display: none;
}
.fullscreen-nav svg {
  display: none;
}
.wpcf7-form-control-wrap {
    float: left;
    width: 100%;
}
span.wpcf7-not-valid-tip{
	position:absolute;
	top:5px;
	right:5px;
}
.wpcf7-response-output, .wpcf7-validation-errors {
    margin: 0 !important;
    position: absolute;
    bottom:-32px;
}
.contact-form-box .wpcf7-response-output, .contact-form-box .wpcf7-validation-errors {
    bottom:30px;
    color: #fff;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: none;
    color: #f00;
}
form p {
  margin: 0;
}
.breadcrumbs a{
    color: #fff;
}
.projuct-inner-box img{
    margin-bottom: 15px;
}
table {
  width: 100%;
  margin-bottom: 10px;
}
table td, table th {
  border: 1px solid #000;
  padding: 10px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .navbar-brand {
        padding: 0;
    }

    .top-logo {
        width: 170px;
    }

    .btn.quote {
        display: none;
    }

    .fullscreen-menu {
        max-width: 100%;
        max-height: 100vh;
        width: 100%;
    }

    .blue70::after {
        width: 100%;
    }

    .home-social {
        right: -100px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .pl-50 {
        padding-left: 15px !important;
    }

    .services-tab-text {
        position: initial;
        padding: 15px;
        background-color: #000;
        margin-top: 20px;
    }

    .nav-pills .tab-header {
        margin: 0;
    }

    .nav-pills .tab-header i,
    .services-tab-image::before {
        display: none;
    }

    .nav-pills .nav-link {
        display: flex;
        gap: 10px;
    }

    .nav-pills .nav-link h4.tab-header {
        font-size: 20px;
        line-height: 24px;
    }

    section {
        padding: 40px 0;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .project-section .btn.border-white {
        margin-bottom: 20px;
    }

    .project-box {
        margin-bottom: 10px;
    }

    .h2,
    h2 {
        font-size: 34px;
    }

    .form-inner {
        flex-direction: column;
    }

    .footer-logo-section {
        padding: 10px 0;
    }

    .footer-logo h1 {
        font-size: 90px;
    }

    .since h5 {
        font-size: 45px;
    }

    .since h2 {
        font-size: 130px;
    }

    .footer-logo-section {
        display: none;
    }

    .footer-menu ul li,
    .footer-menu .contact-info p {
        font-size: 16px;
    }

    .footer-menu ul li::before {
        font-size: 12px;
        line-height: 24px;
    }

    .lower-footer .text-center,
    .lower-footer .text-right {
        text-align: left !important;
    }
    .map-section h3{
        font-size: 30px;
    }
    .quality-section::before{
        display: none;
    }
    .quality-text-box {
        padding: 0;
        border-radius: 0;
        margin-bottom: 20px;
    }
    .contact-form-box {
        padding: 50px 20px;
    }
    .lower-footer p{
        font-size: 14px;
    }
    .product-box{
        margin-bottom: 30px;
        padding: 50px 30px 50px;
        height: auto;
    }
    .hero-section.inner-banner p:not(.breadcrumbs) {
        display: none;
    }
    .category-box{
        flex-direction: column;
    }
}