/*
Tech Valley About Editable No Footer
All content sections are controlled from Elementor widget settings.
*/

.tvae-page {
	--tvae-primary: #1d55e5;
	--tvae-secondary: #2b63ff;
	--tvae-dark: #0a1024;
	--tvae-muted: #596579;
	--tvae-border: #e0e8f7;
	--tvae-soft: #f4f7fe;
	--tvae-white: #ffffff;
	font-family: 'Inter', 'Poppins', Arial, sans-serif;
	color: var(--tvae-dark);
	background: #fff;
	overflow: hidden;
}

.tvae-page *,
.tvae-page *::before,
.tvae-page *::after {
	box-sizing: border-box;
}

.tvae-page svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	display: inline-block;
	vertical-align: middle;
}

.tvae-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.tvae-heading {
	text-align: center;
	margin-bottom: 40px;
}

.tvae-heading span {
	display: inline-block;
	color: var(--tvae-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.tvae-heading h2 {
	margin: 0;
	font-size: clamp(28px, 3.5vw, 36px);
	line-height: 1.2;
	letter-spacing: -1px;
	font-weight: 900;
	color: var(--tvae-dark);
}

.tvae-section-label {
	display: inline-block;
	color: var(--tvae-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* Hero Section */
.tvae-hero {
	position: relative;
	padding: 80px 0 100px;
	background: linear-gradient(110deg, #ffffff 40%, #e6f0fe 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

.tvae-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
    position: relative;
    z-index: 2;
}

.tvae-hero-label {
	display: inline-block;
	color: var(--tvae-muted);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
}

.tvae-hero h1 {
	font-size: clamp(48px, 6vw, 72px);
	line-height: 1.05;
	letter-spacing: -2px;
	margin: 0 0 24px;
	font-weight: 900;
    color: var(--tvae-dark);
}

.tvae-hero h1 span {
	display: block;
	color: var(--tvae-primary);
}

.tvae-hero p {
	max-width: 520px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--tvae-muted);
	margin: 0 0 32px;
}

.tvae-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tvae-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.tvae-btn:hover {
    background: var(--tvae-secondary);
    transform: translateY(-2px);
    color: #fff !important;
}

.tvae-hero-image-col {
    position: relative;
    padding: 25px 0 25px 25px;
}

.tvae-hero-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -50px;
    border: 2px solid var(--tvae-primary);
    border-right: none;
    border-radius: 300px 0 0 300px;
    z-index: 0;
}

.tvae-hero-image {
	position: relative;
	overflow: hidden;
	border-radius: 275px 0 0 275px;
    z-index: 1;
}

.tvae-hero-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* Features Bar */
.tvae-features-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 80px;
}

.tvae-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(29, 85, 229, 0.08);
}

.tvae-feature-item {
    padding: 40px 25px;
    text-align: center;
    border-right: 1px solid var(--tvae-border);
}

.tvae-feature-item:last-child {
    border-right: none;
}

.tvae-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--tvae-soft);
    color: var(--tvae-primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.tvae-feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--tvae-dark);
    margin-bottom: 12px;
}

.tvae-feature-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--tvae-muted);
}

/* About Section */
.tvae-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.tvae-about-image {
    position: relative;
    padding-top: 15px;
    padding-right: 15px;
}

.tvae-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 30%;
    left: 40%;
    border: 2px solid var(--tvae-primary);
    border-bottom: none;
    border-left: none;
    border-radius: 0 120px 0 0;
    z-index: 0;
}

.tvae-about-image img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px 100px 16px 16px;
    box-shadow: 0 15px 40px rgba(10, 16, 36, 0.08);
    z-index: 1;
}

.tvae-about-content h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
}

.tvae-about-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--tvae-muted);
    margin-bottom: 30px;
}

.tvae-about-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.tvae-about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--tvae-border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 16, 36, 0.03);
}

.tvae-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--tvae-soft);
    color: var(--tvae-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.tvae-badge-text {
    font-size: 11px;
    line-height: 1.3;
    color: var(--tvae-muted);
}

.tvae-badge-text strong {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: var(--tvae-dark);
    margin-bottom: 2px;
}

.tvae-badge-text span {
    display: block;
}

/* Services */
.tvae-services {
    padding: 80px 0;
}

.tvae-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tvae-service-card {
    background: #fff;
    border: 1px solid var(--tvae-border);
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(10, 16, 36, 0.02);
    transition: all 0.3s ease;
}

.tvae-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 16, 36, 0.06);
    border-color: var(--tvae-primary);
}

.tvae-service-icon-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
}

.tvae-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--tvae-soft);
    color: var(--tvae-primary);
    border-radius: 50%;
    font-size: 20px;
}

.tvae-service-info {
    display: flex;
    flex-direction: column;
}

.tvae-service-info h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--tvae-dark);
}

.tvae-service-info p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--tvae-muted);
    margin: 0 0 16px;
}

.tvae-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tvae-primary) !important;
    text-decoration: none !important;
    margin-top: auto;
}

.tvae-service-link svg {
    font-size: 16px;
    transition: transform 0.2s;
}

.tvae-service-link:hover svg {
    transform: translateX(4px);
}

/* Process Section */
.tvae-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 100%);
}

.tvae-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting line */
.tvae-process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    border-top: 2px dashed #dbe4f5;
    z-index: 0;
}

.tvae-process-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tvae-process-icon-box {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(29, 85, 229, 0.08);
    z-index: 2;
}

.tvae-process-step {
    position: absolute;
    top: -2px;
    left: 0;
    width: 32px;
    height: 32px;
    background: var(--tvae-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: none;
    box-shadow: 0 5px 15px rgba(29, 85, 229, 0.3);
    z-index: 3;
}

.tvae-process-icon {
    font-size: 34px;
    color: var(--tvae-dark);
}

.tvae-process-item h3 {
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--tvae-dark);
}

.tvae-process-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--tvae-muted);
    margin: 0;
    padding: 0 10px;
}

/* Why Choose Us */
.tvae-why {
    padding: 40px 0 100px;
}

.tvae-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(29, 85, 229, 0.08);
}

.tvae-why-card {
    display: flex;
    gap: 16px;
    padding: 40px 25px;
    border-right: 1px solid var(--tvae-border);
}

.tvae-why-card:last-child {
    border-right: none;
}

.tvae-why-icon-box {
    flex-shrink: 0;
}

.tvae-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--tvae-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(29, 85, 229, 0.35);
}

.tvae-why-info h3 {
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--tvae-dark);
}

.tvae-why-info p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--tvae-muted);
    margin: 0;
}

/* CTA Section */
.tvae-cta-section {
    padding-bottom: 80px;
}

.tvae-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tvae-primary);
    border-radius: 20px;
    padding: 40px 50px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(29, 85, 229, 0.2);
}

.tvae-cta-content {
    max-width: 600px;
}

.tvae-cta-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    margin: 0 0 12px;
    color: #fff;
}

.tvae-cta-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.tvae-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--tvae-primary) !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.tvae-cta-btn:hover {
    transform: translateY(-2px);
}

.tvae-cta-icon {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tvae-hero-grid, .tvae-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tvae-hero-image-col {
        padding: 0;
    }

    .tvae-hero-image-col::before {
        display: none;
    }

    .tvae-hero-image {
        border-radius: 40px;
        border: none;
    }
    
    .tvae-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tvae-feature-item:nth-child(2) {
        border-right: none;
    }
    
    .tvae-feature-item:nth-child(1),
    .tvae-feature-item:nth-child(2) {
        border-bottom: 1px solid var(--tvae-border);
    }

    .tvae-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvae-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .tvae-process-grid::before {
        display: none;
    }

    .tvae-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tvae-why-card:nth-child(2) {
        border-right: none;
    }
    
    .tvae-why-card:nth-child(1),
    .tvae-why-card:nth-child(2) {
        border-bottom: 1px solid var(--tvae-border);
    }
    
    .tvae-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tvae-container {
        width: min(100% - 30px, 1180px);
    }

    .tvae-hero {
        padding: 50px 0 40px;
    }

    .tvae-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .tvae-features-grid,
    .tvae-services-grid,
    .tvae-process-grid,
    .tvae-why-grid {
        grid-template-columns: 1fr;
    }
    
    .tvae-feature-item,
    .tvae-why-card {
        border-right: none;
        border-bottom: 1px solid var(--tvae-border);
    }
    
    .tvae-feature-item:last-child,
    .tvae-why-card:last-child {
        border-bottom: none;
    }

    .tvae-about-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
