:root {
    --dark-blue: #0A004C;
    --light-blue-gradient-start: #0A004C;
    --light-blue-gradient-end: #4C00F0; /* Adjusted for better gradient match */
    --white: #FFFFFF;
    --button-border-light: rgba(255, 255, 255, 0.3);
    --button-hover-bg: rgba(255, 255, 255, 0.1);
	--primary-text-color: #1a202c; /* Dark gray for main text */
    --secondary-text-color: #4a5568; /* Slightly lighter gray for secondary text */
    --accent-color: #f6ad55; /* Orange for stars */
    --background-color: #f7fafc; /* Light background for the section */
    --card-background: #ffffff; /* White background for cards */
    --border-color: #e2e8f0; /* Light border for cards */
    --spacing-lg: 2rem;
    --spacing-md: 2rem;
    --spacing-sm: 1.5rem;
    --spacing-xs: 1rem;
    --font-family-primary: 'Inter', sans-serif;
    --border-radius: 0.5rem;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
    --max-width: 1200px;
    --full-width: 100%;	
	--primary-background-start: #4B0082; /* Deep Purple */
    --primary-background-end: #8A2BE2;   /* Blue Violet */
    --text-color-light: #FFFFFF;
    --button-background-start: #E0E0E0; /* Light Gray */
    --button-background-end: #FFFFFF;
    --button-text-color: #333333;
    --button-hover-background-start: #FFFFFF;
    --button-hover-background-end: #E0E0E0;
    --footer-text-color: rgba(255, 255, 255, 0.7);
    --footer-link-color: rgba(255, 255, 255, 0.9);
    --mobile-heading-size: 26px;
    --mobile-text-size: 18px;
}
*{
    box-sizing: border-box;
    font-family: 'SFPro',sans-serif;
	font-size: 20px;
}
html { scroll-behavior: smooth; }
body{
    margin: 0;
    overflow-x: hidden;	
}
.container{
	max-width: 1368px;
	margin: 0 auto;
}		
header{
    min-height: 100vh;
    position: relative;
    .container{       
        padding: 1rem 2rem;
        .navbar{
            min-height: 10vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .logo{
                font-size: 20px;
                text-decoration: none;
                text-transform: uppercase;
                color: #fff;
			}
            .nav-links{
                display: flex;
                align-items: center;
                li{
                    list-style-type: none;
                    a{
                        text-decoration: none;
                        color: #fff;
                        margin: 0 1.25rem;
                        font-size: 16px;
                        position: relative;
                        &::after{
						position: absolute;
						content: '';
						background-color: #fff;
						bottom: -5px;
						left: 0;
						width: 0%;
						height: 3px;
						transition: 0.3s ease all;						
					}
					&:hover::after{
						width: var(--full-width);
					}
				}
			}   
			&.active{
				transform: translateX(0%);
			}
		}
		i{
			display: none;
			color: #fff;
			cursor: pointer;
		}
	}
	.showcase{
		min-height: 80vh;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		width: 630px;
		h1{
			color: #fff;
			font-size: 34px;
			margin: 0px;
			font-weight:400;
			line-height:1.1;
		}
		p{
			margin: 20px 0px 10px 0px;
			color: rgba(255, 255, 255, 0.7);
			line-height: 1.4;
			font-size: 16px;
			font-weight:400;
		}
        
		
	}
	
}
.video-container{
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	height: 160vh;
	width: 100vw;
	video{
		height: var(--full-width);
		width: var(--full-width);
		object-fit: cover;
	}
	&::after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		height: var(--full-width);
		width: var(--full-width);
		#  background-color: rgba(0,0,0,0.82);
	}
}


}

/* video.mobile{display:none;} */

.spacer_height{width:var(--full-width);height:280px;}


/*
	.carousel_slider_container{
	display: flex;
	flex-direction: column;
	justify-content: center; 
	p{text-align:center;color:#fff;}
	} 
*/
.carousel_slider_container {
	position: relative;
	z-index: 2; /* must be above video */
	margin-top: -300px;
	margin-bottom: 50px; 
	text-align: center;
	top:0px;
	left:0px;
}

.carousel_slider_container p {
	color: #fff;
	margin-bottom: 50px;
}
.slider_brands {
	width: var(--full-width);
	margin: 0px;
}

.result_solutions{display: flex;justify-content: space-evenly;align-items: center;padding:50px 0px;}
.zero{}
.one{font-size:27px;font-weight:700;}
.border{text-align:center;}
.two{}
.until{text-align:center;font-size:28px;color: rgba(18, 28, 143, 1);}
.slider_brands .slide{height:100px;}
.slider_brands .slide {
	display: flex;
	justify-content: center;
	align-items: center;
} 
.testimonials_slider{margin:0 auto;text-align:center;}
.testimonials_slider .slick-slide img{display:inline-block;}
.slider_brands img {
	max-height: 60px;
	width: auto;
	display: block;
	margin: auto;
}

button.normal{
	border: none;
	outline: none;
	cursor: pointer;
	padding: 10px 35px;
	margin: 0 1rem;                    
	background: transparent;                   
	color: #fff;
	font-size: 16px;
}
button.border{ border: 2px solid #fff;border-radius: 100px; }
.hero_button{margin:25px 0px;}

.hero_button button.normal{margin: 0px;}


.security-section {
	background: linear-gradient(180deg, #EEEFEF 0%, #FFFFFF 50%);
	padding: 50px;
}


.security-content {display: flex;flex-wrap: wrap;gap: 60px;}
.security-result h3{color: rgba(18, 28, 143, 1); margin: 5px 0px;}

/* .testimonials_slider{ background: linear-gradient(200.2deg, #6536CC 21.5%, #997EF1 108.96%);
padding:10px 80px;width:70%; margin:50px auto;color:#121C8F;position: relative;color:#fff;border-radius:10px;font-size:28px;} */

.testimonials_slider .inner_slide{
	width:100%;
}
.testimonials_slider .text_area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: var(--full-width);
    padding: 20px; /* Add padding as needed */
}

.cisco_level .highlight, .cisco_level .highlight span{font-size:28px;font-weight:700;}
.cisco_level .underline{text-decoration:underline;}

/* .slick-prev:before, .slick-next:before {
	color: #09529b !important;
} */
.left {
	flex: 1;
	min-width: 48%;
}

.left h2 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 10px;
}


/* .left ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 20px;
	}
	
.left ul li{font-size:20px;margin:10px;} */

.result {
	font-size: 20px;
	margin-bottom: 20px;
}

.result strong {font-weight: bold;}
.testimonials span {
	display: block;
	margin-top: 5px;
}

.right {
	flex: 1;
	min-width: 38%;
}

.graph-carousel .slide {
	text-align: center;
}

.graph-carousel img {
	max-width: var(--full-width);
	height: auto;	
	padding: 10px;	
}

/* Style for the default slick-prev and slick-next buttons */
.slick-prev,
.slick-next {
	font-size: 0; /* Hide any default text if present */
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 40px; /* Adjust as needed */
	height: 40px; /* Adjust as needed */
	padding: 0;
	cursor: pointer;
	color: #121C8F; /* Default color of the arrow (inherits to stroke="currentColor") */
	border: none;
	outline: none;
	background: transparent; /* Make background transparent */
	z-index: 10; /* Ensure arrows are above slider content */
}

.slick-prev {
	left: -50px; /* Adjust as needed */
}

.slick-next {
	right: -50px; /* Adjust as needed */
}

/* Hover and active states for the arrows */
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: #007bff; /* Change color on hover/focus */
	outline: none;
	background: transparent;
}

/* Style for the SVG icon within the button */
.slick-prev svg,
.slick-next svg {
	width: var(--full-width); /* Make SVG fill the button's width */
	height: var(--full-width); /* Make SVG fill the button's height */
	display: block; /* Remove any extra spacing */
	
}

.bullet-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bullet-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	gap: 16px;
}

.bullet-item:last-child {
	margin-bottom: 0;
}

.bullet-dot {
	width: 18px;
	height: 18px;
	//background: #4285f4;
	background: rgba(30, 146, 255, 0.8);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
}
.graph-carousel .slick-dots li.slick-active button:before, .graph-carousel .slick-dots li button:hover:before, .graph-carousel .slick-dots li button:focus:before{color: rgba(30, 146, 255, 0.8);}
.graph-carousel .slick-dots li button:before{font-size:20px;}


.cisco_level{background: linear-gradient(135deg, var(--light-blue-gradient-start) 0%, var(--light-blue-gradient-end) var(--full-width));}
.cisco_content{padding:50px 30px;}

.header {
	text-align: center;
	margin-bottom: 80px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease-out 0.3s forwards;
}

.main-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 50px;
	letter-spacing: -1px;
	color:#fff;
}

.process-steps {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease-out 0.6s forwards;
}

.step {
	padding: 16px 10px;	
	font-size:44px;
	font-weight:400;
	color:#fff;
}

.step-line {color:#fff;}	

.step-arrow {
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
}

.main-section {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 60px;
	align-items: flex-start;
	margin-top: 80px;
}

.left-section {
	opacity: 0;
	transform: translateX(-30px) scale(0.95);
	animation: slideInSoft 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.right-section {
	opacity: 0;
	transform: translateX(30px) scale(0.95);
	animation: slideInSoft 5s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}

.platform-button {
	background: linear-gradient(180deg, #312596 0%, #312596 var(--full-width));
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 24px 40px;
	font-size: 24px;
	font-weight: 600;
	color: white;
	text-align: center;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
	backdrop-filter: blur(20px);
}

.difference-header {
	background: linear-gradient(180deg, #312596 0%, #312596 var(--full-width));
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 24px 40px;
	font-size: 24px;
	font-weight: 600;
	color: white;
	text-align: center;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
	backdrop-filter: blur(20px);
}

.main-section-mobile{display:none;position:relative;}
.main-section-mobile .sect_diff{position:relative;margin:0px;}
.main-section-mobile .spacer{height:70px;width:100px;}
.sect_diff .item_parent{
	display: flex;
	align-items: center;
	padding: 20px;
	border: 1px solid #fff;
	margin:5px;
	border-radius:10px;
	font-size: var(--mobile-text-size);
}
.sect_diff .icon{position:static;margin-right: 30px;width:60px;height:60px;}

/* Custom Slick Dots */
.sect_diff .slick-dots {
	bottom: -50px;
}

.sect_diff .slick-dots li button:before {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
}

.sect_diff .slick-dots li.slick-active button:before {
	color: white;
}

/* Hide arrows on mobile */
.sect_diff .slick-prev, .sect_diff .slick-next {
	display: none !important;
}

.features-list {
	//background: rgba(255, 255, 255, 0.08);
	background:transparent none;
	backdrop-filter: blur(20px);	
}

.feature-item {
	display: flex;
	align-items: center;
	padding: 24px;
	border: 1px solid #fff;
	transform: translateY(20px);
	margin:40px 0px;
	border-radius:10px;
	position:relative;
	height:100px;
	
	
	
}

.feature-item:not(.slide), .feature-item:not(.fade-in ) {opacity: 0;transform: translateY(30px);transition: opacity 0.6s ease, transform 0.6s ease;}

.feature-item.fade-in {
	opacity: 1;
	transform: translateY(0);
}
.feature-item.animated {
	animation: fadeInUp 0.6s ease forwards;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.feature-item:last-child {
	/* border-bottom: none; */
}

.left-section .feature-item {
	flex-direction: row-reverse;
	text-align: right;
	//animation: fadeInUp 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.right-section .feature-item {
	//animation: fadeInUp 6.5s cubic-bezier(0.23, 1, 0.32, 1) forwards; 
}

/* Staggered animation delays */
/* .left-section .feature-item:nth-child(1) { animation-delay: 1.2s; }
	.left-section .feature-item:nth-child(2) { animation-delay: 1.3s; }
	.left-section .feature-item:nth-child(3) { animation-delay: 1.4s; }
	.left-section .feature-item:nth-child(4) { animation-delay: 1.5s; }
	.left-section .feature-item:nth-child(5) { animation-delay: 1.6s; }
	.left-section .feature-item:nth-child(6) { animation-delay: 1.7s; }
	
	.right-section .feature-item:nth-child(1) { animation-delay: 1.9s; }
	.right-section .feature-item:nth-child(2) { animation-delay: 2.0s; }
	.right-section .feature-item:nth-child(3) { animation-delay: 2.1s; }
	.right-section .feature-item:nth-child(4) { animation-delay: 2.2s; }
	.right-section .feature-item:nth-child(5) { animation-delay: 2.3s; }
	.right-section .feature-item:nth-child(6) { animation-delay: 2.4s; }
*/
.icon {
	width: 67px;
	height: 67px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position:absolute;
	right:-35px;
	z-index:2;
}
.right-section  .icon{left:-35px;}
.right-section  .feature-content{padding-left:20px;}
.left-section  .feature-content{padding-right:20px;}
.left-section .feature-content {
	margin-right: 15px;
}

.right-section .feature-content {
	margin-left: 15px;
}

.feature-content {
	flex: 1;	
}

.feature-title {
	font-weight: 700;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.95);
	
}

.feature-description {color: #fff;}

.center-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	opacity: 0;
	animation: fadeIn 1s ease-out 1.1s forwards;
}

.arrow-large {
	font-size: 64px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	animation: gentlePulse 3s ease-in-out infinite;
}

.bottom-text {
	text-align: center;
	margin-top: 80px;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease-out 2.2s forwards;
	color:#fff;
}

.meet_content{max-width:68%;margin:80px auto;font-size:18px;font-weight:400;text-align:center;}
.meet_content h2{font-size:50px;font-weight:700}




 .secure-accordion details[open]{
	background:#fff;color:#000;
}


 
 .secure-accordion details .image_accord span.mobile_icon{display:inline;}
 .secure-accordion details .image_accord span.desktop_icon{display:none;}
 body .secure-accordion details[open] .image_accord span.mobile_icon{display:none;}
 body .secure-accordion details[open] .image_accord span.desktop_icon{display:inline;}
	
	.secure-accordion details{
	background:#121C8F;color:#fff;
} 

.secure-accordion details summary p{color:#fff; }

.secure-accordion details {      
	margin: 0 auto 1rem;
	// background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 1.2rem 1.5rem;
}

.secure-accordion summary {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	font-size:22px;
}

.secure-accordion summary h3{font-weight:bold;margin:0px;font-weight:700;}
.secure-accordion summary p{color: rgba(18, 28, 143, 1);margin:0px;font-weight:400;}
.secure-accordion summary::-webkit-details-marker {
	display: none;
}

.secure-accordion .image_accord{display: flex;flex-direction: row;flex-wrap: nowrap;justify-content: space-evenly;align-items: center;gap: 20px;}

.secure-accordion  details[open] summary::after {
	content: '';
	width: 40px;
	height: 40px;	
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.23 7.21a.75.75 0 011.06.02L10 11.064l3.71-3.834a.75.75 0 111.08 1.04l-4.24 4.384a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z"/></svg>') !important;
}
.secure-accordion  details summary::after {
	content: '';
	width: 40px;
	height: 40px;	
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.23 7.21a.75.75 0 011.06.02L10 11.064l3.71-3.834a.75.75 0 111.08 1.04l-4.24 4.384a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z"/></svg>') !important;
}



 .secure-accordion details[open] summary::after {
	transform: rotate(180deg);
	
} 



.secure-accordion ul {
	list-style: none;
	padding-left: 0;
	margin: 10px 0px 0px 20px;
}

.secure-accordion li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.7rem;
	font-size:18px;
	font-weight:400;
}

.secure-accordion li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' fill='%234e6ef2' stroke='%234e6ef2' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'><path d='M20.285 6.709a1 1 0 00-1.414-1.418L9 15.17l-3.871-3.87a1 1 0 00-1.414 1.414l4.578 4.578a1 1 0 001.414 0l10.578-10.578z'/></svg>");
	
	background-repeat: no-repeat;
	background-size: contain;
}

.tab_container{}
.tab_container h2{text-align:center;font-size:50px;margin:20px 0px;}
.products-section {
	display: flex;
	border-radius: 12px;            
	overflow: hidden;
}

/* Left Sidebar */
.sidebar {
	width: 350px;
	padding: 20px 0;
	font-size: 22px;
	font-weight:700;
}

.sidebar h3 {
	color: #4c6ef5;
	margin-bottom: 15px;
	padding: 0 20px;
}

.menu-item {
	display: block;
	padding: 12px 5px;
	color: #495057;
	text-decoration: none;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
	cursor: pointer;
	border-bottom: 1px solid rgba(198, 198, 198, 1);
	font-size:22;
	font-weight:700;
}
.menu-item:last-child{border:none;}
.menu-item:hover {
	color: #4c6ef5;
}

.menu-item.active {
	color: #4c6ef5;
	// border-left-color: #364fc7;
}

/* Content Area */
.content-area {
	flex: 1;
	padding: 30px;
	position: relative;
}

.tab-content {
	display: none;
}
section.tab_section{padding:50px 0px;}
.tab-content video{width:var(--full-width);max-height:420px;object-fit: cover;border-radius:20px;}
.tab-content.active {
	display: block;
}



.tagline {
	text-align: center;            
}

.tagline h2 {
	font-size:  36px;
	font-style: italic;
	font-weight: 700;
}
#wnext{}
.shape_next {background: rgba(44, 28, 146, 1);width:var(--full-width);color:#fff;padding:50px 0px;}	
.shape_next .top-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	
}

.shape_next .text h2 {
	font-size: 50px;
	margin-bottom: 10px;
	font-weight:bold;
}

.shape_next .text p {
	font-size: 30px;
	margin: 0;
	opacity: 0.9;
}

.shape_next .slider-arrows {
	display: flex;
	gap: 10px;
}

.shape_next .slider-arrows button {
	background: #fff;
	color: #23006b;
	border: none;
	font-size: 20px;
	padding: 8px 12px;
	border-radius: 5px;
	cursor: pointer;
}

.shape_next .slider, .shape_next .top-section {margin: 0 auto;padding:40px 0 20px 0 }

.shape_next .slide {
	border: 1px solid #ffffff29;
	border-radius: 10px;
	padding: 25px;
	margin: 20px 20px  20px 0px;
	text-align: left;
	min-height: 250px;
}

.shape_next .slide h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.shape_next .slide p {
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.9;
}

.shape_next .cta-btn-wrap {
	margin: 0px;
	padding:30px 0px;
	text-align:center;
}

.shape_next .cta-btn {
	background: linear-gradient(187.92deg, #FFFFFF 6.31%, rgba(224, 240, 255, 0.8) 94.13%);
	color: #23006b;
	padding: 16px 24px;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
	font-size:18px;
}

@media (max-width: 768px) {
	.products-section {
		flex-direction: column;
	}
	
	.sidebar {
		width: var(--full-width);
		padding: 15px 0;
	}
	
	.content-area {
		padding: 20px;
	}
}


@keyframes fadeIn {
	to {
		opacity: 1;
	}
}



@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@keyframes slideInSoft {
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes gentlePulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.9;
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

@media (max-width: 1024px) {
	.main-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.center-divider {
		order: 0;
	}
	
	.main-title {
		font-size: 42px;
	}
	
	.process-steps {
		flex-wrap: wrap;
		gap: 15px;
	}
	
	.left-section .feature-item {
		flex-direction: row;
		text-align: left;
	}
	
	.left-section .icon {
		margin-left: 0;
		margin-right: 20px;
	}
}

section.building{background: linear-gradient(180deg, #EEEFEF 0%, #FFFFFF 50%);padding:50px 0px;}


/**************************************************/

/* building-container styling */
.building-container {
	max-width:var(--max-width);
	margin:0px auto;                      
	overflow: hidden;
	display: flex; /* md:flex for larger screens */
	flex-direction: column; /* Default to column for small screens */
}

/* Left Section: Text Content and Statistics */
.building-container  .left-section {           
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: var(--full-width); /* Default to full width for small screens */
}

/* Heading styles */
.building-container .left-section h2 {
	font-size: 50px;
	font-weight: 700;
	color: #1a202c;
	margin:15px 0px;           
}

/* Paragraph styles */
.building-container  .left-section p {
	font-size: 20px; /* text-base */
	font-weight:400;
	color: #4a5568; /* text-gray-700 */          
	line-height: 1.625; /* leading-relaxed */
	margin:15px 0px; 
}

.building-container  .left-section p.descr{max-width:88%;  }
.building-container  .left-section p.herotext {
	font-size:20px;
	color: #312596;            
	margin:10px 0px;
}
.left-section p.herotext {font-weight:bold;}
/* Statistics Section */
.building-container  .statistics-section {
	display: grid;
	grid-template-columns: 1fr; /* grid-cols-1 */
	gap: 2rem; /* gap-8 */
	text-align: center;
	margin: 50px 0px 0px 0px;
}


.building-container .left-section  .stat-item {                       
	display: flex;
	flex-direction: column;  
}

.border_item{text-align:center;}

.building-container  .left-section  .number-animation {
	font-size: 40px; /* text-5xl */
	font-weight: 700; /* font-bold */
	color: #312596; /* text-gray-900 */
	margin-bottom: 0.5rem; /* mb-2 */
	transition: all 0.5s ease-out; /* Added smooth transition for visual effect */			
}

.building-container  .left-section   .stat-description {
	font-size: 14px; /* text-sm */
	text-transform: uppercase;
	font-weight: 400; /* font-semibold */
	color: #4a5568; /* text-gray-600 */
	margin:0px;
	line-height: 20px;
}

/* Right Section: Image */
.building-container .right-section {
	width: var(--full-width); /* Default to full width for small screens */
}

.building-container  .right-section img {
	/* width: 100%;
	height: 100%; */
	object-fit: cover;
}

/* Responsive adjustments for medium and larger screens (md:) */
@media (min-width: 768px) { /* Corresponds to md breakpoint */
	.building-container {
		flex-direction: row; /* md:flex */
	}
	
	.building-container   .left-section {
		width: 69%; /* md:w-1/2 */
		padding: 0 20px 0 0;
	}           
	
	.building-container .statistics-section {
		grid-template-columns: repeat(6, 1fr); /* sm:grid-cols-3 */
	}
	
	.building-container  .right-section {
		width: 30%; /* md:w-1/2 */
	}
}

/**************************************************/
/**************************************************/
.form_section{background-color: #3A248E; padding:50px 0px;}
/* Main container for the entire section */
.form-main-container {
	display: flex;
	flex-direction: column; 
	width: var(--full-width);
	max-width: var(--max-width);
	overflow: hidden; 
	margin: 10px auto;
	
}

.ficon{max-width:35px;}

@media (min-width: 1024px) { /* lg: breakpoint */
	.form-main-container {
		flex-direction: row; /* Row direction for large screens */
	}
}

/* Left section: Form container */
.form-main-container  .form-section {
	width: var(--full-width); /* Full width on small screens */
	padding: 1.5rem; /* p-6 */
	background-color: rgba(255, 255, 255, 0.1); /* bg-white bg-opacity-10 */
	border-radius: 1rem; /* rounded-2xl */           
	display: flex;
	flex-direction: column;
	gap: 1.5rem; /* space-y-6 */
	margin-bottom: 2rem; /* mb-8 */
	transition: transform 0.3s ease; /* Animation for form section */
}

.form-main-container  .form-section:hover {
	transform: translateY(-5px); /* Lift effect on hover */
}

/* Responsive styles for form section */
@media (min-width: 640px) { /* sm: breakpoint */
	.form-main-container  .form-section {
		padding: 2rem; /* sm:p-8 */
	}
}
@media (min-width: 1024px) { /* lg: breakpoint */
	.form-main-container   .form-section {
		width: 50%; /* Half width on large screens */
		margin-bottom: 0; /* No bottom margin on large screens */
		margin-right: 2.5rem; /* lg:mr-10 */
	}
}

.form-main-container  .form-section h2 {
	color: #fff; /* text-white */
	font-size: 1.125rem; /* text-lg */
	font-weight: 600; /* font-semibold */
	margin-bottom: 1rem; /* mb-4 */
	display: none; /* hidden on small screens */
}
@media (min-width: 1024px) { /* lg: breakpoint */
	.form-main-container  .form-section h2 {
		display: block; /* block on large screens */
	}
}

/* Grid for form fields (Work Email, Full Name, Company Size, Industry) */
.form-main-container  .form-grid {
	display: grid;
	grid-template-columns: 1fr; /* Single column on small screens */
	gap: 1rem; /* gap-4 */
}
@media (min-width: 768px) { /* md: breakpoint */
	.form-main-container  .form-grid {
		grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
	}
}

/* Label styles */
.form-main-container  .form-label {
	display: block;
	color: #fff; /* text-white */
	font-size: 0.875rem; /* text-sm */
	font-weight: 500; /* font-medium */
	margin-bottom: 0.25rem; /* mb-1 */
}

/* Input and textarea common styles */
.form-main-container   .form-input, .form-select, .form-textarea {
	width: var(--full-width);
	padding: 0.75rem; /* p-3 */
	background-color: #fff; /* bg-white bg-opacity-20 */
	border: 1px solid rgba(255, 255, 255, 0.3); /* border border-white border-opacity-30 */
	border-radius: 0.5rem; /* rounded-lg */
	color: #000; /* text-white */
	transition: all 0.2s ease-in-out; /* transition duration-200 */
}
.form-main-container   .form-input::placeholder, .form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.7); /* placeholder-gray-300 - adjusted for better contrast */
}
.form-main-container   .form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none; /* focus:outline-none */
	box-shadow: 0 0 0 2px #A78BFA; /* focus:ring-2 focus:ring-purple-500 */
}

/* Select specific styles */
.form-main-container   .form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem; /* Make space for the custom arrow */
}
.form-main-container   .form-select option {
	background-color: #3A248E; /* Background for dropdown options */
	color: #fff; /* Text color for dropdown options */
}
.form-main-container  .form-select option[disabled] {
	color: rgba(255, 255, 255, 0.7); /* Lighter color for disabled/selected placeholder */
}

/* Textarea specific styles */
.form-main-container   .form-textarea {
	resize: vertical; /* Allow vertical resizing */
}

/* Submit Button */
.form-main-container  .submit-button {
	background: linear-gradient(187.92deg, #FFFFFF 6.31%, rgba(224, 240, 255, 0.8) 94.13%);
	color: #23006b;
	padding: 20px 24px;
	border-radius: 100px;
	text-decoration: none;
	display: inline-block;
	font-size:18px;
	
}

.form-main-container  .submit-button:hover {
	/*  background: linear-gradient(180deg, #8B5CF6 0%, #A78BFA 100%); 
		box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3); 
	transform: translateY(-0.25rem); */
}

.form-main-container  .submit-button:active {
	transform: translateY(0); /* Reset on click */
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Right section: Features container */
.form-main-container  .features-section {
	width: var(--full-width); /* Full width on small screens */
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff; /* text-white */
}

@media (min-width: 1024px) { /* lg: breakpoint */
	.form-main-container    .features-section {
		width: 50%; /* Half width on large screens */
	}
}



/* Feature list items */
.form-main-container  .features-list {
	list-style: none; /* Remove default list bullets */
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem; /* space-y-4 */
}
.form-main-container   .features-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem; /* space-x-3 */
	font-size: 1.125rem; /* text-lg */
	opacity: 0; /* Initial state for animation */
	transform: translateY(10px); /* Initial state for animation */
	animation: fadeInSlideUp 0.5s ease-out forwards; /* Apply animation */
	font-size:22px;
	font-weight:700;
	margin:8px 0px;
}
/* Delay animation for each list item */
.form-main-container  .features-list li:nth-child(1) { animation-delay: 0.1s; }
.form-main-container  .features-list li:nth-child(2) { animation-delay: 0.2s; }
.form-main-container  .features-list li:nth-child(3) { animation-delay: 0.3s; }
.form-main-container  .features-list li:nth-child(4) { animation-delay: 0.4s; }
.form-main-container  .features-list li:nth-child(5) { animation-delay: 0.5s; }
.form-main-container  .features-list li:nth-child(6) { animation-delay: 0.6s; }
.form-main-container  .features-list li:nth-child(7) { animation-delay: 0.7s; }

.form-main-container .features-list i {
	color: #D8B4FE; /* text-purple-300 */
	font-size: 1.25rem; /* text-xl */
	width: 1.5rem; /* w-6 */
	text-align: center;
	flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Keyframe animation for features list */
@keyframes fadeInSlideUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form_feature_title{font-size:50px;font-weight:700px;}

/**************************************************/
/**************************************************/



.faq-section {
	background: linear-gradient(180deg, #EEEFEF 0%, #FFFFFF 50%);
	padding:50px 0px;
}

.faq-container{    
	margin: 0px auto;	
	// border-radius: 8px;
	// box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
    //border: 1px solid #e0e0e0;
}

.faq-container h2 {
    font-size: 50px;
	font-weight:700;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;	
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    overflow: hidden; /* Important for height transition */
}

.faq-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align arrow to top of text */
    cursor: pointer;
    padding: 10px 0;
}

.faq-question p {
    font-size: 22px;
	font-weight:700;
    color: #333;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
    padding-right: 15px; /* Space for arrow */
}

/* Chevron arrow styling */
.arrow-icon {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    flex-shrink: 0; /* Prevent icon from shrinking */
    //background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555"><path d="M7 10l5 5 5-5z"/></svg>'); 
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.23 7.21a.75.75 0 011.06.02L10 11.064l3.71-3.834a.75.75 0 111.08 1.04l-4.24 4.384a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z"/></svg>');
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease; /* Smooth rotation */
    margin-top: 5px; /* Adjust vertical alignment if needed */
}

/* Initially rotated for "View More" state for the first FAQ */
.faq-container:not(.expanded) .faq-item:first-child .faq-question .arrow-icon {
    transform: rotate(0deg); /* Down arrow */
}

/* When the specific FAQ item is open */
.faq-item.open .faq-question .arrow-icon {
    transform: rotate(180deg); /* Up arrow when open */
}

/* When the whole container is expanded, the first FAQ item should have an up arrow */
.faq-container.expanded .faq-item:first-child .faq-question .arrow-icon {
    transform: rotate(180deg); /* Up arrow when expanded */
}


.faq-answer {
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Smooth slide and fade */
    opacity: 0;
    padding-left: 5px; /* Slight indentation */
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust based on content. Make sure it's larger than the max possible height of any answer */
    opacity: 1;
    margin-top: 10px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
	width:85%;
}

.faq-hidden-items {
    max-height: 0; /* Initially hidden */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; /* Smooth slide for the whole section */
}

.faq-hidden-items.show {
    max-height: 1000px; /* A large enough value to accommodate all hidden FAQs */
}

.toggle-faq-button {
    display: block;
    width: 150px;
    padding: 12px 20px;
    margin: 30px auto 0 auto; /* Center button */
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.toggle-faq-button:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}

/**************************************************/
/**************************************************/


.footer-contact-section {
    width: 100%;
    min-height: 500px; /* Adjust height as needed to match your pixel perfect design */
	// background: linear-gradient(to right, var(--primary-background-start), var(--primary-background-end));
	background: #3A248E;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes footer to the bottom */
    align-items: center;
    padding: 60px 20px 20px; /* Top padding for content, bottom padding for footer */
    box-sizing: border-box; /* Include padding in element's total width and height */
    text-align: center;
    position: relative; /* For absolute positioning of footer if needed */
}

.footer-contact-section .content-wrapper-footer p{color:rgba(255, 255, 255, 1);}
.footer-contact-section .content-wrapper-footer {
    flex-grow: 1; /* Allows this wrapper to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; /* Space between content and footer */
}

.footer-contact-section h2 {
    color: var(--text-color-light);
    font-size: 50px; /* Adjust font size to match pixel perfect */
    margin-bottom: 15px;
    font-weight: 700; /* Bolder font for the heading */
    line-height: 1.2;
}

.footer-contact-section .footer-contact-section p {
    color: var(--text-color-light);
    font-size: 22px; /* Adjust font size */
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-contact-section .contact-button {
	background: linear-gradient(187.92deg, #FFFFFF 6.31%, rgba(224, 240, 255, 0.8) 94.13%);
	color: #23006b;
	padding: 20px 44px;
	border-radius: 100px;
	font-size: 18px;
	text-decoration: none;
	display: inline-block;
	font-size:18px;
}


.footer-contact-section .contact-button:active {
    transform: translateY(0); /* Press down effect */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-contact-section .footer-info {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 50px; 
    color: var(--footer-text-color);
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator line */
    padding-top: 20px;
}

.footer-contact-section .footer-info p {
    margin: 0; 
}

.footer-contact-section .footer-info a {
    color: rgba(236, 236, 236, 1);;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-contact-section .footer-info a{ color:  rgba(236, 236, 236, 1);}
.footer-contact-section .footer-info .term_p a{ color: rgba(236, 236, 236, 0.7);}


/* .footer-contact-section .footer-info a:hover {
    color: var(--text-color-light);
	}
*/
/* Responsive adjustments */
@media (max-width: 768px) {
	.footer-contact-section  .footer-contact-section h1 {
        font-size: 2.2em;
	}
	
    .footer-contact-section .footer-contact-section p {
        font-size: 1em;
	}
	
	.footer-contact-section  .contact-button {
        padding: 15px 30px;
        font-size: 1em;
	}
	
    .footer-contact-section .footer-info {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 10px; /* Space between items when stacked */
	}
}

@media (max-width: 480px) {
	.footer-contact-section  .footer-contact-section {
        min-height: 400px;
        padding-top: 40px;
	}
	
	.footer-contact-section  .footer-contact-section h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
	}
	
    .footer-contact-section .footer-contact-section p {
        font-size: 0.9em;
        margin-bottom: 30px;
	}
	
	.footer-contact-section .contact-button {
        padding: 12px 25px;
        font-size: 0.9em;
	}
}

/**************************************************/
/**************************************************/


/* Custom properties for easy theme management and consistency */


/* Section styling */
.reviews-section {
    padding: 50px 0px;
    text-align: center;
    margin: var(--spacing-md) auto; /* Center the section */   
    border-top: 1px solid var(--border-color); /* Matches the image's top line */
}

/* Section title */
.section-title {
    font-size: 50px; /* Adjust as needed */
    font-weight: 700; /* Bold */
    color: var(--primary-text-color);
    line-height: 1.2;
    letter-spacing: -0.025em; /* Slight letter spacing for appeal */
	margin:10px 0px 40px 0px;
}

/* Reviews container using CSS Grid for flexible layout */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: var(--spacing-md); /* Space between cards */
    justify-content: center; /* Center cards if they don't fill the row */
}

/* Individual review card styling */
.review-card {
    background-color: var(--card-background);
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    text-align: left; /* Text alignment within the card */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; /* Smooth transition for hover effects */
    will-change: transform, box-shadow; /* Optimize for animation performance */
	text-align:center;
}

.review-card:hover {
    transform: translateY(-5px); /* Lift card slightly on hover */
    box-shadow: var(--shadow-hover); /* More prominent shadow on hover */
}

/* Review text */
.review-text {
    font-size: 22px;
    color: var(--secondary-text-color);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1; /* Allows text to take up available space, pushing author to bottom */		
}
.image_accord span {
    width: 105px;
    height: 105px;
}

/* Star rating container */
.star-rating {
    color: var(--accent-color); /* Orange color for stars */
    display: flex; /* Align stars horizontally */
    align-items: center;
	margin: var(--spacing-xs) auto var(--spacing-sm) auto;
}

.star {
    font-size: 1.2rem; /* Size of the star character */
    line-height: 1; /* Prevent extra space around stars */
    margin-right: 2px; /* Small space between stars */
}

/* Review author information */
.review-author {
    font-size: 18px;
    font-weight: 400; /* Semi-bold */
    color: var(--primary-text-color);
    margin-top: auto; /* Pushes the author to the bottom of the card */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section {
        padding: var(--spacing-md) var(--spacing-xs);
        margin: var(--spacing-sm) auto;
	}
	
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
	}
	
    .reviews-container {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
	}
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
	}
    .review-card {
        padding: var(--spacing-sm);
	}
    .review-text {
        font-size: 0.95rem;
	}
    .review-author {
        font-size: 0.85rem;
	}
}

/* Simple keyframe animation for a subtle fade-in effect on cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
	}
    to {
        opacity: 1;
        transform: translateY(0);
	}
}

.review-card {
    /* Apply fade-in animation */
    animation: fadeIn 0.6s ease-out forwards;
    /* Delay animation for each card for a staggered effect */
}

/* Staggered animation for cards
	
/**************************************************/
/**************************************************/
  


.demo_video video{width:100%;height:100%;object-fit: cover;border-radius:10px;}
.popup-overlay {
	/* Styles for the full-screen overlay */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000; /* Ensure it's on top */
	opacity: 0; /* Initially hidden */
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}
.popup-overlay.show {
	/* Class to show the overlay */
	opacity: 1;
	visibility: visible;
}
.popup-content {background-color: #ffffff;border-radius: 0.75rem;max-width: 90%;width: 45%;position: relative;transform: translateY(-20px);transition: transform 0.3s ease;}
.popup-overlay.show .popup-content {transform: translateY(0);}
.close-button {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #fff;
	transition: color 0.2s ease;
	z-index:9999;
}
#myPopup2 .close-button, #myPopup3 .close-button {color:#000;}

.form-message {margin-top: 10px;font-weight: bold;}
.form-message.success {color: #fff;}
.form-message.error {color: red;}	
/*	
section.home {background: linear-gradient(135deg, var(--light-blue-gradient-start) 0%, var(--light-blue-gradient-end) var(--full-width));}
section.home .video-container{display:none;}
section.home .carousel_slider_container{padding-bottom:50px;margin-bottom:0px;}
*/	
@media (max-width: 850px) {
	html body {}
	html body .popup-content {
		width: 100%;
		max-width: 100%;
	}

	html body .close-button {
		top: 60px;
	}

	* {
		font-size: var(--mobile-text-size);
	}

	header {
		min-height: auto;

		.container {
			.navbar {
				.nav-links {
					position: absolute;
					top: 0;
					left: 0;
					width: 76%;
					height: auto;
					background-color: #fff;
					margin: 0;
					padding: 0;
					flex-direction: column;
					justify-content: flex-start;
					align-items: normal;
					transform: translateX(-100%);
					transition: 0.4s ease all;
					z-index: 10;

					li {
						margin: 10px 0;
						padding: 10px 0;
						border-bottom: 1px solid #ddd;

						a {
							color: #000;

							&::after {
								display: block;
								background-color: #000;
							}
						}
					}
				}

				i {
					display: block;
				}
			}

			.showcase {
				display: block;
				margin-top: 25px;
				min-height: auto;
				width:100%;
				h1 {
					font-size: var(--mobile-heading-size);
				}

				p {
					font-size: var(--mobile-text-size);
					width: 100%;
				}
			}
		}

	/* 	.video-container video.desktop{
			display: none;
		}
		.video-container video.mobile{
			display: block;height:auto;width:auto;
		}
		 */
		
	}

	 section.home {
		background: linear-gradient(135deg, var(--light-blue-gradient-start) 0%, var(--light-blue-gradient-end) var(--full-width));
	}

	.nav-links li button.normal {
		background: linear-gradient(135deg, var(--light-blue-gradient-start) 0%, var(--light-blue-gradient-end) var(--full-width));
	}

	.spacer_height,
	.result_solutions .border,
	.border_item {
		display: none;
	}

	.hero_button {
		margin: 0;
	}

	.hero_button button.normal {
		margin: 20px 0 0 0;
	}

	.carousel_slider_container {
		margin: 0;
	}

	.carousel_slider_container p {
		font-size: var(--mobile-heading-size);
		margin-bottom: 10px;
	}

	.security-section {
		padding: 10px 30px;
	}

	.left h2,
	.result_solutions .one,
	.cisco_content .main-title,
	.cisco_content .step,
	.difference-header,
	.cisco_level .highlight,
	.cisco_level .highlight span,
	.meet_content h2,
	.secure-accordion summary h3,
	.tab_container h2,
	.tagline h2,
	.shape_next .text h2,
	.building-container .left-section h2,
	.footer-contact-section h2,
	.section-title,
	.form_feature_title,
	.faq-container h2 {
		font-size: var(--mobile-heading-size);
	}

	.left .bullet-text,
	.result_solutions .two,
	.shape_next .text p,
	.shape_next .cta-btn,
	.review-text,
	.review-author,
	.faq-question p,
	.building-container .left-section p {
		font-size: var(--mobile-text-size);
	}

	.result_solutions {
		padding: 10px 20px;
		flex-wrap: wrap;
	}

	.result_solutions .zero {
		margin: 20px 0 0 0;
	}

	.result_solutions .one {
		margin: 10px 0;
	}

	.result_solutions .two {
		margin: 15px 0;
	}

	.cisco_content {
		padding: 10px 30px;
	}

	.cisco_content .step-line {
		display: none;
		padding: 10px 5px;
	}

	.cisco_content .process-steps {
		justify-content: flex-start;
	}

	.main-section {
		margin: 0;

		.icon {
			width: 50px;
			height: 50px;
		}
	}

	

	.feature-item {
		width: 90%;
		margin: 20px auto;
		height: auto;
	}

	.right-section .feature-content {
		margin: 0;
	}

	.right-section .icon {
		left: -25px;
	}

	.bottom-text {
		margin: 0;
	}

	.meet,
	.main_secure_accordian {
		/* background: #fff; */
	}

	.meet_content {
		margin: 0 auto;
	}

	.secure-accordion {}

	section.tab_section {
		width: 90%;
		margin: 0 auto;
		padding: 20px 0;
	}

	.shape_next {
		padding: 20px 0;

		.slider,
		.top-section {
			width: 87%;
			padding: 0;
		}

		.cta-btn-wrap {
			width: 85%;
			margin: 0 auto;
		}
	}

	section.building {
		padding: 20px 0;
	}

	.building-container {
		width: 90%;
		margin: 0 auto;

		.statistics-section {
			gap: 0;
			margin: 0;
		}

		.left-section .stat-item {
			margin: 10px 0;
		}
	}

	.reviews-section {
		padding: 20px;
		margin: 0 auto;
	}

	.form_section,
	.faq-section {
		padding: 20px;
	}
	.cisco_content .main-title{margin-bottom:10px;}
	.cisco_content .header {margin-bottom: 30px;}
	.cisco_content .step{font-size:16px;padding:0px;}
	.cisco_content .step-arrow {width: 16px;height: 16px;font-size:13px;}
	.secure-accordion{padding:20px;}
	.shape_next .slider-arrows{margin:10px 0px;}	
	.main-section{display:none;}
	.main-section-mobile{display:block;}
	
}