/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 10 2026 | 17:40:28 */
/* Add your CSS code here.
/* Main Section Styling */
.avyanco-company-section {
    background:  radial-gradient(at bottom right, #7e7b78 0% 0%, #8a8a8a 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.avyanco-company-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.avyanco-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.avyanco-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
	font-family: sans-serif;
}

.avyanco-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 400;
	    font-family: sans-serif;
}

/* Input Wrapper */
.avyanco-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    max-width: 800px;
    margin: 0 auto;
}
.avyanco-input-wrapper input{
	border:none !important;
}
.avyanco-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avyanco-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 12px 15px;
    color: #333;
}

.avyanco-input::placeholder {
    color: #999;
}

.avyanco-btn {
    background: linear-gradient(135deg, #ff5252 0%, #f44336 100%);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.avyanco-btn:hover {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

/* Popup Overlay */
.avyanco-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.avyanco-popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Popup */
.avyanco-popup {
    background: #1b1b1b;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.avyanco-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.avyanco-popup-close:hover {
    background: #ff5252;
    color: #ffffff;
    transform: rotate(90deg);
}

.avyanco-popup-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.avyanco-popup-subtitle {
    color: white;
    font-size: 15px;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Styling */
.avyanco-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.avyanco-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.avyanco-form-group label {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.avyanco-form-group input,
.avyanco-form-group select,
.avyanco-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.avyanco-form-group input:focus,
.avyanco-form-group select:focus,
.avyanco-form-group textarea:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.avyanco-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.avyanco-submit-btn {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.avyanco-submit-btn:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
}

.avyanco-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.avyanco-form-message {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    margin-top: 10px;
}

.avyanco-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
    display: block;
}

.avyanco-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
    display: block;
}
@media (max-width: 1400px) {
.avyanco-company-section {
    width: 1020px;
    margin: 0 auto;
	padding: 36px 18px;
}
}

.free-consultation-box input {
    flex: 1;
    border: none !important;
    outline: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 50px;
	    width: 498px;
}
/* Responsive */
@media (max-width: 768px) {
    .avyanco-title {
        font-size: 28px;
    }
    
    .avyanco-subtitle {
        font-size: 16px;
    }
    
  .avyanco-input-wrapper {
    padding: 10px;
    border-radius: 12px;
  }

}
.avyanco-input-wrapper input {
  border: none !important;
  padding: 0px !important;

}
    .avyanco-input {
        width: 100%;
    }
    
    .avyanco-btn {
        width: 100%;
		background: #1b1b1b !important;
    }
    
    .avyanco-popup {
        padding: 25px;
    }
.avyanco-btn{
	width:46%;
}
    
    .avyanco-form-row {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar for Popup */
.avyanco-popup::-webkit-scrollbar {
    width: 8px;
}

.avyanco-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.avyanco-popup::-webkit-scrollbar-thumb {
    background: #1e88e5;
    border-radius: 10px;
}

.avyanco-popup::-webkit-scrollbar-thumb:hover {
    background: #1565c0;
}

	.elementor-element.elementor-element-8b5ee58 #tab1{
		display: flex !important;
    justify-content: start !important;
    padding-left: 10px !important;
	}
.custom-tab .e-n-tabs-heading button:hover{
	background:#1b1b1b !important;
}
.company .elementskit-megamenu-panel{
    left: -258px;
	    width: 1100px !important;

}
		@media (max-width: 1199px) {
    .avyanco-company-section {
        width: 78%;
        margin: 0 auto;
        padding: 16px 12px;
    }
			.avyanco-btn {
    width: 37%;
}
			.icon-boxes{
				width: 86% !important;
			}
			.icon-boxes .elementor-icon-box-content h3{
				font-size:26px !important;
			}
				.icon-boxes .elementor-icon-box-content p{
				font-size:16px !important;
			}
			.section-4-heading h4{
				font-size: 27px !important;
				line-height: 26px  !important;
			}
			.section-2-container{
		      display: flex;
			  flex-direction: column !important;
			  align-items: start;
			  justify-content: center;
			  gap: 0px;	
			}
}
	@media (max-width: 1269px) {
			
			.company .elementskit-megamenu-panel {
  left: -258px;
  width: 1044px !important;
}
	}
		@media (max-width: 1169px) {
			#menu-mega-menu-two li a{
				font-size: 12px !important;
			}
			
			.company .elementskit-megamenu-panel {
  left: -258px;
  width: 944px !important;
}
	}
		@media (max-width: 1025px) {
.elementor-menu-toggle{
	justify-content: end !important;
}
}
@media (max-width: 992px) {
    .avyanco-btn {
        width: 37%;
        font-size: 11px !important;
    }
}
@media (max-width: 992px) and (min-width:768px) {
    .icon-boxes .elementor-icon-box-content p {
        font-size: 11px !important;
    }
}
@media (max-width: 992px){
.main-section {
	flex-direction:column !important;
}
			.studies-section .eael-img-accordion{
		display:flex;
	flex-direction:column !important;
	}
		.elementor-18572 .elementor-element.elementor-element-fb8c7f6 .eael-img-accordion {
  height: 400px;
flex-direction:column !important;
}
}
@media (max-width: 768px) and (min-width:576px) {
.tab-tab .e-n-tabs .elementor-widget-heading h2{
	padding-top:38px !important;
}
}
@media (max-width: 768px) {
    .avyanco-btn {
        width: 44%;
        font-size: 10px !important;
    }
	.free-consultation-box {
		flex-direction:column !important;
		    border-radius: 14px !important;
	}
		.free-consultation-box input {
    width: 430px !important;
}
	
}
@media (max-width: 576px) {
    .avyanco-input-wrapper {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
	   .avyanco-btn {
        width: 94%;
        font-size: 10px !important;
    }
	    .avyanco-title {
        font-size: 19px;
    }
	.free-consultation-box input {
    width: 370px !important;
}
}
@media (max-width: 576px) {
    .elementor-15 .elementor-element.elementor-element-ba170f5.elementor-column > .elementor-widget-wrap {
        justify-content: flex-end;
        align-items: center !important;
    }
}
.elementor-4146 .elementor-element.elementor-element-6b888269 #tab1 {
    display: flex;
    justify-content: start;
    padding-left: 10px;
}

.free-consultation-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    max-width: 700px;
}


.free-consultation-box button {
    background: radial-gradient(at bottom right, var( --e-global-color-d2fe7d3 ) 0%, var( --e-global-color-3e53aef ) 100%);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.free-consultation-box button:hover {
    background: #54595F;
}
@media (max-width: 450px) {

.free-consultation-box button {
font-size:10px !important;
}
	.free-consultation-box input {
width:100% !important;
}
}
@media (max-width: 992px) {
    .elementor-4146 .elementor-element.elementor-element-6b888269 #tab1 {
		width: 100% !important;
	}
}
@media (max-width: 767px) {
  .elementor-12180 .elementor-element.elementor-element-78ca4081.elementor-column > .elementor-widget-wrap {
    justify-content: flex-end !important;
  }