/* Elementor Styles - Extracted from homeandbot.css */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #1b1b1b;
    --accent-color: #ffd700;
    --dark-color: #030304;
    --light-color: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Enhanced Header Styles (Navbar) */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--dark-color) !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.btn-custom {
    background: linear-gradient(45deg, var(--primary-color), #e55a2b);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    color: white;
}

/* Page Specific Support Styles */
.page-header {
    background: linear-gradient(135deg, var(--light-color), white);
    padding: 120px 0 60px;
    text-align: center;
}

.content-section {
    padding: 60px 0;
    background: white;
}

.card-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.card-box:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

/* Contact Styles */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    /* Pillow shape like buttons */
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

textarea.form-control {
    border-radius: 20px;
    /* Slightly less rounded for textareas */
}

/* About Page Specific Styles */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    z-index: 2;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.founder-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.founder-image {
    height: 100%;
    min-height: 400px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card,
.partner-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.value-card:hover,
.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: white;
    padding: 40px 0 20px;
    position: relative;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, white, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: linear-gradient(45deg, var(--primary-color), #e55a2b);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px !important;
    }
}
