@charset "UTF-8";
/* CSS Document */


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

*, *::before, *::after {
  box-sizing: border-box; /* Ensures padding and borders are included in element's total width/height */
  margin: 0;
  padding: 0;
}

body{ margin: 0; padding: 0;   font-family: "Poppins", sans-serif; line-height: 1.4}

html {
  scroll-behavior: smooth;
}
/*header*/

/* Header Styling */

header{width: 100%;background: #fff;position: relative;height: 80px; position: fixed; z-index: 9; top:0}
.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
	margin: 0 auto;
	height: 80px
	
}


.header-inn{
	
	    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
	margin: 0 auto;
	max-width: 1200px;
	
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
	border-bottom: 1px solid #000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
    display: none; /* Hide on desktop */
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color:#000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
	
	.header-inn{ padding: 10px 4%}
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 80px 0 0 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }

    .header.scrolled .nav-toggle {
        /* Optional: Change hamburger color on scroll */
        color: var(--secondary-color);
    }
}

/*header END*/

.main-width{ width: 100%; height: auto; position: relative;}

.max-width{max-width: 1200px;height: auto;position: relative;width: 90%;margin: 0 auto;padding: 80px 0}
.banner-max-width{ max-width: 1200px; height: auto; position: relative; width: 95%;  margin: 0 auto; padding: 20px 0}
.Mtop{ margin-top: 80px}


/*banner-holder*/
.banner-bg{ background: url("/images/Banner-bg.png") no-repeat; background-position:center; background-size: cover}
.banner-wrap{ display: flex; line-height: 0.8; align-items: center }
.banner-wrap > div{ width: 50%}
.banner-wrap > div img { width: 100%; height: auto}
.banner-wrap > div:nth-child(2) img { width: auto; height: auto}
.banner-wrap h1{ font-size: 114px ; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0;padding: 0}
.banner-wrap h2{ font-size: 114px; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0;padding: 0; margin-bottom: 20px;}


/*banner-end*/


.max-width h3{ font-size: 40px ; font-weight: 700; text-transform: uppercase; margin: 0;padding: 20px 0}
.max-width h4{ font-size: 32px ; font-weight: 700; text-transform: uppercase; margin: 0;padding: 20px 0; line-height: 1.1}
.max-width p{ font-size: 16px ; font-weight: 400; margin: 0;padding: 0px 0}
.max-width .red { color: #ED1651}
.max-width .white { color: #fff}
.max-width .black { color: #000}

.product-wrapper{display: flex;flex-wrap: nowrap;align-items: flex-start;margin-top: 40px;}
.product-wrapper > div:nth-child(1){width: 30%;}
.product-wrapper > div:nth-child(2){ width: 70%}

.product-wrapper > div:nth-child(2) h4 { font-size: 32px ; font-weight: 600; text-transform: uppercase; margin: 0;padding: 0px 0 }
.product-wrapper > div:nth-child(2) h5 { font-size: 24px ; font-weight: 500; text-transform: uppercase; margin: 0;padding: 0px 0 }
.product-wrapper > div:nth-child(2) p { font-size: 16px ; font-weight: 400;  margin: 0;padding: 0px 0 }

.product-pointer{ display: flex; flex-wrap: nowrap; align-items: flex-start; margin: 10px 0;  }
.product-pointer div{ width: 50%;  }
.product-pointer .head { font-size: 16px; font-weight: 600; margin:5px 0;padding: 0px 0  }
.product-pointer ul { margin: 0 0 0 20px; padding: 0}
.product-pointer li { margin: 0; padding: 0; list-style-type: disc; font-size: 16px; font-weight: 400; }
.product-wrapper button{display: flex;background: #ED1651;border-radius: 100px;justify-content: center;align-items: center;padding: 10px 30px;border: 0;color: #fff;font-size: 16px;font-weight: 600;margin: 20px 0;cursor: pointer;}

.product-wrapper button img{ margin-right: 5px}


hr{ max-width: 1200px; width: 98%; background: #000000; height: 1px; margin: 10px 0; border: 0 }
.grey-bg{ background: #F6F6F6;}
.grey-red{ background: #ED1651; color: #fff}

.about-wrapper{display: flex;flex-wrap: wrap;margin: 20px 0;}
.about-wrapper > div{width: 33.3%;display: flex;align-items: center;justify-content: space-between;}
.about-wrapper > div > div:nth-child(1) {width: 30%; }
.about-wrapper > div > div:nth-child(2) {width: 70%; font-size: 16px; font-weight: 400; color: #fff; }

.contact-pointer  { margin: 20px 0 20px 20px; padding: 0}
.contact-pointer li { margin: 0; padding: 0; list-style-type: disc; font-size: 16px; font-weight: 400; }


.field-wrapper{display: flex;flex-wrap: wrap;margin: 20px 0; align-items: center;justify-content: space-between;}
.field-wrapper > div{width: 49%;/* padding:0 20px; */}
.field-wrapper > div:nth-child(1) { border-right: 1px solid #000;}

.field-wrapper > div:nth-child(1) input {width: 96%;padding: 0px 20px 20px 30px;margin:10px 0;border: none;border-bottom: 1px solid black;outline: none;font-size: 16px;font-weight: 400;}
.field-wrapper > div:nth-child(1) textarea  {width: 98%;padding: 0px 20px 20px 30px;margin:10px 0;border: none;border-bottom: 1px solid black;outline: none;font-size: 16px;font-weight: 400;}
.name {background: url("images/name.png") no-repeat; background-size: 24px auto; background-position: left top}
.mobile {background: url("images/mobile.png") no-repeat; background-size: 24px auto; background-position: left top}
.email {background: url("images/email.png") no-repeat; background-size: 24px auto; background-position: left top}
.message {background: url("images/message.png") no-repeat; background-size: 24px auto; background-position: left top}

.field-wrapper button{display: flex;background: #000;justify-content: center;align-items: center;padding: 10px 30px;border: 0;color: #fff;font-size: 20px;font-weight: 500;margin: 20px 0;text-transform: uppercase;}


.field-wrapper > div:nth-child(2) > div:nth-child(1) { font-size: 24px; font-weight: 400; display: flex; align-items: center;}
.field-wrapper > div:nth-child(2) > div:nth-child(1) img { width: 40px; height: auto; margin-right: 10px}
.field-wrapper > div:nth-child(2) > div:nth-child(2) { font-size: 40px; font-weight: 600; display: flex; align-items: center;}

.footer{ background: #000; font-size: 10px; color: #fff}
.footer-width{ max-width: 1200px; height: auto; position: relative; width: 95%;  margin: 0 auto; padding: 20px 0}





@media (max-width: 768px) {
	
	.header { height: 60px}
	.header-inn {align-items: center;}
	
	.logo img{ width: 170px; height: auto}
	.banner-wrap{ flex-wrap: wrap}
	.Mtop { margin-top: 60px}
	.max-width { padding: 60px 0;}
	.max-width h3 {font-size: 28px;}
	.max-width p { font-size: 14px;}
	.product-wrapper > div:nth-child(2) h4 { font-size: 28px}
	.product-wrapper > div:nth-child(2) h5 { font-size: 20px;}
	.about-wrapper > div > div:nth-child(1) img{ width: 80px; height: auto }
	
	.banner-wrap > div:nth-child(2) img { width: 100%; height: auto}
	.banner-wrap h1 {font-size: 70px;}
	.banner-wrap h2 {font-size: 70px;}
	.product-wrapper { flex-wrap: wrap}
	
	.product-wrapper > div:nth-child(1) {/* width: 100%; */}
	.product-wrapper > div:nth-child(1) img { width: 95%; height: auto}
	.product-wrapper > div:nth-child(2) {/* width: 100%; */}
	.product-pointer { flex-wrap: wrap}
	.product-pointer div { width: 100%; }
	
	.about-wrapper > div > div:nth-child(1) { width: 120px}
	.about-wrapper > div > div:nth-child(2) { width: 90%;}
	
	.about-wrapper{ flex-wrap: wrap}
	.about-wrapper > div { width: 100%}
	.product-pointer li { font-size: 14px;}
	.product-wrapper > div:nth-child(2) p { font-size: 14px;}
	
	.field-wrapper > div { width: 100%;}
	.field-wrapper > div:nth-child(1) { border-right: 0; border-bottom: 1px solid #000}
	.field-wrapper > div:nth-child(2) { margin-top: 40px}
	.field-wrapper > div:nth-child(2) > div:nth-child(2) { font-size: 30px}
	.product-wrapper button {font-size: 14px}
		
}




@media (max-width: 550px) {
	
	.header { height: 60px}
	.header-inn {align-items: center;}
	
	.logo img{ width: 170px; height: auto}
	.banner-wrap{ flex-wrap: wrap}
	.Mtop { margin-top: 60px}
	.max-width { padding: 60px 0;}
	.max-width h3 {font-size: 28px;}
	.max-width p { font-size: 14px;}
	.product-wrapper > div:nth-child(2) h4 { font-size: 28px}
	.product-wrapper > div:nth-child(2) h5 { font-size: 20px;}
	.about-wrapper > div > div:nth-child(1) img{ width: 80px; height: auto }
	
	.banner-wrap > div{ width: 100%}
	.banner-wrap > div:nth-child(2) img { width: 100%; height: auto}
	.banner-wrap h1 {font-size: 70px;}
	.banner-wrap h2 {font-size: 70px;}
	.product-wrapper { flex-wrap: wrap}
	
	.product-wrapper > div:nth-child(1) { width: 100%;}
	.product-wrapper > div:nth-child(2) { width: 100%;}
	.product-pointer { flex-wrap: wrap}
	.product-pointer div { width: 100%; }
	
	.about-wrapper{ flex-wrap: wrap}
	.about-wrapper > div { width: 100%}
	.product-pointer li { font-size: 14px;}
	.product-wrapper > div:nth-child(2) p { font-size: 14px;}
	
	.field-wrapper > div { width: 100%;}
	.field-wrapper > div:nth-child(1) { border-right: 0; border-bottom: 1px solid #000}
	.field-wrapper > div:nth-child(2) { margin-top: 40px}
	.field-wrapper > div:nth-child(2) > div:nth-child(2) { font-size: 30px}
	.product-wrapper button {font-size: 14px}
	.field-wrapper > div { padding: 0}
		
}


.bal-tds-link{
    text-decoration: none !important;
}
