.iti {
    width: 100%;
}

.iti__flag-container {
    margin-right: 8px; /* Space between flag and input */
}

label {
    display: inline-block;
    margin-bottom: 0.5rem; /* Ensures consistent spacing */
}

.feature-box.feature-box-style-2 .feature-box-icon {
    background: transparent;
    top: -6px;
}

/*Product page*/
.product-card {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	border-radius: 6px;
	border-color: #ECECEC;
	border-width: 1px 1px 1px 1px;
	background: #fcfcfc;
	text-align: center;
}
.card-body {
    padding: 30px 20px;
}

.p-title-sec {

}
.p-mb {
	margin-bottom: 60px;
}
.product-card:hover {
	background: var(--primary-rgba-10);
	transition: 0.6s;
}
.product-card:hover {
	border-color: var(--primary-rgba-20);
	transition: 0.3s;
}
.product-title {
	color: var(--primary);
	font-size: 20px;
	font-weight: 600;
}
.p-border {
	background: var(--dark-rgba-20);
	height: 2px;
    margin: 30px 0;
}
.cas-no {
    height: 65px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.cas-no p{
	font-size: 16px;
	font-weight: 500;
}
.p-app-sec {
    height: 140px;
}
.apl {
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
}

.btn-outline.btn-secondary {
    padding: 15px;
}
@media (max-width: 768px) {
	.btn-outline.btn-secondary {
		padding: 10px;
		font-size: 12px;
	}
}

/*Products section*/
.custom-pos-top-1 {
	margin-top: -100px;
}
.custom-pos-top {
	margin-top: -100px;
}
@media (max-width: 991px) {
	.custom-pos-top {
		margin-top: 0;
	}
}
/**/

/*Hero*/
.hero-elmt {
	width: 100%;
	height: 300px;
}
@media (max-width: 1400px) {
	.hero-elmt {
		width: 100%;
		height: 300px;
	}
}

@media (max-width: 991px) {
	.hero-section {
		height: 150px;
		background-size: cover !important; 
		background-position: center !important;
	}
	.hero-elmt {
		width: 130px;
		height: 130px;
	}

}


/*Section backgrounds*/

.section.top-bg {
  background-image: url(../img/top-left-bg.webp), url(../img/top-right-bg.webp) !important;
  background-position: top left, top right !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 50% auto, 50% auto !important;
}
@media (max-width: 991px) {
	.section.top-bg {
	  background-size: 70% auto, 70% auto !important;
	}
}

/*----------------------------------------------------------*/
.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding-left: 27px;
}
.sec-title .sub-title:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 8px;
    top: 7px;
    border-radius: 50%;
}
.sec-title .sub-title:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 0px;
    top: 2px;
    border-radius: 50%;
}
.sec-title .sub-title:before {
    background: var(--primary);
}
.sec-title .sub-title:after {
    background: var(--primary);
}
.sec-title .sub-title {
    color: var(--primary);
}


/*----------------------------------------------------*/
/*----------------------------------------------------------*/
.sec-title-2 .sub-title-2 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding-left: 27px;
}
.sec-title-2 .sub-title-2:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 8px;
    top: 7px;
    border-radius: 50%;
}
.sec-title-2 .sub-title-2:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 0px;
    top: 2px;
    border-radius: 50%;
}
.sec-title-2 .sub-title-2:before {
    background: var(--primary);
}
.sec-title-2 .sub-title-2:after {
    background: var(--primary);
}
.sec-title-2 .sub-title-2 {
    color: var(--primary);
}


/*----------------------------------------------------*/

/* Common dot styles */
.dot-title {
    position: relative;
    display: inline-block; /* Ensures accurate width measurement */
}

/* Dots for both alignments */
.dot-title::before,
.dot-title::after {
    position: absolute;
    content: '';
    border-radius: 50%;
}

/* Center-aligned title with dots */
.dot-title.center {
    text-align: center;
}

/* Left-aligned title with dots */
.dot-title.left {
    text-align: left;
}

/* Dot positioning - Center alignment */
.dot-title.center::before {
    width: 12px;
    height: 12px;
    background: var(--primary);
    left: calc(-20px);
    top: 20px;
}

.dot-title.center::after {
    width: 8px;
    height: 8px;
    background: var(--primary);
    left: calc(-30px);
    top: 10px;
}

/* Dot positioning - Left alignment */
.dot-title.left::before {
    width: 12px;
    height: 12px;
    background: var(--primary);
    left: -20px; /* Consistent dot positioning */
    top: 20px;
}

.dot-title.left::after {
    width: 8px;
    height: 8px;
    background: var(--primary);
    left: -30px; /* Further left for second dot */
    top: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
    .dot-title.center::after {
		left: calc(23px);
		top: 2px;
	}
	.dot-title.center::before {
		left: calc(30px);
		top: 12px;
	}
	
	.dot-title.center {
		text-align: center;
		padding: 0 30px;
	}
	
	.dot-title.left::after {
		width: 8px;
		height: 8px;
		background: var(--primary);
		left: 0px;
		top: 10px;
	}
	
	.dot-title.left::before {
		width: 12px;
		height: 12px;
		background: var(--primary);
		left: 8px;
		top: 20px;
	}
	.dot-title.left {
		text-align: left;
		padding-left: 30px;
	}
	
	
}




/*Why choose us*/

/** about-section **/
.hexagon_shape {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transform: rotate(90deg);
}
.about-section .image-box .shape-box .shape-2 {
    background: var(--primary);
}
.about-section .image-box .text {
    background: var(--primary);
}

.about-section{
  position: relative;
}

.about-section .image-box{
  position: relative;
  display: block;
  padding-right: 35px;
}

.about-section .image-box img{
  width: 100%;
}

.about-section .image-box .image-inner{
  position: relative;
  clip-path: polygon(25% 0%, 75% 0%, 107.70% 50%, 75% 100%, 25% 100%, -7.70% 50%);
}

.about-section .image-box .image-inner .image{
  position: relative;
  transform: rotate(-90deg);
}

.about-section .image-box .text{
  position: absolute;
  left: 40px;
  bottom: 12px;
  width: 180px;
  height: 180px;
  line-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid #fff;
  border-radius: 50%;
  text-align: center;
}

.about-section .image-box .text h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.about-section .image-box .text h2 span{
  position: absolute;
  top: -14px;
  right: 6px;
  font-weight: 400;
}

.about-section .image-box .text h6{
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.about-section .image-box .shape-box .shape{
  position: absolute;
  width: 80px;
  height: 70px;
}

.about-section .image-box .shape-box .shape-1{
  left: 55px;
  top: 0px;
  background: var(--secondary);
}

.about-section .image-box .shape-box .shape-2{
  left: 20px;
  top: 64px;
  z-index: 1;
}

.about-section .image-box .shape-box .shape-3{
  right: -5px;
  bottom: 125px;
  z-index: 1;
  background: var(--secondary);
}

.about-section .content-box .sec-title{
  margin-bottom: 31px;
}

.about-section .content-box .text{
  margin-bottom: 23px;
}

.about-section .content-box .inner-box{
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.about-section .content-box .inner-box .single-item{
  position: relative;
  display: block;
}

.about-section .content-box .inner-box .single-item .count-text{
  position: relative;
  display: inline-block;
  font-size: 36px;
  line-height: 44px;
  font-family: 'Saira', sans-serif;
  margin-bottom: 14px;
  padding-right: 15px;
}

.about-section .content-box .inner-box .single-item .count-text:before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  right: 0px;
  bottom: 10px;
}

.about-section .content-box .inner-box .single-item h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 13px;
}

.bg-color-1{
  background: #f0f5f7;
}

/**/




/**/
section.section {
    background: #fff;
    border-top: none;
    margin: 0;
}
.custom-bg-1 {
  border-radius: 6px;
  background-image: linear-gradient(0deg,rgba(161,62,67,.41) 0,rgba(45,70,100,.41) 100%);
  -webkit-backdrop-filter: blur(7.8px);
  backdrop-filter: blur(7.8px);
  background-color: rgba(255,255,255,.0705882353);
}

.counters.with-borders .counter {
    border-radius: 6px;
    border-top: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
    border-left: 1px solid #ECECEC;
    border-right: 1px solid #ECECEC;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
    padding: 30px;
}


/*Page header*/
.custom-breadcrumb {
	padding: 15px;
	background: #fff;
}

.bg-color-1 {
    background: #f0f5f7 !important;
}

/*Home page shapes*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}

.custom-banner-height {
    height: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .custom-banner-height {
        height: 400px;
    }
}
@media (min-width: 2200px) {
    .custom-banner-height {
        height: 750px;
    }
}
@media only screen and (min-width: 1700px) and (max-width: 2199px) {
    .custom-banner-height {
        height: 650px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1699px) {
    .custom-banner-height {
        height: 550px;
    }
} 
/**/


/**/

/*Typohraphy*/
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
	font-family: "Saira", serif !important;
	line-height: 1.2;
	transition: all 500ms ease;
	font-weight: 400;
	text-transform: none;
}
p {
    color: #000000;
    line-height: 1.7;
    letter-spacing: 0.2px;
}
body {
	font-family: "Saira", serif !important;
    font-size: 16px;
    line-height: 1.7;
	color: #000000;
}
.btn {
    letter-spacing: 1px;
    text-transform: uppercase !important;
}
.btn-primary:focus:not(.bg-transparent), .btn-primary.focus:not(.bg-transparent) {
    background-color: var(--primary-200);
    color: #fff;
}
.btn-career {
    text-transform: none !important;
}
.lead-2 {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 1.7;
    font-weight: 400;
}
.sub-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
}

.sub-heading-2 {
	font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}
.banner-heading {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}
.banner-sub-heading {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
}
.word-rotator.clip span {
	padding: 0;
}

@media (max-width: 992px){
    .banner-heading {
        font-size: 30px;
    }
    .banner-sub-heading {
        font-size: 20px;
    }
}


@media (max-width: 767px) {
    .banner-heading {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1.5;
    }
    .banner-sub-heading {
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 1.7;
    }
    .sub-heading {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.3;
    }
	.sub-heading-2 {
		font-size: 20px;
	}

    .lead-2 {
        font-size: 18px;
        letter-spacing: 0.5px;
        line-height: 1.7;
    }
	body {
		font-size: 14px;
	}
	h2 {
		font-size: 24px;
		line-height: 1.4;
	}

}


/**/

.btn-secondary:focus:not(.bg-transparent), .btn-secondary.focus:not(.bg-transparent) {
    color: #fff;
}
.btn-outline.btn-xl {
    padding: 0.75rem 1rem;
}

dl dd {
    margin-bottom: 15px;
    font-size: 16px;
}
dt {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

/**/

#header .header-btn-collapse-nav {
    background: var(--primary);
    border: none;
    padding: 5px 15px;
	margin-top: 54px;
}
#header .header-body {
    border-bottom: none !important;
}

@media (min-width: 992px) {
	
	.nav-pills {
		margin-top: 63px !important;
	}
	.h-btn {
		margin-top: 38px !important;
	}
	#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li > a {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--dark);
    }

	#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
        border-bottom: 1px solid #00872f;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }

	#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li:hover.dropdown:not(.dropdown-mega) .dropdown-menu {
		background: var(--secondary-300);
	}

	    
	#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li.dropdown:not(.dropdown-mega) .dropdown-menu {
        border: 1px solid var(--secondary-300);
    }
	
	.divider-right-border {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	/*Custom mega*/
	#header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
        min-width: 950px;
		left: -410px;
    }
	.link-hover-style-1:hover {
		left: 2px;
		font-weight: 700;
        font-size: 16px;
		background: var(--primary);
        padding: 10px;
        color: var(--light);
	}
	.link-hover-style-1 {
		transition: all .3s ease-in-out;
		position: relative;
		left: 0;
		font-size: 15px;
		color: #fff;
	}
	.divider-left-border {
		border-left: 1px solid rgba(255, 255, 255, 0.19);
	}
	
	
	/**/
}

.link-opacity-75-hover:hover {
	font-weight: 700;
	font-size: 16px;
}

#header .header-container {
	height: 130px !important;
}



@media (max-width: 991px) {
	.offcanvas-nav .nav li.dropdown .dropdown-menu li .dropdown-mega-sub-title {
		font-size: 18px;
		font-weight: 600;
		opacity: 1;
		color: var(--tertiary);
	}
	a.btn.btn-link-effect-3 {
		font-size: 16px !important;
		color: var(--primary) !important;
		font-weight: 500 !important;
	}
	.offcanvas-nav .nav li a {
		padding: 10px;
		font-weight: 400;
		color: var(--dark);
		opacity: 1;
		text-align: left;
	}
	.divider-left-border {
		border-left: none;
	}
}

/*Page header*/
.page-header {
    background: var(--secondary);
    padding: 60px 0;
}
.page-header h1 {
    color: var(--light);
    display: inline-block;
    font-size: 48px;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: 500;
    position: relative;
    top: 1px;
}


/**/
@media (max-width: 991px) {
	.page-header {
		padding: 30px 0;
	}
	.page-header h1 {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.page-header {
		padding: 20px 0;
	}
	.page-header h1 {
		font-size: 30px;
	}
}


/**/
footer {
  background-image: linear-gradient(0deg,rgba(45,70,100,.41) 0,rgba(193,193,193,.41) 100%);
  -webkit-backdrop-filter: blur(7.8px);
  backdrop-filter: blur(7.8px);
  background-color: rgba(255,255,255,.0705882353);
	background-position: center;
	background-size: cover;
}
/**/
footer a{
	color: #000;
}


/**/

/*Whatsapp button*/

.wts-app-btn {
  	position: fixed !important;
  	right: 30px !important;
  	bottom: 60px !important;
  	z-index: 999 !important;
	display: flex;
	align-items: center;
}
a.wts-app-btn {
  	font-weight: 500;
  	color: #ffffff;
	font-size: 15px;
	padding: 10px 20px;
	background: #25D366;
	text-shadow: 0px 2px 10px rgba(0,0,0,0.4), 0px 1px 2px rgba(0,0,0,0.1), 0px 20px 20px rgba(0,0,0,0.2);
}
a.wts-app-btn:hover {
  	color: #ffffff;
	background: #2A9A84;
}
.wts-app-btn i {
	font-size: 24px;
	padding-right: 6px;
}

@media (max-width: 991px) {
	.wts-app-btn {
		position: fixed !important;
		right: 5px !important;
		bottom: 15px !important;
		z-index: 999 !important;
		display: flex;
		align-items: center;
	}
}

/**/

