@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #cf2027;
    --color-secondary: #1e354c;
    --color-dark: #13202d;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
}

html {
    overflow-x: hidden;
}

p {
    margin: 0;
}

.swiper-container {
    overflow: hidden;
}

.swiper img {
    width: 100%;
}

.swiper-wrapper {
    will-change: transform;
}

a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

.gradient-bg {
    background: #FFF2F2;
    background: linear-gradient(316deg, rgba(255, 242, 242, 1) 0%, rgba(229, 241, 250, 1) 50%, rgba(247, 247, 247, 1) 100%);
}

/*Padding Item*/
.section-padding-1 {
    padding: 70px 0;
}

/*Padding Item ends*/
/*header*/
header {
    transition: .3s;
}

header.sticky {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

header.sticky.sticky-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #FFF;
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 9%);
    position: fixed;
}

header.sticky.sticky-active .iase-menu li a {
    color: #000;
    padding: 21px 0;
}

header.sticky.sticky-active .header-top-row {
    display: none;
}

.logo {
    margin: 16px 0;
    width: 210px;
}

header.sticky.sticky-active .logo {
    width: 180px;
}

header.sticky.sticky-active .main-menu ul li a {
    padding: 27px 0;
    color: #000000;
}

header.sticky.sticky-active .main-menu ul li.enquiry-btn a {
    padding: 9px 19px;
    margin: 19px 0;
    color: #ffffff;
}

.iase-logo .logo-dark {
    display: none;
    width: 180px;
}

header.sticky-active .iase-logo .logo-dark {
    display: block;
}

header.sticky-active .iase-logo .logo {
    display: none;
}

/*header*/
.header-top-row {
    background: linear-gradient(to right, #e32821 0%, #0150aa 100%);
    color: #FFF;
}

.header-top-contacts {
    display: flex;
    gap: 15px;
}

.header-top-contacts a {
    color: #FFF;
}

.header-top-contacts svg {
    fill: #FFF;
    width: 28px;
    height: 28px;
}

header {
    padding: 0px 0px;
    z-index: 99;
    width: 100%;
    position: fixed;
}

.main-menu ul {
    display: flex;
    justify-content: flex-end;
    gap: 37px;
}

.main-menu ul li a {
    color: #ffffff;
    display: block;
    padding: 41px 0;
    font-weight: 500;
    font-size: 15px;
}

.main-menu ul li.enquiry-btn a {
    color: #ffffff;
    display: block;
    padding: 9px 19px;
    font-weight: 500;
    font-size: 15px;
    background: var(--color-primary);
    display: flex;
    border-radius: 50px;
    margin: 33px 0;
    align-items: center;
    gap: 5px;
}

.main-menu ul li.enquiry-btn a svg {
    width: 15px;
    height: 15px;
    fill: #FFF;
}

.phone-btn a svg {
    fill: var(--color-primary);
    width: 25px;
    height: 25px;
}

.vertical {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.skewback {
    clip-path: polygon(0 0, -100% 0, 100% 100%, 0 100%);
}

.content {
    padding: 2em;
    color: white;
    max-width: 600px;
}

.nav-button {
    display: none;
}

.iasc-logo img {
    width: 250px;
}

.menu-button {
    display: none;
    border: none;
    background: var(--color-primary);
    color: #FFF;
    float: right;
    font-size: 25px;
    margin-top: 16px;
    padding: 0 0 0px;
    width: 36px;
    height: 33px;
}

.menu-button svg {
    width: 20px;
    height: 18px;
    fill: #FFF;
    position: relative;
    top: -3px;
}

header.sticky .menu-button svg {
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.close-btn svg {
    fill: #FFF !important;
}

.has-sub-menu {
    position: relative;
}

.has-sub-menu .sub-menu {
    visibility: hidden;
    position: absolute;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 200px;
    display: none;
}

.has-sub-menu .sub-menu li {
    height: 40px;
}

.has-sub-menu .sub-menu li a {
    display: block;
    padding: 12px 13px;
    text-transform: none;
}

.has-sub-menu.active .sub-menu {
    display: block;
}

/*Header Ends*/
/*Slider*/
.main-slider img {
    width: 100%;
}

.main-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #FFF;
}

.main-slider .swiper-pagination-bullet-active {
    width: 23px;
    border-radius: 50px;
}

/*Slider Ends*/
/*Welcome Area*/

.feature-box {
    background: var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
    border-radius: 10px;
    border-top-right-radius: 65px;
    padding: 23px;
    color: #FFF;
}

.feature-box svg {
    width: 50px;
    height: 50px;
    fill: #FFF;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 9px 0 9px;
}

/*Welcome Area Ends*/
/*Titles*/
.title-s1 {
    font-size: 36px;
}

.title-s2 {
    font-size: 35px;
    font-weight: 700;
}

.title-s1 b {
    color: var(--color-primary);
}

.title-s1 span {
    font-weight: 700;
}

/*Titles Ends*/
/*Buttons*/
.btn-s1 {
    color: #ffffff;
    padding: 9px 19px;
    font-weight: 500;
    font-size: 15px;
    background: var(--color-primary);
    display: inline-flex;
    border-radius: 50px;
    align-items: center;
    gap: 5px;
}

.btn-s1.white {
    color: var(--color-primary);
    background: #FFF;
}

.btn-s1 svg {
    width: 15px;
    height: 15px;
    fill: #FFF;
}
.btn-s1.white svg {
    fill: var(--color-primary);
}
/*Buttons Ends*/
/*Home products carousel*/
.home-product-area {
    background: var(--color-secondary);
}

.product-carousel-container {
    margin-left: -11px;
    margin-right: -11px;
}

.product-carousel {
    padding: 14px 11px;
}

.product-thumb {
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}


.product-thumb img{
    border-radius: 12px;
}
.product-thumb:hover {
    transform: scale(1.05);
}

.product-thumb span {
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-thumb svg {
    fill: #FFF;
    width: 17px;
    height: 17px;
}

.product-carousel-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 40px;
}

.product-carousel-prev-btn,
.product-carousel-next-btn {
    border: 1px solid #FFF;
    padding: 6px 19px;
    border-radius: 50px;
}

.product-carousel-btns svg {
    width: 30px;
    height: 30px;
    fill: #FFF;
}

/*Home products carousel ends*/



/*Why choose*/
.why-choose-bx {
    margin: 0 0 30px;
}

.why-choose-bx svg {
    width: 50px;
    height: 50px;
    fill: var(--color-primary);
}

.why-choose-bx h3 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 3px;
}

.why-choose-img {
    position: relative;
}

.why-choose-img {
    position: relative;
}

.dotted-circle {
    position: absolute;
    right: -80px;
    bottom: -90px;
    z-index: -1;
    width: 330px;
}

/*Why choose ends*/


/*Testimonials*/
.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars li svg {
    width: 20px;
    height: 20px;
    fill: #CCC;
}

.rating-stars li.filled svg {
    fill: #FFC107;
}
.testimonials-carousel
{
    padding: 30px 0px 60px;
}
.testimonials-box {
    position: relative;
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
}

.testimonials-box::after {
    content: '';
    width: 65px;
    display: block;
    height: 65px;
    background-image: url('../img/triangle-corner.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -50px;
    left: 0px;
}

.testimonials-box img {
    width: 70px;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: -30px;
}

.testimonials-box h4 {
    font-size: 18px;
}

.testimonials-carousel-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 0 40px;
}

.testimonials-carousel-prev-btn,
.testimonials-carousel-next-btn {
    border: 2px solid var(--color-primary);
    padding: 6px 19px;
    border-radius: 50px;
}

.testimonials-carousel-btns svg {
    width: 30px;
    height: 30px;
    fill: var(--color-primary);
}

/*Testimonials ends*/


/*Bottom Content area*/
.content-section-1
{
    color: #FFF;
    background-image: url(../img/wooden-interior-bg-1.webp);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 60%;
}
.content-red-container
{
    background-color: var(--color-primary);
    padding: 80px 160px 60px 0;
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    position: relative;
}
.content-red-container::before
{
    content: '';
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0;
    display: block;
    background: var(--color-primary);
    left: -9999px; /* Start way off to the left */
    width: 9999px; /* Large width to ensure it reaches screen edge */
}
/*Bottom Content area ends*/


/*Footer*/
footer
{
    background: var(--color-dark);
    color: #FFF;
    padding: 50px 0;
}
footer a
{
    color: #FFF;
}
footer h3
{
    font-size: 21px;
    margin: 0 0 22px;
}
.footer-logo
{
    width: 240px;
    margin: 0px 0 40px;
}
footer-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-address
{
    display: flex;
    gap: 11px;
    flex-direction: column;
    margin: 0 0 30px;
}
.footer-address li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-address li a {
    display: block;
}

.footer-address li svg {
    width: 28px;
    height: 31px;
    fill: var(--color-primary);
    flex-shrink: 0;
}
.footer-links
{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.socialmedia-links {
    display: flex;
    gap: 12px;
}

.socialmedia-links li {}

.socialmedia-links li svg {
    width: 35px;
    height: 35px;
    fill: #FFF;
}

.footer-whatsapp-button {
    background: #4ec247;
    font-size: 23px;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 16px;
    display: inline-flex;
    align-items: center;
    transition: .3s all;
    color: #000;
    gap: 5px;
}

.footer-whatsapp-button:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgb(37 211 102 / 90%);
    -moz-box-shadow: 0px 0px 20px 0px rgb(37 211 102 / 90%);
    box-shadow: 0px 0px 20px 0px rgb(37 211 102 / 90%);
    transition: .3s all;
}

.footer-whatsapp-button svg {
    fill: #000000;
    width: 26px;
    height: 32px;
}

/*Footer ends*/



/*WhatsApp floating*/
.floatingwhatsapp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    background: #4dc247;
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: -4px 4px 7px 0px rgb(0 0 0 / 20%);
    justify-content: center;
    align-items: center;
}

.floatingwhatsapp svg {
    width: 27px;
    height: 27px;
    fill: #FFF;
}

/*WhatsApp floating ends*/

/*Phone floating*/
.floatingphone {
    position: fixed;
    bottom: 67px;
    right: 10px;
    z-index: 99;
    background: var(--color-secondary);
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: -4px 4px 7px 0px rgb(0 0 0 / 20%);
    justify-content: center;
    align-items: center;
}

.floatingphone svg {
    width: 27px;
    height: 27px;
    fill: #FFF;
}

/*Phone floating ends*/


/*Innerpage*/
.page-header {
    background: url(../img/header-bg.webp) var(--color-dark);
    padding: 181px 0 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.3;
    top: 0px;
}

.page-header h2 {
    text-align: center;
    color: #FFF;
    font-size: 42px;
}

.hz-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 33px;
}

.hz-breadcrumb li {
    color: #FFF;
    position: relative;
}

.hz-breadcrumb li::after {
    content:'';
    position: absolute;
    right: -21px;
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--color-primary);
    border-radius: 50%;
}

.hz-breadcrumb li:last-child::after {
    display: none;
}

.hz-breadcrumb li a {
    color: #FFF;
}

.innerpage {
    padding: 80px 0;
}

/*Innerpage Ends*/

/*Innerpage Products*/
.product-thumb-innerpage
{
    text-align: center;
    margin: 0 0 17px;
}
.skewed-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px 0;
}

.product-thumb-innerpage span {
    font-size: 13px;
    display: inline-block;
    margin: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-secondary); /* Main color */
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    clip-path: polygon(40px 0%, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
    z-index: 1;
    width: 93%;
}

.product-thumb-innerpage span::before,
.product-thumb-innerpage span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background-color: var(--color-secondary);
}

.product-thumb-innerpage span::before {
  right: 100%;
  margin-right: 15px;
  transform: translateY(-50%);
}

.product-thumb-innerpage span::after {
  left: 100%;
  margin-left: 15px;
  transform: translateY(-50%);
}
.product-page
{
    /* background: #f1f1f1; */
}
.product-single-container
{
    /* background: #FFF; */
    padding: 32px 25px;
    margin: 0 0 30px;
    border: 1px solid #e2e2e2;
}
.product-single-container h2
{
    font-weight: 600;
    font-size: 23px;
}
.product-single-container p
{
    margin: 0 0 10px;
    
}
.product-single-container h2.product-title
{
    font-size: 19px;
}
.product-single-container h3.product-density
{
    font-size: 14px;
    background: #000;
    color: #FFF;
    padding: 4px 10px;
    display: inline-block;
    font-weight: 400;
}
.enquiry-button {
    background: #4cc045;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 16px;
    display: inline-flex;
    align-items: center;
    transition: .3s all;
    color: #ffffff;
    gap: 5px;
    margin: 18px 0 0;
}

.enquiry-button:hover {
    transition: .3s all;
    background: #4fca47;
}

.enquiry-button svg {
    fill: #ffffff;
    width: 20px;
    height: 31px;
}
.product-logo
{
    width: 400px;
    margin: 0px 0 15px;
}
.features-img
{
    width: 360px;
    display: block;
    margin: 20px 0 0;
}
/*Innerpage Products ends*/


/*Contact us page*/
.contact-info-box {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.contact-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2b2b2b;
}

.contact-info-box a {
  text-decoration: none;
  display: inline-block;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.contact-info-box svg.icon {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.contact-social-media {
  list-style: none;
  padding-left: 0;
  gap: 12px;
}

.contact-social-media li {
  display: inline-block;
}

.contact-social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-social-media a:hover {
  background-color: var(--color-primary);
}

.contact-social-media .icon {
  width: 18px;
  height: 18px;
  fill: #475268;
  transition: fill 0.3s;
}

.contact-social-media a:hover .icon {
  fill: #fff;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
}


.enquiry-form::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 230px;
    height: 70px;
    background: #FFF;
}



/*Contact us page ends*/


/*Multi Color product images*/
.product-multi-color {
    width: 100%;
    max-width: 600px;
    margin: auto;
  }

  .product-multi-color .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-multi-color .thumbs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .product-multi-color .thumb {
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
  }

  .product-multi-color .thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
  }
  .product-multi-color .thumb > div
  {
    width: 35px;
    height: 35px;
  }
  .product-multi-color .thumb  .c1
  {
    background: #FFF;
    border: 1px solid #CCC;
  }
  .product-multi-color .thumb .c2
  {
    background: #000;
  }
  .product-multi-color .thumb .c3
  {
    background: #c7e2a2;
  }
  .product-multi-color .thumb .c4
  {
    background: #bdbdbd;
    
  }
  .product-multi-color .thumb .c5
  {
    background: #563416;
  }
  .product-multi-color .thumb .c6
  {
    background: #555556;
  }
  .product-multi-color .thumb .c7
  {
    background: #ed1f25;
  }
/*Multi Color product images ends*/
