/*
Theme Name: Tender Theme
Theme URI: http://example.com/
Author: Antigravity
Author URI: http://example.com/
Description: A premium WordPress theme for e-bidding solutions.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tender-theme
*/

:root {
    --primary-color: #f3921f;
    --primary-hover: #e08316;
    --secondary-color: #0f172a;
    --text-color: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Premium Header */
header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #eeeeee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

nav ul li a:hover {
    color: #f3921f;
}

.btn-get-started {
    display: inline-block;
    background: linear-gradient(to right, #c16d00, #ec8c00);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* WPForms Custom Design Match */
.wpforms-container {
    font-family: 'Outfit', sans-serif !important;
}

.wpforms-form .wpforms-field-label {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
    background-color: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    color: #0f172a !important;
    transition: all 0.3s ease !important;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
    background-color: #ffffff !important;
    border-color: #f3921f !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(243, 146, 31, 0.1) !important;
}

.wpforms-form .wpforms-submit-container {
    padding-top: 20px !important;
}

.wpforms-form .wpforms-submit {
    background: #d97706 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 18px 45px !important;
    border-radius: 8px !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3) !important;
}

.wpforms-form .wpforms-submit:hover {
    background-color: #b45309 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4) !important;
}

.wpforms-form .wpforms-field-row {
    display: flex !important;
    gap: 20px !important;
}

.wpforms-form .wpforms-field-row .wpforms-field {
    flex: 1 !important;
}

.hero {
    padding: 140px 0;
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(243, 146, 31, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(243, 146, 31, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.highlight {
    font-family: 'Nothing You Could Do', cursive;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding: 0 5px;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: -10%;
    width: 120%;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='30' viewBox='0 0 400 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 20 Q 50 10, 100 22 T 200 18 T 300 20 T 390 15' stroke='%23f3921f' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.btn-demo {
    background: var(--primary-color);
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(243, 146, 31, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-demo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(243, 146, 31, 0.4);
}

/* Glassmorphism Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--glass-border);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: rotateY(0) rotateX(0);
}

.play-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(243, 146, 31, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 146, 31, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(243, 146, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 146, 31, 0);
    }
}

/* Section Styling */
section {
    padding: 120px 0;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card div {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background: rgba(243, 146, 31, 0.05);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Premium Dark Footer */
.site-footer {
    background-color: #050505;
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at 50% 0%, rgba(243, 146, 31, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main-logo {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social i {
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fb-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

.ig-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.tw-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.045 4.126H5.078z'/%3E%3C/svg%3E");
}

.web-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.footer-newsletter {
    max-width: 600px;
    margin: 0 auto 60px;
}

.newsletter-capsule {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 10px 10px 30px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.newsletter-capsule input {
    background: transparent;
    border: none;
    flex: 1;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.newsletter-capsule button {
    width: 60px;
    height: 60px;
    background: #f3921f;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
}

.contact-item {
    font-size: 16px;
    color: #e2e8f0;
    font-weight: 300;
}

.footer-bottom {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
 }

.wp-block-uagb-advanced-heading.uagb-block.uagb-block-0efd8345.\34 43 {
	text-align: center;
}